/* ============================================
   RecipeFinder Website Styles
   ============================================ */

:root {
    /* Exact Theme Colors from RecipeFinder App (AppTheme.swift) */
    /* Light Mode - Frost Light (bright teal gradient) */
    --teal-bright-light: rgb(20, 184, 166);      /* Bright Teal */
    --teal-medium-light: rgb(45, 155, 180);      /* Medium Teal-Blue */
    --teal-deep-light: rgb(59, 130, 246);        /* Deep Ocean Blue */
    --teal-rich-light: rgb(67, 97, 238);         /* Rich Royal Blue */
    
    /* Dark Mode - Ember Dark (dark ocean teal) */
    --teal-bright-dark: rgb(15, 120, 110);       /* Dark Teal */
    --teal-medium-dark: rgb(25, 95, 120);        /* Dark Teal-Blue */
    --teal-deep-dark: rgb(30, 70, 150);          /* Deep Dark Ocean */
    --teal-rich-dark: rgb(35, 50, 130);          /* Rich Dark Blue */
    
    /* Light Mode Gradients & Colors */
    --gradient-light: linear-gradient(135deg, 
        var(--teal-bright-light), 
        var(--teal-medium-light), 
        var(--teal-deep-light), 
        var(--teal-rich-light)
    );
    --bg-card-light: rgba(255, 255, 255, 0.95);  /* Frost Light cards */
    --text-primary-light: #000000;               /* Black text in light mode */
    --text-secondary-light: rgba(0, 0, 0, 0.7);  /* Black with opacity in light mode */
    --shadow-light: rgba(0, 0, 0, 0.2);
    
    /* Dark Mode Gradients & Colors */
    --gradient-dark: linear-gradient(135deg,
        var(--teal-bright-dark),
        var(--teal-medium-dark),
        var(--teal-deep-dark),
        var(--teal-rich-dark)
    );
    --bg-card-dark: rgb(28, 28, 30);             /* Ember Dark cards */
    --text-primary-dark: #ffffff;                /* White text in dark mode */
    --text-secondary-dark: rgba(255, 255, 255, 0.85);  /* White with opacity in dark mode */
    --shadow-dark: rgba(0, 0, 0, 0.4);
    
    /* Apply light mode by default (respect system preference) */
    --gradient-main: var(--gradient-light);
    --bg-card: var(--bg-card-light);
    --text-primary: var(--text-primary-light);
    --text-secondary: var(--text-secondary-light);
    --shadow: var(--shadow-light);
    --accent: var(--teal-bright-light);
}


/* Dark mode - user toggles or system preference */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --gradient-main: var(--gradient-dark);
        --bg-card: var(--bg-card-dark);
        --text-primary: var(--text-primary-dark);
        --text-secondary: var(--text-secondary-dark);
        --shadow: var(--shadow-dark);
        --accent: var(--teal-bright-dark);
    }
}

/* Manual dark mode override */
:root[data-theme="dark"] {
    --gradient-main: var(--gradient-dark);
    --bg-card: var(--bg-card-dark);
    --text-primary: var(--text-primary-dark);
    --text-secondary: var(--text-secondary-dark);
    --shadow: var(--shadow-dark);
    --accent: var(--teal-bright-dark);
}

/* Manual light mode override */
:root[data-theme="light"] {
    --gradient-main: var(--gradient-light);
    --bg-card: var(--bg-card-light);
    --text-primary: var(--text-primary-light);
    --text-secondary: var(--text-secondary-light);
    --shadow: var(--shadow-light);
    --accent: var(--teal-bright-light);
}

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

html {
    scroll-behavior: smooth;
}

/* Scroll margin for sections to account for fixed banner */
section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    background: var(--gradient-main);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
}

/* ============================================
   Coming Soon Banner
   ============================================ */

.coming-soon-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-main);
    padding: 14px 20px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
}

.theme-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.theme-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

.banner-text {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;  /* Always white on gradient background */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% { 
        opacity: 0.4; 
        transform: scale(0.8);
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
}

/* ============================================
   Container
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 20px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px);
    padding: 0 20px 60px;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   Logo with Cool Effect
   ============================================ */

.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.logo-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-main);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.6;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.logo {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 28%;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28%;
}

/* ============================================
   Typography
   ============================================ */

.app-name {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);  /* Black in light mode, white in dark mode */
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
}

/* ============================================
   Platforms Section
   ============================================ */

.platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.platform-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(20, 184, 166, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
    border-color: rgba(20, 184, 166, 0.3);
}

.platform-item.coming-soon {
    border-color: rgba(20, 184, 166, 0.25);
}

.platform-item.future {
    opacity: 0.5;
}

.platform-logo {
    font-size: 1.2rem;
    line-height: 1;
}

.platform-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.platform-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--text-secondary);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-item.coming-soon .platform-status {
    background: var(--gradient-main);
    color: #ffffff;
}

/* ============================================
   Features Grid
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.feature {
    background: var(--bg-card);
    padding: 32px 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(20, 184, 166, 0.1);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 4px 8px var(--shadow));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);  /* Adapts to theme */
    font-weight: 600;
}

.feature p {
    color: var(--text-secondary);  /* Adapts to theme */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Coming Soon Feature */
.feature-coming-soon {
    position: relative;
    opacity: 0.9;
    filter: grayscale(20%);
    cursor: not-allowed;
    background: linear-gradient(135deg, #434343 0%, #2c3e50 50%, #34495e 100%) !important;
    border: none;
}

.feature-coming-soon:hover {
    transform: translateY(-4px);
    opacity: 0.95;
}

.feature-coming-soon::before {
    display: none;
}

.coming-soon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.feature-coming-soon .feature-icon {
    opacity: 0.9;
}

.feature-coming-soon:hover .feature-icon {
    transform: scale(1.05);
}

.feature-coming-soon h3,
.feature-coming-soon p {
    color: #ffffff !important;
    opacity: 0.95;
}

/* Hidden Features */
.feature-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.feature-hidden.feature-visible {
    display: block;
    animation: fadeInFeature 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Show More Button */
.show-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 40px auto 0;
    padding: 16px 32px;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--accent);
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--shadow);
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
    background: var(--gradient-main);
    color: white;
    border-color: transparent;
}

.show-more-btn:active {
    transform: translateY(-1px);
}

.show-more-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.show-more-btn.expanded .show-more-arrow {
    transform: rotate(180deg);
}

.show-more-btn.hidden {
    display: none;
}

/* ============================================
   iPhone Mockup
   ============================================ */

.iphone-mockup {
    perspective: 1000px;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.iphone-frame {
    position: relative;
    width: 350px;
    height: 700px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 50px;
    padding: 15px;
    box-shadow: 
        0 0 0 2px #2a2a2a,
        0 0 0 4px #1a1a1a,
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 60px var(--shadow);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateY(-5deg); }
}

.iphone-notch {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #0a0a0a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.iphone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 38px;
    overflow: hidden;
}

.screenshot-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.screenshot {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.screenshot.active {
    opacity: 1;
}

.iphone-button {
    position: absolute;
    right: -3px;
    top: 200px;
    width: 6px;
    height: 80px;
    background: #2a2a2a;
    border-radius: 3px 0 0 3px;
}

/* ============================================
   Slideshow Controls
   ============================================ */

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--teal-start);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   Notify Section
   ============================================ */

.notify-section {
    text-align: center;
    padding: clamp(10px, 5vh, 30px) 5vw;
    max-width: min(700px, 90vw);
    margin: 0 auto;
    overflow: visible;
}

.notify-section h2 {
    font-size: clamp(1.2rem, 3.2vw, 2.2rem);
    margin-bottom: clamp(8px, 1.5vh, 16px);
    color: var(--text-primary);  /* Black in light mode, white in dark mode */
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.notify-section p {
    color: var(--text-secondary);
    margin-bottom: clamp(20px, 3vh, 32px);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.notify-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
}

.notify-form input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: var(--bg-card);  /* White in light mode, grey in dark mode */
    color: var(--text-primary);  /* Adapts to theme */
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notify-form input::placeholder {
    color: var(--text-secondary);  /* Adapts to theme */
}

.notify-form input:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: 0 0 0 4px var(--shadow);
    transform: translateY(-2px);
}

.notify-form button {
    padding: 16px 40px;
    border-radius: 12px;
    border: none;
    background: var(--gradient-main);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--shadow);
}

.notify-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.notify-form button:active {
    transform: translateY(-1px);
}

.form-message {
    color: var(--text-primary);
    font-size: 0.95rem;
    min-height: 24px;
    font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: 80px 20px 30px;
    border-top: 2px solid rgba(20, 184, 166, 0.1);
    color: var(--text-secondary);
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.business-info {
    color: var(--text-primary);  /* Black in light mode, white in dark mode */
    font-weight: 600;
    margin-top: 12px;
    font-size: 1rem;
}

.business-details {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 6px;
    line-height: 1.6;
}

.legal-jurisdictions {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 10px;
    line-height: 1.5;
}

.website-info {
    font-size: 0.9rem;
    margin-top: 10px;
    line-height: 1.6;
}

.website-info a {
    color: var(--text-primary);
    text-decoration: underline;
    transition: opacity 0.2s ease;
    font-weight: 500;
}

.website-info a:hover {
    opacity: 0.7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.footer-section a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9), rgba(59, 130, 246, 0.9));
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Light mode: black icons */
[data-theme="light"] .social-links a {
    color: #1a1a1a;
}

/* Dark mode: white icons */
[data-theme="dark"] .social-links a {
    color: white;
}

.social-links a::after {
    display: none; /* Remove underline effect for social icons */
}

.social-links a:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 1), rgba(59, 130, 246, 1));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(20, 184, 166, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-links svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke: none;
}

.social-links a:first-child svg,
.social-links a:nth-child(2) svg {
    fill: currentColor;
    stroke: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(20, 184, 166, 0.1);
    font-size: 0.88rem;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-bottom p {
    margin: 8px 0;
}

.footer-bottom a {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
    opacity: 0.7;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-main);
    border-top: none;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.cookie-consent.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: #ffffff;  /* Always white on gradient background */
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-accept:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-reject {
    padding: 10px 25px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.cookie-buttons a {
    color: rgba(255, 255, 255, 0.9);  /* Always white on gradient background */
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-buttons a:hover {
    color: #ffffff;  /* Full white on hover */
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Make banner scroll with page on mobile instead of staying fixed */
    .coming-soon-banner {
        position: sticky;
    }
    
    .app-name {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.15rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    
    .feature {
        padding: 28px 24px;
    }
    
    .notify-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .notify-form input {
        min-width: 100%;
    }
    
    .notify-form button {
        width: 100%;
        padding: 18px;
    }
    
    .footer {
        padding: 60px 20px 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section a:hover {
        transform: none; /* Remove horizontal shift on mobile */
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-accept {
        width: 100%;
    }
    
    .banner-text {
        font-size: 13px;
    }
    
    .theme-toggle {
        right: 15px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 70px 12px 15px;
    }
    
    .app-name {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .logo-container {
        width: 90px;
        height: 90px;
    }
    
    .feature {
        padding: 24px 20px;
    }
    
    .feature h3 {
        font-size: 1.15rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-content p {
        font-size: 0.88rem;
    }
    
    .banner-text {
        font-size: 11px;
        letter-spacing: 0.3px;
    }
    
    .pulse-dot {
        width: 8px;
        height: 8px;
    }
}
