:root {
    --bg-white: #ffffff; /* very clean white as in the screenshot */
    --text-dark: #000000;
    --text-light: #000000;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
    position: relative;
    width: 100%;
}

/* TOP BAR */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 4rem;
    z-index: 10;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 1rem;
    padding-top: 10px;
}

.social-icons svg {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.social-icons svg:hover {
    opacity: 0.6;
}

.center-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-family: Arial, sans-serif; /* The screenshot looks slightly sans-serif for the small links */
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.5;
}

.cart-icon {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    cursor: pointer;
    padding-top: 10px;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* We don't restrict height so the image dictates the proportions */
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    /* Move text higher up to sit precisely between the hands */
    top: 35%; 
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.hero-text-overlay h2 {
    font-family: var(--font-heading);
    font-size: 5vw; /* Responsive font size */
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hero-text-overlay p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2.5vw;
    font-weight: 400;
    color: var(--text-dark);
}

/* OVER PAGE IMAGE & TEXT OVERLAY */
.over-img {
    opacity: 0.5; /* Make image less transparent (more visible) */
}

.over-text-overlay {
    position: absolute;
    top: 10%; /* Move text slightly higher */
    left: 4%; /* Move text slightly further to the left */
    width: 40%;
    text-align: left;
    color: var(--text-dark);
}

.over-text-overlay .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.over-text-overlay .body-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* CONTENT SECTION */
.content-section {
    background-color: var(--bg-white);
    padding: 5rem 2rem 8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.flower-icon {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.body-text {
    font-family: var(--font-heading); /* using serif for body text as in screenshot */
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    max-width: 800px;
    font-weight: 400;
}

.text-page .body-text {
    text-align: left;
}

.discover-link {
    font-family: var(--font-heading);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 0.1rem;
    margin-top: 2rem;
    transition: opacity 0.3s ease;
}

.discover-link:hover {
    opacity: 0.6;
}

/* CONTACT PAGE */
.contact-page .top-bar,
.contact-page .site-title a {
    color: #ffffff !important;
}

.contact-page .main-nav a {
    color: #ffffff;
}

.contact-page .social-icons svg {
    stroke: #000000; /* Social icons black as requested */
}

.contact-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.contact-card {
    position: absolute;
    top: 45%; /* Shifted higher into the light area */
    left: 27.5%; /* Shifted exactly in between */
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2vw; /* Made smaller */
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5vw; /* Made smaller */
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    font-family: var(--font-heading);
    font-size: 1.5vw; /* Made smaller */
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.5;
}

/* WERK PAGE */
.werk-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.werk-card {
    position: absolute;
    top: 21.5%; /* Shifted exactly in between */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.werk-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.werk-link {
    font-family: var(--font-heading);
    font-size: 2.5vw;
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.werk-link:hover {
    opacity: 0.5;
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (min-width: 1200px) {
    .hero-text-overlay h2 { font-size: 4.5rem; }
    .hero-text-overlay p { font-size: 2.5rem; }
    .contact-title { font-size: 2.5rem; }
    .contact-subtitle { font-size: 1.8rem; }
    .contact-link { font-size: 1.8rem; }
    .werk-link { font-size: 2rem; }
}

@media (max-width: 768px) {
    /* Top Bar Stacking */
    .top-bar {
        position: relative; /* Remove absolute positioning so it doesn't overlap image content */
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
        background-color: var(--bg-white); /* Ensure background is solid so text is readable */
        z-index: 20;
    }

    .contact-page .top-bar {
        background-color: #000; /* Dark background for top bar on contact page if needed, or keep transparent but relative */
    }
    
    .social-icons {
        padding-top: 0;
        margin-bottom: 1rem;
    }
    
    .social-icons svg, .cart-icon svg {
        width: 20px;
        height: 20px;
    }

    .center-nav {
        position: static; /* Stack naturally */
        transform: none;
        width: 100%;
    }
    
    .site-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .main-nav {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }

    /* Hero Text Overlay (Home) */
    .hero-text-overlay {
        top: 40%; /* Moved slightly higher as requested */
        width: 90%;
    }

    .hero-text-overlay h2 {
        font-size: 10vw; /* Larger for better mobile readability */
    }
    
    .hero-text-overlay p {
        font-size: 5vw;
    }

    /* Content Sections */
    .content-section {
        padding: 3rem 1.5rem 4rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .body-text {
        font-size: 1rem;
    }
    
    /* Over Page Layout */
    .over-img {
        opacity: 1; /* Better visibility on mobile */
    }

    .over-text-overlay {
        position: static;
        width: 100%;
        padding: 2rem 1.5rem;
        background-color: var(--bg-white);
        transform: none;
    }
    
    /* Contact Page Layout */
    .contact-card {
        position: static; /* Stack on mobile */
        transform: none;
        padding: 2rem 1.5rem;
        width: 100%;
        background-color: var(--bg-white);
    }
    
    .contact-page .contact-card {
        background-color: transparent;
        padding-top: 2rem;
    }

    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-link {
        font-size: 1.2rem;
    }

    /* Werk Page Layout */
    .werk-card {
        position: static; /* Stack on mobile */
        transform: none;
        padding: 2rem 1.5rem;
        width: 100%;
        background-color: var(--bg-white);
    }

    .werk-link {
        font-size: 1.5rem;
    }
}
