/* --- Global Styles --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
    background-color: #F5E9DA; /* Fallback peach color */
    color: #4A3F35;
    overflow-x: hidden;
}

/* --- Full Background Hero with Blur --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background layer using your uploaded image */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('hero-image.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px); 
    transform: scale(1.1); 
    z-index: -1;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(245, 233, 218, 0.4); 
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Glass Header --- */
.glass-header {
    position: fixed;
    top: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover .logo {
    opacity: 0.8;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A3F35;
    transition: opacity 0.3s ease;
}

/* --- Desktop Navigation (Updated with Borders) --- */
.nav-links {
    display: flex; 
    align-items: center;
}

.nav-links a {
    color: #4A3F35;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    
    /* New Border Styles */
    padding: 0 2rem; /* Adds space around the text */
    border-right: 1px solid rgba(74, 63, 53, 0.2); /* Mild vertical border */
}

/* Remove padding from the first item to align flush */
.nav-links a:first-child {
    padding-left: 0; 
}

/* Remove border from the last item */
.nav-links a:last-child {
    border-right: none;
    padding-right: 0;
}

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

.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #4A3F35;
    margin: 5px 0;
    display: block;
    transition: all 0.3s ease;
}

/* --- Typography --- */
.badge {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #4A3F35;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2D2620;
}

.hero p {
    font-size: 1.1rem;
    color: #4A3F35;
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Mobile Navigation Adjustments (Updated) --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none; /* Hide standard flex on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(245, 233, 218, 0.95);
        padding: 0; /* Reset padding for full-width borders */
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex; /* Script toggles this to show menu */
    }

    .nav-links a {
        /* Mobile Border Logic */
        border-right: none; /* Remove desktop vertical border */
        border-bottom: 1px solid rgba(74, 63, 53, 0.1); /* Horizontal line for mobile */
        
        width: 100%;
        padding: 1.5rem 0; /* Increase tap area */
        margin: 0; /* Reset margins */
        font-size: 1.3rem;
    }

    /* Remove border from the very last item in the dropdown */
    .nav-links a:last-child {
        border-bottom: none;
    }
}

/* --- Footer --- */
.main-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: #4A3F35;
    z-index: 10;
}

.footer-line {
    height: 1px;
    background: rgba(74, 63, 53, 0.2);
    margin-bottom: 1rem;
}