/* === BIG BASS BONANZA: PREMIUM DESIGN SYSTEM === */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

:root {
    /* Color Strategy: LIGHT THEME - Pastel muted icon palette */
    --ocean-deep: #2A5D67;
    --ocean-light: #4A90E2;
    --sand-warm: #FDFBF7;
    --sand-dark: #F5F1E9;
    --accent-coral: #FF7F50;
    --accent-glow: rgba(74, 144, 226, 0.3);

    --bg: #FFFFFF;
    --bg-secondary: var(--sand-warm);
    --text: #1A2B34;
    --text-muted: #5C727D;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-pill: 100px;

    --shadow-premium: 0 15px 35px rgba(0,0,0,0.05);
    --shadow-glow: 0 10px 25px -5px var(--accent-glow);

    --container-max: 1200px;
    --section-pad: clamp(5rem, 10vw, 8rem);

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip; /* Prevent horizontal scroll while keeping sticky/fixed */
}

h1, h2, h3, .editorial-heading {
    font-family: 'Abril Fatface', serif;
    font-weight: 400;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* === LAYOUT UTILITIES === */
.ocean-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glass Panels */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-premium);
    border-radius: var(--radius-md);
}

/* Background Texture: Particle Dot Grid */
.bg-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(#4a90e2 0.5px, transparent 0.5px);
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
}

/* === NAVIGATION === */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.nav-bar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-family: 'Abril Fatface', serif;
}

.nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--ocean-light);
}

.nav-btn {
    background: var(--ocean-light);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.nav-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* === HERO SECTION === */
.hero-showcase {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    max-width: 900px;
}

.entry-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--sand-dark);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 8.5rem);
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-light) 50%, var(--accent-coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-tagline {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: var(--text);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.store-btn i {
    font-size: 1.8rem;
}

.store-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* === GALLERY: FLOATING COLLAGE === */
.gallery-section {
    padding: var(--section-pad) 0;
    min-height: 800px;
    background: var(--bg);
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    align-items: center;
}

.collage-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.collage-item:hover {
    transform: scale(1.03) rotate(0deg) !important;
    z-index: 10;
}

.item-1 { grid-column: 1 / 3; height: 400px; transform: rotate(-2deg); }
.item-2 { grid-column: 3 / 5; height: 400px; transform: rotate(2deg); }
.item-3 { grid-column: 1 / 2; height: 220px; transform: rotate(1deg); }
.item-4 { grid-column: 2 / 4; height: 260px; transform: rotate(-1deg); }
.item-5 { grid-column: 4 / 5; height: 220px; transform: rotate(3deg); }

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === STATS: GIANT NUMBERS === */
.stats-section {
    padding: var(--section-pad) 0;
    background: var(--sand-warm);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.stat-number {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    color: var(--ocean-light);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* === FEATURES: HORIZONTAL SCROLL CARDS === */
.features-section {
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 3rem;
    padding-right: 5%;
    scrollbar-width: none; /* Firefox */
}

.features-scroller::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.feature-card {
    flex: 0 0 clamp(300px, 80vw, 400px);
    scroll-snap-align: start;
    padding: 3rem;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--sand-dark);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--sand-warm);
    color: var(--ocean-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    color: var(--ocean-deep);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* === REVIEWS: RATING BREAKDOWN === */
.reviews-section {
    padding: var(--section-pad) 0;
    background: var(--sand-warm);
}

.rating-summary {
    max-width: 600px;
    margin: 0 auto 5rem;
    text-align: center;
}

.rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.rating-value {
    font-size: 5rem;
    font-family: 'Abril Fatface', serif;
    color: var(--text);
    line-height: 1;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.5rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--ocean-light);
    border-radius: 4px;
}

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

.review-card {
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ocean-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* === FAQ: ACCORDION === */
.faq-section {
    padding: var(--section-pad) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--sand-dark);
}

.faq-trigger {
    width: 100%;
    padding: 2rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ocean-deep);
    text-align: left;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content p {
    padding-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* === DOWNLOAD CTA === */
.cta-banner {
    padding: 100px 0;
    background: var(--ocean-deep);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--ocean-light) 0%, transparent 70%);
    opacity: 0.3;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3.5rem;
}

/* === FOOTER: WAVE STYLE === */
.footer-ocean {
    background: var(--bg);
    position: relative;
    padding-top: 100px;
}

.wave-divider {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    fill: var(--bg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--sand-dark);
}

.footer-brand h4 {
    margin: 1.5rem 0;
    font-family: 'Abril Fatface', serif;
    font-size: 1.8rem;
}

.footer-logo img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.footer-col h5 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--ocean-deep);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--ocean-light);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons i {
    font-size: 1.4rem;
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1024px) {
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .item-4 { grid-column: 1 / 3; }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 4rem;
    }

    .collage-grid {
        display: flex;
        flex-direction: column;
    }

    .collage-item {
        transform: rotate(0) !important;
        height: 300px !important;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* MOBILE NAV OPEN */
body.menu-open {
    overflow: hidden;
}

.mobile-overlay {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 999;
    padding: 10% 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transition: top 0.5s ease-in-out;
}

.mobile-overlay.active {
    top: 0;
}

/* === SECTION DIVIDERS: CONCAVE CURVE === */
.curved-top {
    position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-top: -30px;
    z-index: 2;
}

.curved-bottom {
    position: relative;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: -30px;
    z-index: 2;
}
