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


 /* #480161*/

:root {
    --color-dark: #0d0d0d;
    --color-darker: #080808;
    --color-gold: #FFF48D;
    --color-gold-light: #e6d4aa;
    --color-purple: #6b4d8a;
    --color-purple-dark: #3d2d4f;
    --color-white: #f5f5f5;
    --color-white-soft: rgba(245, 245, 245, 0.8);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../img/bg.jpg') center center / cover no-repeat fixed;
    text-align: center;
    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.1) 0%,
        rgba(13, 13, 13, 0.2) 20%,
        rgba(13, 13, 13, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.logo {
    width: 200px;
    max-width: 80%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 20px rgba(201, 168, 108, 0.3));
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}
    .tagline span {
        display: inline-block;
    }
    .tagline .bullet-desktop {
        display: inline-block;
    }

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    /* color: var(--color-white-soft); */
    color: var(--color-white);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.spacer-30 {
    height: 30px;
}   

/* ===== BUTTONS ===== */


.btn {
    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.btn-apple-store {
    width: 150px;
    height: 55px;
}

.btn-google-play {
    width: 150px;
    height: 55px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* 
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.3);
}

.btn-secondary {
    background: transparent;
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
} */

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-darker) 100%);
}

.features h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    color: var(--color-gold-light);
}

.section-subtitle {
    text-align: center;
    color: var(--color-white-soft);
    margin-bottom: 4rem;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(107, 77, 138, 0.1) 0%, rgba(61, 45, 79, 0.2) 100%);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 108, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.feature-card p {
    color: var(--color-white-soft);
    font-size: 0.95rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 0;
    background: var(--color-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--color-gold-light);
}

.about-text p {
    color: var(--color-white-soft);
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-white);
}

.about-features li::before {
    content: '✧';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(201, 168, 108, 0.2));
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-purple-dark) 0%, var(--color-dark) 100%);
    text-align: center;
}

.cta-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cta-section p {
    color: var(--color-white-soft);
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 2rem 0;
    background: var(--color-darker);
    border-top: 1px solid rgba(201, 168, 108, 0.1);
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    color: var(--color-white-soft);
}

.footer p {
    color: var(--color-white-soft);
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--color-white-soft);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        max-width: 250px;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }
    .tagline {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .tagline span {
        display: block;
    }
    .tagline .bullet-desktop {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
