/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #1d0c1b;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ===== BACKGROUND SHAPES ===== */
.bg-shapes {
    z-index: 0;
}

.shape-circle-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 45, 91, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 75, 0.08) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(107, 45, 91, 0.15);
    top: 40%;
    left: 5%;
    transform: rotate(15deg);
    animation: floatShape 18s ease-in-out infinite;
}

.shape-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(245, 197, 75, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    top: 60%;
    right: 10%;
    animation: floatShape 22s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-3deg); }
    75% { transform: translate(15px, 10px) rotate(3deg); }
}

/* ===== NAVIGATION ===== */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.4s ease;
    padding: 0.5rem 0;
}

.nav-fixed.scrolled {
    background: rgba(29, 12, 27, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F5C54B;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #F5C54B;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(245, 197, 75, 0.15);
    border: 1px solid rgba(245, 197, 75, 0.3);
    color: #F5C54B;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: rgba(245, 197, 75, 0.25);
    transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: white;
    display: flex;
    align-items: center;
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(29, 12, 27, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 45, 91, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(107, 45, 91, 0.2);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu-link:hover {
    color: #F5C54B;
    padding-left: 0.5rem;
}

.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 197, 75, 0.15);
    border: 1px solid rgba(245, 197, 75, 0.3);
    color: #F5C54B;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F5C54B;
    color: #1d0c1b;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 197, 75, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 197, 75, 0.4);
    background: #fcd34d;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1d0c1b;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: #3d1838;
}

.btn-arrow-light {
    transition: transform 0.3s ease;
}

.btn-dark:hover .btn-arrow-light {
    transform: translateX(4px);
}

.btn-amber {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1d0c1b;
    color: #F5C54B;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-amber:hover {
    transform: translateY(-2px);
    background: #3d1838;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ===== SECTION TAGS ===== */
.section-tag-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 197, 75, 0.1);
    border: 1px solid rgba(245, 197, 75, 0.2);
    color: #F5C54B;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.section-tag-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(107, 45, 91, 0.2);
    border: 1px solid rgba(107, 45, 91, 0.4);
    color: #f9c2e0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* ===== HERO SECTION ===== */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-content h1 {
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-content p {
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-content > div:last-child {
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-card-main {
    position: relative;
}

.hero-card-inner {
    position: relative;
}

.hero-card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 45, 91, 0.2) 0%, transparent 60%);
    z-index: 1;
    border-radius: 1.5rem;
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.float-1 {
    bottom: 15%;
    left: -10%;
    animation-delay: 0s;
}

.float-2 {
    top: 5%;
    left: -5%;
    animation-delay: 2s;
}

.float-3 {
    bottom: 0;
    right: -5%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.float-icon-1 {
    width: 48px;
    height: 48px;
    background: rgba(107, 45, 91, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-icon-2 {
    width: 48px;
    height: 48px;
    background: rgba(107, 45, 91, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-icon-3 {
    width: 48px;
    height: 48px;
    background: rgba(245, 197, 75, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    animation: fadeInUp 0.6s ease 0.5s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #F5C54B;
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ===== MENU CARDS ===== */
.menu-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.menu-card-tag {
    display: inline-block;
    background: rgba(107, 45, 91, 0.3);
    color: #f9c2e0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-top: 0.75rem;
}

/* ===== ABOUT SECTION ===== */
.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
}

.about-img-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29, 12, 27, 0.3) 0%, transparent 40%);
    border-radius: 1.5rem;
}

.about-accent-shape {
    animation: floatShape 10s ease-in-out infinite;
}

.about-stat {
    padding: 0.5rem 0;
}

/* ===== GALLERY ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29, 12, 27, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== VISIT SECTION ===== */
.visit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.visit-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(4px);
}

.visit-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 197, 75, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-container {
    position: relative;
}

.map-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F5C54B, transparent);
}

.label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-field:focus {
    border-color: rgba(245, 197, 75, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(245, 197, 75, 0.1);
}

.input-field option {
    background: #1d0c1b;
    color: white;
}

.textarea-field {
    resize: none;
}

.form-success {
    animation: fadeInUp 0.4s ease;
}

/* ===== CTA SECTION ===== */
.cta-pattern {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(107, 45, 91, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(107, 45, 91, 0.3) 0%, transparent 50%);
}

/* ===== SOCIAL ICONS ===== */
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(245, 197, 75, 0.15);
    border-color: rgba(245, 197, 75, 0.3);
    color: #F5C54B;
    transform: translateY(-2px);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-card-main {
        width: 260px;
    }

    .hero-float-card {
        display: none;
    }

    .about-img-accent {
        display: none !important;
    }

    .about-accent-shape {
        display: none !important;
    }

    .section-tag-light,
    .section-tag-dark {
        font-size: 0.7rem;
    }

    .font-display.text-4xl {
        font-size: 2.25rem;
    }

    .font-display.text-5xl {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-dark,
    .btn-amber {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }

    .hero-content > div:last-child {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}
