/* Premium TAAZA CSS */

:root {
    --font-main: 'Outfit', sans-serif;
    
    /* Base Colors - Dark Theme Native */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Thematic Variables (Default Healthy) */
    --theme-primary: #00C853;
    --theme-secondary: #B2FF59;
    --theme-gradient: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    --bg-color: #0b1510;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-shadow: 0 8px 32px 0 rgba(0, 200, 83, 0.15);
}

body.theme-seafood {
    --theme-primary: #00B0FF; /* Using the lighter blue as primary for pop */
    --theme-secondary: #0D47A1;
    --theme-gradient: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    --bg-color: #070d1c;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-shadow: 0 8px 32px 0 rgba(0, 176, 255, 0.15);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color 0.8s ease-in-out;
}

/* -------------------------------------
 * GLASSMORPHISM UTILITIES
 * ------------------------------------- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    transition: all 0.5s ease;
}

.glass-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glass-shadow);
    border-color: rgba(255, 255, 255, 0.3);
}

/* -------------------------------------
 * BACKGROUND ELEMENTS
 * ------------------------------------- */
.parallax-bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatBlob 15s infinite alternate ease-in-out;
    transition: background 0.8s ease;
}

.blob-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    right: -10%;
    background: var(--theme-secondary);
}

.blob-2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    left: -10%;
    background: var(--theme-primary);
    animation-delay: -7s;
}

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

/* -------------------------------------
 * TYPOGRAPHY & BUTTONS
 * ------------------------------------- */
.highlight {
    background: var(--theme-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.primary-cta {
    background: var(--theme-gradient);
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.primary-cta:hover::before {
    opacity: 1;
}

.glow-btn:hover {
    box-shadow: 0 0 25px 5px var(--theme-primary);
}

.bounce-hover:hover {
    transform: translateY(-5px);
}

/* -------------------------------------
 * LOADER
 * ------------------------------------- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.logo-anim {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #00C853, #00B0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s infinite;
}

.loader-tagline {
    text-align: center;
    margin-top: 10px;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

/* -------------------------------------
 * NAVBAR
 * ------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(11, 21, 16, 0.5); /* Adaptive via JS if needed, static ok */
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.5s ease;
}

body.theme-seafood .navbar {
    background: rgba(7, 13, 28, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-cta {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.nav-cta:hover {
    background: rgba(255,255,255,0.2);
}

/* -------------------------------------
 * HERO SECTION
 * ------------------------------------- */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-inline: 2rem;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    z-index: 10;
}

.subheadline {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* Hero Images */
.hero-images {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-img {
    position: absolute;
    max-width: 120%;
    max-height: 120%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    animation: hoverFloat 6s ease-in-out infinite;
}

.floating-img.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

@keyframes hoverFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* -------------------------------------
 * TOGGLE SWITCH
 * ------------------------------------- */
.toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2.5rem;
}

.toggle-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--theme-primary);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Base switch color is healthy */
.switch input:checked + .slider {
    background-color: var(--theme-primary);
}

.switch input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* -------------------------------------
 * COUNTDOWN SECTION
 * ------------------------------------- */
.countdown-section {
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    display: inline-block;
}

.urgency-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--theme-primary);
    animation: textPulse 2s infinite;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span:first-child {
    font-size: 3rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.time-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.colon {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: -20px;
    animation: blink 1s infinite alternate;
}

@keyframes textPulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 10px var(--theme-primary); }
    100% { opacity: 0.7; }
}

@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.2; }
}

/* -------------------------------------
 * CTA & URGENCY
 * ------------------------------------- */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 3rem;
}

.small-urgency {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 5px;
}

/* -------------------------------------
 * FEATURES SECTION
 * ------------------------------------- */
.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* -------------------------------------
 * SPLIT DIRECTORY SECTION
 * ------------------------------------- */
.split-section {
    display: flex;
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.split {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: flex 0.5s ease;
    overflow: hidden;
}

.split:hover {
    flex: 1.2;
}

.left-split { background: #00C853; }
.right-split { background: #0D47A1; }

.split-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
    opacity: 0.3;
    mix-blend-mode: overlay;
    transition: transform 0.8s ease;
}
.right-split .split-overlay {
    background: url('https://images.unsplash.com/photo-1615141982883-c7ad0e69fd62?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
}

.split:hover .split-overlay {
    transform: scale(1.1);
}

.split-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    text-align: center;
    max-width: 80%;
}

.split-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.toggle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* -------------------------------------
 * SOCIAL PROOF
 * ------------------------------------- */
.social-proof {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.proof-content {
    text-align: center;
    padding: 3rem 4rem;
}

.proof-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.waiting-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #FF3D00;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 61, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 61, 0, 0); }
}

/* -------------------------------------
 * FOOTER
 * ------------------------------------- */
footer {
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 100px; /* Space for mobile sticky CTA */
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.social-icons a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--theme-primary);
}

.footer-rights {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* -------------------------------------
 * MOBILE STICKY CTA
 * ------------------------------------- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
}

.mobile-sticky-cta .primary-cta {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* -------------------------------------
 * ANIMATION UTILITIES
 * ------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1.0s; }

/* -------------------------------------
 * MEDIA QUERIES
 * ------------------------------------- */
@media (max-width: 1024px) {
    .headline { font-size: 3.5rem; }
    .hero-images { height: 400px; }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .headline { font-size: 2.8rem; }
    
    .hero-images {
        width: 100%;
        height: 350px;
        order: -1;
        margin-bottom: 2rem;
    }
    
    .cta-container {
        align-items: center;
    }

    .split-section {
        flex-direction: column;
        height: auto;
    }
    
    .split {
        padding: 4rem 2rem;
    }

    .split:hover {
        flex: 1;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .nav-cta {
        display: none; /* Hide top CTA on mobile to prefer sticky bottom */
    }
    
    .features {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .headline { font-size: 2.2rem; }
    .subheadline { font-size: 1rem; }
    .countdown-timer span:first-child { font-size: 2.2rem; }
    .colon { font-size: 2rem; }
    .hero-images { height: 280px; }
}
