/* Define the custom color variable */
:root {
    --primary-color: #397b57; /* The requested dark green color */
    --secondary-color: #ffffff;
    --text-color: #1a1a1a;
}

:root {
    --grid-gap: 6px;
    --grid-col-num: 6;
    --grid-col-unit: calc(((100vw - var(--outer-margin) * 2) - (var(--grid-gap) * (var(--grid-col-num) - 1))) / var(--grid-col-num));
    --watches-grid-width: calc((var(--grid-col-num) - 1) * var(--grid-gap) + var(--grid-col-num) * var(--grid-col-unit));
    --outer-margin: 8vw;
    --s-h-space: 4vh;
    --m-h-space: 7vh;
    --l-h-space: 10vh;
    --xl-h-space: 120vw;
    --btn-height: 2.5rem;
    --subnav-height: 4.375rem;
    --header-height: clamp(5rem, 3.4375rem + 3.9063vw, 6.875rem);
}

:root {
    --rolex-gold: 146 108 28;
    --green: 18 119 73;
    --dark-green: 11 62 39;
    --light-green: 36 154 100;
    --light-black: 33 33 33;
    --dark-grey: 118 118 118;
    --grey: 212 212 212;
    --alternate-grey: 216 216 216;
    --light-grey: 248 248 248;
    --pure-white: 255 255 255;
    --ocean-green: 155 249 206;
    --focus: var(--light-green);
    --gradient-green-from: 16 99 61;
    --gradient-green-to: 26 145 90;
    --gradient-dark-green-from: 12 76 47;
    --gradient-dark-green-to: 20 115 72;
    --gradient-qrcode-green-from: 0 107 65;
    --gradient-qrcode-green-to: 0 55 34;
}

:root {
    --primary-font-family: "Helvetica Now Text", Helvetica, Arial, sans-serif;
    --primary-font-weight: 300;
    --secondary-font-family: RolexFont-S, sans-serif;
    --secondary-letter-spacing: 0.125em;
    --leading: normal;
    --quote-font-family: SangBleuKingdom, "Times New Roman", Times, serif;
    --quote-font-weight: 300;
    --quote-font-style: normal;
    --quote-opening: "“";
    --quote-closing: "”";
    color: rgb(var(--light-black));
}


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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

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

/* --- Navigation Bar (Header) --- */
.navbar {
    background: linear-gradient(90deg, #0b3e27, #197149);
    padding: 15px 0;
    color: var(--secondary-color);
}

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

.logo {
    font-size: 1.5em;
    font-weight: 700;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

/* --- Hero Section --- */
.hero-section {
    padding: 80px 0 60px;
    background-color: var(--secondary-color);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-content {
    flex: 1;
    max-width: 50%;
}

.text-content h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #666;
}

/* App Store Icons Placeholder Styling */
.app-stores {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.app-icon {
    padding: 8px 15px;
    font-size: 0.9em;
    color: #333;
    cursor: pointer;
}

/* CTA Buttons Styling */
.cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-btn {
    background-color: var(--primary-color); /* Use the new color for buttons */
    color: var(--secondary-color);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9em;
    transition: background-color 0.2s;
}

.cta-btn:hover {
    background-color: #2b6141; /* Slightly darker shade on hover */
}

/* Image Content Placeholder */
.image-content {
    flex: 1;
    max-width: 50%;
    /* The original image has a faded/blurred background to the left of the woman, 
       this is a simplified representation. */
    background-color: #f0f0f0; 
    border-radius: 8px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.main-image-placeholder {
    /* For a real implementation, you'd use a background image or <img> tag */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: #e0e0e0; 
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 20px;
    /* A gradient effect to mimic the blurred background on the left */
  
    
}


/* --- TV Section (Bottom Bar) --- */
.tv-section {
    background-color: var(--primary-color); /* Use the new color for the bottom bar */
    color: var(--secondary-color);
    padding: 20px 0;
    text-align: center;
}

.tv-section h2 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 5px;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content, .image-content {
        max-width: 100%;
    }

    .text-content h1 {
        font-size: 2.5em;
    }

    .app-stores, .cta-buttons {
        justify-content: center;
    }
    
    .navbar .container {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 10px;
    }

    .nav-links a {
        margin: 0 5px;
    }
}
