/* ----- CSS RESET & VARIABLES ----- */
:root {
    /* Colors */
    --color-bg-dark: #0A090C;
    --color-bg-card: rgba(26, 24, 28, 0.7);
    --color-gold-primary: #D4AF37;
    --color-gold-light: #FFDF73;
    --color-gold-dark: #997A15;
    --color-text-light: #F4F4F5;
    --color-text-muted: #A1A1AA;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing & Sizes */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ----- TYPOGRAPHY & UTILITIES ----- */
.section-title {
    font-size: 2.5rem;
    color: var(--color-gold-primary);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
}

.section-desc {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-inline: auto;
}

.gold-icon {
    color: var(--color-gold-primary);
}

/* ----- HERO SECTION ----- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/images/hero-bg.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 9, 12, 0.4) 0%, rgba(10, 9, 12, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--color-gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.store-name {
    font-size: 4.5rem;
    line-height: 1.1;
    color: #FFF;
    text-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-gold-primary);
    margin-bottom: 2rem;
}

.hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--color-gold-primary);
}

.hero-decoration .line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--color-gold-primary));
}

.hero-decoration .line:last-child {
    background: linear-gradient(270deg, transparent, var(--color-gold-primary));
}

/* ----- APP DOWNLOAD SECTION ----- */
.app-download {
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(30,28,32,1) 0%, var(--color-bg-dark) 100%);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-app {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    color: var(--color-text-light);
    transition: var(--transition-smooth);
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.btn-app:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.btn-app i {
    font-size: 2.2rem;
    margin-right: 1rem;
    color: var(--color-gold-primary);
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text .small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.btn-text .large {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* ----- FOLLOW US SECTION ----- */
.follow-us {
    padding: 5rem 0;
    background-color: var(--color-bg-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 2rem;
    color: var(--color-gold-primary);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-dark));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    color: var(--color-bg-dark);
}

/* ----- VISIT US SECTION ----- */
.visit-us {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--color-bg-dark) 0%, #151318 100%);
}

.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

.map-container {
    width: 100%;
    background: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(10, 9, 12, 0.5);
}

.address-details {
    padding: 2.5rem;
    text-align: center;
}

.address-details i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.address-details h3 {
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.address-details p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* ----- FOOTER ----- */
.footer {
    background-color: #050506;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h2 {
    font-size: 2.5rem;
    color: var(--color-gold-primary);
    margin: 0;
}

.footer-link {
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.footer-link:hover {
    color: var(--color-gold-primary);
}

.disclaimer-box {
    background: rgba(255, 69, 58, 0.05);
    border: 1px solid rgba(255, 69, 58, 0.2);
    border-left: 4px solid #FF453A;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.disclaimer-box h4 {
    color: #FF453A;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.disclaimer-box p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.copyright {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    margin: 0 auto 1rem;
    display: block;
    object-fit: cover;
}

.proprietor {
    font-size: 1.4rem;
    color: var(--color-gold-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}

/* ----- ANIMATIONS ----- */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 768px) {
    .store-name {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .store-name {
        font-size: 2.2rem;
    }
    
    .btn-app {
        width: 100%;
        justify-content: center;
    }
    
    .social-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .address-details {
        padding: 1.5rem;
    }
}

/* ----- MODAL STYLES ----- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 9, 12, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--color-bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--color-gold-primary);
}

.modal-icon {
    font-size: 3rem;
    color: var(--color-gold-primary);
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

.modal-content h3 {
    font-size: 2.2rem;
    color: var(--color-gold-primary);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn-modal-ok {
    background: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg-dark);
    border: none;
    border-radius: 25px;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-modal-ok:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ----- PWA INSTRUCTIONS ----- */
.pwa-steps {
    text-align: left;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pwa-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.step-num {
    background: var(--color-gold-primary);
    color: var(--color-bg-dark);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-body);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pwa-step p {
    margin-bottom: 0 !important;
    font-size: 0.95rem !important;
    color: var(--color-text-light) !important;
    line-height: 1.4 !important;
}

.btn-modal-close-text {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.btn-modal-close-text:hover {
    color: var(--color-gold-primary) !important;
}
