/* --- Variables and Global Reset --- */
:root {
    --color-pink: #ff589b; /* Primary Accent Pink */
    --color-light-pink: #ffe7f0; /* Soft Background Pink */
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-soft-gray: #f8f8f8; /* New soft background color */
    --font-primary: 'Arial', sans-serif;
    --nav-height: 60px;
}

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

body {
    font-family: var(--font-primary);
    background: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* FIX: Sticky header overlap compensation */
section, footer {
    scroll-margin-top: var(--nav-height); /* Ensures header does not cover content when jumping to section */
}

a {
    text-decoration: none;
    color: var(--color-black);
    transition: color 0.3s;
}

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

/* --- Navigation Bar --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-soft-gray);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 30px;
    width: auto;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 15px;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--color-pink);
}

.nav-cta {
    background-color: var(--color-pink);
    color: var(--color-white);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.nav-cta:hover {
    opacity: 0.9;
}


/* --- Hero Section - Asymmetric Layout --- */
.hero-section {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    /* Split background color for dynamic feel */
    background: linear-gradient(to right, var(--color-soft-gray) 50%, var(--color-light-pink) 100%);
}

.hero-text-block {
    flex: 1;
    max-width: 50%;
    padding-right: 40px;
}

.hero-image-block {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.pink-highlight {
    color: var(--color-pink);
}

.hero-subtext {
    font-size: 20px;
    color: var(--color-black);
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-product-img {
    width: 90%;
    max-width: 450px;
    border-radius: 10px;
    /* Fun, offset shadow effect */
    box-shadow: 20px 20px 0px rgba(255, 88, 155, 0.4); 
}

.scroll-link {
    font-weight: bold;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 14px;
}

.arrow {
    margin-left: 10px;
    display: inline-block;
    /* Subtle bounce animation */
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

/* --- Product Showcase (Info) --- */
.info-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
}

.product-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.product-info-text, .product-info-visual {
    flex: 1;
}

.product-info-text p {
    margin-bottom: 25px;
    color: #444;
}

.feature-list h4 {
    color: var(--color-pink);
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-list ul {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 8px;
    font-size: 16px;
}

.bullet-check {
    color: var(--color-pink);
    font-weight: bold;
    margin-right: 5px;
}

.product-detailed-img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.product-detailed-img:hover {
    transform: scale(1.02); /* Subtle zoom on hover */
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--color-pink);
    color: var(--color-white);
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #f73686;
    transform: translateY(-2px);
}

/* --- Vibe Section (Fun, Bold Vibe) --- */
.vibe-section {
    padding: 120px 40px;
    background-color: var(--color-light-pink);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vibe-quote {
    font-size: 90px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: -3px;
}

.pink-stroke {
    color: var(--color-pink);
    /* Creates a white 'stroke' effect around the text for bold contrast */
    text-shadow: 
        -2px -2px 0 var(--color-white),  
         2px -2px 0 var(--color-white),
        -2px  2px 0 var(--color-white),
         2px  2px 0 var(--color-white); 
}

.vibe-subtitle {
    font-size: 24px;
    margin-top: 20px;
    font-weight: 300;
}

/* --- Footer / Connect Section --- */
.connect-section {
    background-color: var(--color-black);
    color: var(--color-soft-gray);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-block {
    display: flex;
    flex-direction: column;
}

.footer-block h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-block a, .footer-block p {
    color: var(--color-soft-gray);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-block a:hover {
    color: var(--color-pink);
}

.email-input {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background-color: #333;
    color: var(--color-white);
}

.submit-btn {
    padding: 10px 20px;
    background-color: var(--color-pink);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #f73686;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #555;
    margin-top: 20px;
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 20px;
        text-align: center;
    }
    .hero-text-block, .hero-image-block {
        max-width: 100%;
        padding-right: 0;
    }
    .hero-text-block {
        margin-bottom: 40px;
    }
    .hero-title {
        font-size: 60px;
    }
    .hero-product-img {
        width: 60%;
    }
    
    .product-grid {
        flex-direction: column;
    }
    .product-info-text, .product-info-visual {
        text-align: center;
    }
    .feature-list {
        text-align: left; /* Keep features list aligned left for readability */
        max-width: 300px;
        margin: 0 auto 30px;
    }
    .vibe-quote {
        font-size: 60px;
    }
    .footer-content {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .footer-block {
        width: 50%;
        margin-bottom: 30px;
        align-items: center;
        text-align: center;
    }
    .newsletter {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .email-input {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 0 15px;
    }
    .nav-links {
        display: none; /* Hide for mobile to keep nav clean */
    }
    .hero-title {
        font-size: 44px;
    }
    .hero-product-img {
        width: 80%;
        box-shadow: 10px 10px 0px rgba(255, 88, 155, 0.4);
    }
    .section-title {
        font-size: 36px;
    }
    .vibe-quote {
        font-size: 40px;
    }
    .footer-block {
        width: 100%;
        margin-bottom: 30px;
    }
    .email-input {
        width: 100%;
    }
}