/* ========================================
   SMOOTHIE BOBATEA — CUSTOM STYLES
   ======================================== */

/* --- 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: 'Outfit', sans-serif;
    overflow-x: hidden;
}

::selection {
    background: #5eead4;
    color: #0f2b4c;
}

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

/* --- Geometric Background Shapes --- */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -150px;
    animation: float-slow 20s ease-in-out infinite;
}

.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(15, 43, 76, 0.06) 0%, transparent 70%);
    bottom: 10%;
    left: -80px;
    animation: float-slow 15s ease-in-out infinite reverse;
}

.geo-circle--3 {
    width: 150px;
    height: 150px;
    background: rgba(94, 234, 212, 0.1);
    top: 40%;
    right: 5%;
    animation: float-medium 10s ease-in-out infinite;
}

.geo-rect {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(94, 234, 212, 0.06);
    border-radius: 24px;
    top: 25%;
    left: 42%;
    transform: rotate(45deg);
    animation: float-medium 12s ease-in-out infinite;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(15, 43, 76, 0.04);
    bottom: 20%;
    right: 15%;
    animation: spin-slow 30s linear infinite;
}

.geo-dots {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(94, 234, 212, 0.3) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    animation: float-slow 18s ease-in-out infinite;
}

/* --- Floating Elements --- */
.floating-circle {
    animation: float-medium 6s ease-in-out infinite;
}

.floating-card {
    animation: float-medium 5s ease-in-out infinite;
}

/* --- Hero Image Wrapper --- */
.hero-image-wrapper {
    animation: slide-up 1s ease-out forwards;
    opacity: 0;
    transform: translateY(40px);
}

/* --- Marquee --- */
.marquee-track {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}

/* --- Menu Cards --- */
.menu-card {
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
}

/* --- Navbar --- */
.nav-scrolled {
    background: rgba(252, 252, 250, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(15, 43, 76, 0.06);
}

.nav-scrolled .menu-line {
    background: #0f2b4c;
}

/* --- Mobile Menu --- */
.mobile-menu-open {
    opacity: 1 !important;
    pointer-events: all !important;
}

.menu-toggle-open .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle-open .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle-open .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 5rem;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    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; }

/* --- Keyframes --- */
@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(5deg); }
    66% { transform: translate(-10px, 15px) rotate(-3deg); }
}

@keyframes float-medium {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -20px); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .geo-circle--1 {
        width: 300px;
        height: 300px;
    }

    .geo-circle--2 {
        width: 150px;
        height: 150px;
    }

    .geo-rect {
        display: none;
    }

    .geo-triangle {
        display: none;
    }

    .floating-card {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: 1rem;
    }
}

/* --- Focus Visible --- */
*:focus-visible {
    outline: 2px solid #5eead4;
    outline-offset: 2px;
}

/* --- Print --- */
@media print {
    nav, .marquee-track, #contact {
        display: none;
    }
}
