/* Root Variables for Colors and Fonts */
:root {
    --color-bone-white: #F8F7F4;
    --color-charcoal-black: #2A2A2A;
    --color-warm-maple: #B8860B; /* Example for warm maple/honey wood */
    --color-accent-brass: #B5A642; /* Example for oxidized brass/burnished copper */

    --font-primary-serif: 'Playfair Display', serif;
    --font-secondary-sans: 'Inter', sans-serif;
}

/* Basic Styles & Resets */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary-sans);
    margin: 0;
    line-height: 1.6;
    color: var(--color-charcoal-black);
    background-color: var(--color-bone-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Header */
header {
    background-color: transparent; /* Initially transparent */
    color: var(--color-charcoal-black);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header.scrolled {
    background-color: var(--color-charcoal-black);
    color: var(--color-bone-white);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Add padding to the navigation */
}

.logo {
    font-family: var(--font-primary-serif);
    font-size: 1.8rem; /* Adjusted for wider tracking */
    font-weight: 770; /* Playfair Display 770 is semi-bold */
    letter-spacing: 0.2em; /* Wide tracking */
    text-transform: uppercase;
    color: var(--color-charcoal-black); /* Default for header */
    transition: color 0.3s ease;
}

header.scrolled .logo {
    color: var(--color-bone-white);
}

.logo:hover {
    color: var(--color-accent-brass);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

nav a {
    font-family: var(--font-secondary-sans);
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.3rem;
    color: var(--color-charcoal-black); /* Default for header */
    transition: color 0.3s ease;
}

header.scrolled nav a {
    color: var(--color-bone-white);
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-brass);
    transition: width 0.3s ease-in-out;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/landingpage.png'); /* Using landingpage.png for hero background with a lighter overlay */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden; /* For dust motes animation */
    color: var(--color-bone-white); /* Keep text white */
}

.hero-content {
    z-index: 1;
    color: var(----color-bone-white); /* Changed back to dark text */
}

.hero h1 {
    font-family: var(--font-primary-serif);
    font-size: 4.5rem;
    font-weight: 770;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-family: var(--font-secondary-sans);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--color-bone-white);
    font-family: var(--font-secondary-sans);
    font-weight: 600;
    text-transform: uppercase;    padding: 1rem 2.5rem;
    border-radius: 2px;
    margin: 0 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-accent-brass);
    color: var(--color-charcoal-black);
}

.secondary-cta {
    display: inline-block;
    font-family: var(--font-secondary-sans);
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: underline;
    margin: 0 1rem;
    color: var(--color-charcoal-black);
    transition: color 0.3s ease;
}

.secondary-cta:hover {
    color: var(--color-accent-brass);
}

/* Section Common Styles */
section {
    padding: 80px 0;
    text-align: center;
}

section h2 {
    font-family: var(--font-primary-serif);
    font-size: 3rem;
    font-weight: 770;
    margin-bottom: 2rem;
    line-height: 1.2;
}

section p {
    font-family: var(--font-secondary-sans);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Sound Design Section */
.sound-design {
    background-color: var(--color-charcoal-black);
    color: var(--color-bone-white);
    padding: 100px 0;
}

.sound-design h2 {
    color: var(--color-bone-white);
}

.sound-design p {
    font-size: 1.3rem;
    line-height: 1.8;
}

/* Product Center Stage Section */
.product-center-stage {
    background-color: var(--color-bone-white);
    padding-bottom: 0; /* No padding at bottom as price follows directly */
}

.product-visual {
    position: relative;
    margin: 4rem auto;
    max-width: 700px; /* Adjust based on image size */
}

.main-shoe-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hotspots {
    /* Hotspot positioning will require JS and specific image knowledge */
    /* Placeholders for now */
}

.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--color-accent-brass);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--color-bone-white);
    transform: translate(-50%, -50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hotspot:hover {
    opacity: 1;
}

/* Hotspot callouts - will need JS */
.product-copy {
    margin-top: 3rem;
}

.product-copy p {
    font-family: var(--font-primary-serif);
    font-size: 1.8rem;
    font-weight: 770;
    line-height: 1.4;
    max-width: 700px;
    margin-bottom: 1rem;
}

.product-variants {
    background-color: var(--color-bone-white);
    padding: 60px 0;
}

.product-variants h3 {
    font-family: var(--font-primary-serif);
    font-size: 2.5rem;
    font-weight: 770;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.variant-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.variant-options p {
    font-family: var(--font-secondary-sans);
    font-size: 1.1rem;
    max-width: 300px;
    margin: 0;
    text-align: left;
}

.sizes label {
    font-family: var(--font-secondary-sans);
    font-size: 1.1rem;
    font-weight: 600;
    margin-right: 1rem;
}

.sizes select {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--color-charcoal-black);
    border-radius: 2px;
    background-color: var(--color-bone-white);
    font-family: var(--font-secondary-sans);
    font-size: 1rem;
    cursor: pointer;
    appearance: none; /* Remove default select arrow */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M287%2C197.942L146.2%2C57.142L5.4%2C197.942H287z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
}


/* Craft Section */
.craft-section {
    background-color: var(--color-charcoal-black);
    color: var(--color-bone-white);
    padding: 100px 0;
}

.craft-section h2 {
    color: var(--color-bone-white);
    text-align: left;
}

.craft-section p {
    text-align: left;
    margin-left: 0;
    max-width: none;
}

.craft-section ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    text-align: left;
}

.craft-section ul li {
    font-family: var(--font-secondary-sans);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.craft-section ul li::before {
    content: '—'; /* Custom bullet point */
    position: absolute;
    left: 0;
    color: var(--color-accent-brass);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 5%;
    text-align: left;
}

.craft-images {
    flex: 1;
    max-width: 50%;
}

.craft-images img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

.craft-content {
    flex: 1;
    max-width: 45%;
}

/* Movement Section */
.movement-section {
    background-color: var(--color-bone-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.movement-visual {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.movement-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-primary-serif);
    font-size: 3rem;
    font-weight: 770;
    color: var(--color-bone-white); /* Adjust for contrast with image */
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 5px;
}

.supporting-line {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-secondary-sans);
    font-size: 1.1rem;
    color: var(--color-charcoal-black);
}

/* Price Section */
.price-section {
    background-color: var(--color-charcoal-black);
    color: var(--color-bone-white);
    padding: 100px 0;
}

.price-value {
    font-family: var(--font-primary-serif);
    font-size: 4rem;
    font-weight: 770;
    margin-bottom: 1rem;
    color: var(--color-bone-white);
}

.price-supporting {
    font-family: var(--font-secondary-sans);
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

/* Social Proof Section */
.social-proof {
    background-color: var(--color-bone-white);
    padding: 100px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.social-proof blockquote {
    flex: 0 0 30%; /* Approx 3 per row */
    max-width: 350px;
    margin: 0;
    padding: 2rem;
    background-color: #f0f0ed; /* Slightly off-white for distinction */
    border-left: 2px solid var(--color-accent-brass);
    text-align: left;
}

.social-proof blockquote p {
    font-family: var(--font-primary-serif);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.social-proof blockquote footer {
    font-family: var(--font-secondary-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal-black);
}


/* Footer */
footer {
    background-color: var(--color-charcoal-black);
    color: var(--color-bone-white);
    padding: 60px 0 30px 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-primary-serif);
    font-size: 1.5rem;
    font-weight: 770;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-bone-white);
    margin-bottom: 2rem;
    display: block;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

footer ul li a {
    font-family: var(--font-secondary-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-bone-white);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

footer ul li a:hover {
    opacity: 1;
    color: var(--color-accent-brass);
}

footer p {
    font-family: var(--font-secondary-sans);
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.6;
}


/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    nav ul {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .craft-images, .craft-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .craft-content h2, .craft-content p, .craft-content ul {
        text-align: center;
    }

    .movement-visual .overlay-text {
        font-size: 2rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .social-proof blockquote {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        margin-top: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button, .secondary-cta {
        margin: 0.5rem 0;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .sound-design p {
        font-size: 1.1rem;
    }

    .product-copy p {
        font-size: 1.4rem;
    }

    .variant-options {
        flex-direction: column;
        gap: 1.5rem;
    }

    .variant-options p {
        text-align: center;
    }

    .sizes select {
        width: 100%;
    }

    .movement-visual .overlay-text {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .price-supporting {
        font-size: 1.1rem;
    }

    .social-proof {
        flex-direction: column;
        gap: 2rem;
    }

    .social-proof blockquote {
        flex: 0 0 90%;
        max-width: 100%;
    }

    footer ul {
        flex-direction: column;
        gap: 1rem;
    }
}