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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #020617;
    color: #fff;
    overflow-x: hidden;
}

/* ===== HERO GEOMETRIC SHAPES ===== */
.hero-shape {
    position: absolute;
    opacity: 0.15;
    will-change: transform;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: #0D9488;
    border-radius: 50%;
    filter: blur(80px);
    animation: float1 8s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    left: 15%;
    width: 200px;
    height: 200px;
    background: #14b8a6;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    filter: blur(40px);
    animation: float2 10s ease-in-out infinite;
}

.shape-3 {
    top: 20%;
    right: 35%;
    width: 150px;
    height: 150px;
    background: #2dd4bf;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(60px);
    animation: float3 12s ease-in-out infinite;
}

.shape-4 {
    bottom: 15%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: #0f766e;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    filter: blur(50px);
    animation: float4 9s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 30px) rotate(10deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { transform: translate(20px, 20px) scale(1.15); border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, -25px) rotate(-15deg); }
}

/* ===== HERO CONTENT ANIMATION ===== */
.hero-content {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards 0.3s;
}

.hero-image-wrapper {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeLeft 1s ease forwards 0.5s;
}

.hero-image-main {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image-accent {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    z-index: 10;
    border: 4px solid #0f172a;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    z-index: 10;
    background: #0D9488;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 30px -10px rgba(13, 148, 136, 0.5);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

/* ===== MARQUEE ===== */
.marquee-track {
    animation: marquee 20s linear infinite;
}

.marquee-content {
    animation: marquee-inner 20s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marquee-inner {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== MENU CARDS ===== */
.menu-card {
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 1.5rem;
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(13, 148, 136, 0.2);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

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

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

.about-img-main {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.about-img-secondary {
    border: 4px solid #0f172a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== NAVBAR ===== */
#navbar.scrolled {
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

/* ===== MOBILE MENU ===== */
.mobile-link {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #0D9488;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #14b8a6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-image-accent {
        left: -1rem;
        bottom: -1rem;
    }

    .hero-badge {
        right: -0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-image-accent {
        display: none;
    }

    .hero-badge {
        position: relative;
        right: auto;
        top: auto;
        display: inline-flex;
        margin-top: 1rem;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: -2rem;
    }

    .about-stat {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-shape {
        display: none;
    }
}
