/* --- Reset & Variables --- */
:root {
    --bg-white: #ffffff;
    --bg-cream: #FDFBF8; /* Off-white for middle section */
    --text-dark: #1A1A1A;
    --text-grey: #666666;
    --btn-dark: #1E1E1E;
    --btn-accent: #E0C097; /* Beige/Gold tone */
    --btn-gold: #D4A373;
    --border-color: #E5E5E5;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
}

body > div,section{
    max-width: 100%;
}
/* Global Container */
.container {
 
    margin: 0;
    padding: 0 4vw;
}

/* Typography Helpers */
h1, h2, h3,h4 {
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-weight: 600;
}

.eyebrow {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-grey);
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Buttons */
.btn {
    text-decoration: none;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accent {
    background-color: var(--btn-accent);
    color: #fff;
    font-weight: 600;
}

.btn-dark {
    background-color: var(--btn-dark);
    color: #fff;
}

.btn-gold {
    background-color: var(--btn-gold);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #CCC;
    color: var(--text-dark);
    font-size: 0.75rem;
    padding: 8px 20px;
}

.link-text {
    text-decoration: none;
    color: var(--btn-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

/* --- Header --- */
.site-header {
    padding: 25px 4vw;
    
    background: transparent;
   
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

/* --- Hero Section --- */
.hero-section {
    padding:100px 0;
    background-size: cover;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h1 {
    font-size: calc(1.7rem + 1.8vw);
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: none;
    justify-content: flex-end;
}

/* The beige background blob behind hero image */
.hero-bg-shape {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60%;
    height: 90%;
    background-color: #F5EFEB; /* Light beige */
    border-top-left-radius: 100px;
    border-bottom-left-radius: 20px;
    z-index: -1;
}

.hero-image-wrapper img {
    width: 90%;
    height: auto;
    border-radius: 20px; /* Rounded corners */
    border-top-left-radius: 150px; /* Distinct arch shape from image */
    border-top-right-radius: 150px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- Features Section --- */
.features-section {
    background-color: var(--bg-cream);
    padding: 100px 4vw;
}

.features-flex {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    gap: 60px;
}

.feature-image-col {
    flex: 0.9; /* Slightly smaller than half */
}


.feature-image-col img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.feature-content-col {
    flex: 1;
    display: inline-flex;
    column-gap: 10vw;
}
.scroll-horizontal{
    max-width: 100%;
    overflow-x: auto;
}
.feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex: 1;
    width: 40vw;
    min-width: 210px;
    
}

.icon-circle {
    width: 70px;
    height: 70px;
    border: 1px solid #DADADA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

h3 {
     font-size: 1.6rem;
}
.feature-card h4{
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-family: var(--font-serif);
}

.feature-card p {
    font-size: 0.8rem;
    margin-bottom: 25px;
    color: #888;
}

/* --- Showcase Section --- */
.showcase-section {
    padding: 120px 0;
    position: relative;
}

.showcase-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.showcase-content {
    flex: 0.8;
}

.showcase-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.showcase-image-wrapper {
    flex: 1.2;
    position: relative;
}

/* Beige rectangle peeking from top */
.showcase-bg-shape {
    position: absolute;
    top: -30px;
    left: 20%;
    right: 20%;
    height: 100px;
    background-color: #F9F7F4;
    border-radius: 10px;
    z-index: -1;
}

.showcase-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero-flex, .showcase-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .main-nav,.header-actions{
        display: none;
    }
    .header-flex{
        display: flex;
        flex-flow: column wrap;
        align-content: stretch;
        align-items: center;
    }
    
   
    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper, .showcase-image-wrapper {
        justify-content: center;
    }
    
    .hero-image-wrapper img {
        width: 100%;
    }
    
    
}

/* Footer */
/* --- Footer Section --- */
.site-footer {
    background-color: var(--text-dark); /* Using existing dark variable */
    color: #fff;
    padding: 80px 10vw 30px 10vw;
    margin-top: 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}
.footer-top > *{
    width: 40%;
    min-width: 40%;
}


.footer-col {
    
    
}

.brand-col {
    flex: 1.5; /* Slightly wider for description */
}

/* Brand styling matching header but light */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6); /* Lighter version of existing grey text */
    max-width: 300px;
}

/* Headings in Footer */
.footer-col h4 {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Footer Links */
.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--btn-gold);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 50px; /* Matching button rounded style */
    color: #fff;
    font-family: var(--font-sans);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--btn-gold);
}

.newsletter-form .btn {
    border: none;
    cursor: pointer;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--btn-gold);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        
    
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}