:root {
    --primary-orange: #e58b68;
    --bg-cream: #f9f5f0;
    --text-dark: #333;
    --footer-dark: #333333;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Covertext */
.covertext h1 {
    font-family: "Montserrat", serif;
    font-size: 2.0em;
    color: white;
    margin-top: 0px;
    margin-bottom: 0px;
    letter-spacing: 0.3em;
    text-align: left;
}

.storycovertext h1 {
    font-family: "Montserrat", serif;
    font-size: 4.0em;
    color: black;
    margin-top: 0px;
    margin-bottom: 0px;
    letter-spacing: 0.1em;
    text-align: center;
}

.menucovertext h1 {
    font-family: "Montserrat", serif;
    font-size: 4.0em;
    color: white;
    margin-top: 0px;
    margin-bottom: 0px;
    letter-spacing: 0.1em;
    text-align: center;
}
  
/* Hero */
.hero {
    height: 400px;
    background: url('Images/hero-bg.jpg') center 30%/cover no-repeat;
    background-size: 100%;           /* Try 100%, 110%, or 120% to find your 'zoom' */
    display: flex;
    justify-content: center;
    align-items: center;
}

.storyHead {
    height: 300px;
    position: relative; /* Essential for positioning the blur layer */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;   /* Keeps the blurred edges from 'bleeding' out */
}

.storyHead::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('Images/storyhead.jpg') center 70%/cover no-repeat;
    background-size: 100%; 
    filter: blur(2px);  /* Adjust the '8px' to increase/decrease blur */
    transform: scale(1.1); /* Prevents white edges caused by blurring */
    z-index: 1;
}

/* Ensure your text stays on top of the blur */
.storyHead > * {
    position: relative;
    z-index: 2;
}

.menuHead {
    height: 300px;
    position: relative; /* Essential for positioning the blur layer */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;   /* Keeps the blurred edges from 'bleeding' out */
}

.menuHead::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('Images/menubackground.jpg') center 40%/cover no-repeat;
    background-size: 100%; 
    filter: blur(1px);  /* Adjust the '8px' to increase/decrease blur */
    transform: scale(1.1); /* Prevents white edges caused by blurring */
    z-index: 1;
}

/* Ensure your text stays on top of the blur */
.menuHead > * {
    position: relative;
    z-index: 2;
}

.partnerHead {
    height: 300px;
    position: relative; /* Essential for positioning the blur layer */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;   /* Keeps the blurred edges from 'bleeding' out */
}

.partnerHead::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('Images/partner.jpg') center 80%/cover no-repeat;
    background-size: 100%; 
    filter: blur(3px);  /* Adjust the '8px' to increase/decrease blur */
    transform: scale(1.1); /* Prevents white edges caused by blurring */
    z-index: 1;
}

/* Ensure your text stays on top of the blur */
.partnerHead > * {
    position: relative;
    z-index: 2;
}


/* Layout Containers */
.content-section {
    padding: 60px 10%;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 30px; /* This adds a nice gap between the title and the cards */
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.image-box img {
    width: 60%;
    border-radius: 20px;
    height: auto;
}

/* Features Banner */
.features-banner {
    background-color: #B6D0E2;
    padding: 80px 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 30px;
    height: 250px;
}

/* Events Grid */
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-card {
    background: white;
    border: 1px solid black;
}

.event-img {
    height: 200px;
    background: #eee;
}

.event-details {
    padding: 15px;
}

/* Buttons */
.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--text-dark);
    text-decoration: none;
    color: var(--text-dark);
    margin-top: 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Footer */
.main-footer {
    background: var(--footer-dark);
    color: white;
    padding: 60px 10%;
}

.footer-top {
    display: flex;
    gap: 100px;
}

.logo img {
    width: 150px;       /* Change this number to make it bigger or smaller */
    height: auto;       /* This ensures the logo doesn't get squished */
    display: block;
}

/* --- Navigation Bar Container --- */
.navbar {
    background-color: #1942B8;
    padding: 10px 0;            /* Adds space above and below the links */
    border-bottom: 1px solid #1942B8;
    position: sticky;           /* Keeps the menu at the top of the screen */
    top: 0;
    z-index: 1000;              /* Ensures it stays on top of other images */
    width: 100%;
}

/* --- Inner Wrapper to align content --- */
.nav-container {
    max-width: 2000px;          /* Matches the width of your website content */
    margin: 0 auto;             /* Centers the container itself */
    display: flex;
    justify-content: flex-end;  /* Pushes the links to the far right */
    padding: 0 40px;            /* Keeps links from touching the edge of the screen */
}

/* Brand styling (Logo + Text) */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and text */
}

.nav-logo-img {
    height: 40px; /* Adjust this to make your logo smaller or larger */
    width: auto;
}

.brand-name {
    color: white; /* Matches your current blue bar theme */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* --- The List of Links --- */
.nav-links {
    list-style: none;           /* Removes bullet points */
    display: flex;
    gap: 30px;                  /* Space between each menu item */
    margin: 0;
    padding: 0;
}

/* --- Individual Link Styling --- */
.nav-links a {
    text-decoration: none;      /* Removes the default blue underline */
    color: white;             /* The gray color you wanted */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;  /* Optional: makes them all caps for a cleaner look */
    letter-spacing: 0.5px;
    transition: all 0.3s ease;  /* Makes the color change smooth */
}

/* --- Hover Effect --- */
.nav-links a:hover {
    color: #666666;             /* The blue color when you mouse over */
}

/* --- Mobile View --- */
@media (max-width: 768px) {
    .nav-container {
        justify-content: center; /* Centers links on small phone screens */
        padding: 0 10px;
    }
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;        /* Allows links to wrap if there are too many */
        justify-content: center;
    }
    .nav-links a {
        font-size: 0.8rem;
    }
}

/* --- Reduced the thickness by changing padding from 20px to 10px --- */
.navbar {
    background-color: #1a47b8; /* Matching your blue background */
    padding: 10px 0;           
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* --- Expanded max-width to 95% to push everything further to the edges --- */
.nav-container {
    max-width: 100%;            
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

/* --- Ensures the logo and name stay together on the left --- */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 35px; /* Slightly smaller to fit the thinner bar */
    width: auto;
}

.brand-name {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap; /* Prevents the name from breaking into two lines */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px; /* Slightly tighter gap to ensure everything fits */
    margin: 0;
    padding: 0;
}

.card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the img act like a background-cover */
    display: block;
}

/* 1. Make the link fill the whole card and remove underlines */
.card-link {
    text-decoration: none;
    color: inherit; /* Keeps your text dark instead of turning blue */
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 2. The Hover Effect */
.event-card:hover .card-link {
    transform: scale(1.03); /* Enlarges the card slightly */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Adds a soft shadow for depth */
    z-index: 10; /* Ensures the card stays on top of neighbors while enlarging */
    position: relative;
}

/* 3. Optional: Smooth out the border behavior */
.event-card {
    background: white;
    border: 1px solid black;
    overflow: hidden; /* Keeps the image corners tidy if you add border-radius */
    transition: border-color 0.3s ease;
}

.event-card:hover {
    border-color: var(--primary-orange); /* Changes border color on hover */
}

/* This puts the logo and "Email" in a row */
.email-header {
    display: flex;
    align-items: center; /* Centers them vertically against each other */
    gap: 10px;           /* Adds space between the logo and the word */
    margin-bottom: 25px;  /* Adds a little space above the email address */
}

/* Adjust the logo size so it matches the text height */
.mail-logo {
    width: 35px;         
    height: auto;
}

.instagram-logo {
    width: 30px;         
    height: auto;
}

/* Remove default paragraph margins that might push the text down */
.email-header p {
    margin: 0;
}

.email-header p strong {
    font-size: 20px; /* Increase this number to make it even larger */
    color: white;    /* Ensures it stays white like your header text */
    margin-left: 5px;
}

.form-section {
    display: flex;
    align-items: flex-start; /* This pulls both the text and the form to the top */
    padding-top: 50px;      /* Use this to control exactly how much space is at the top */
    gap: 40px;               /* Keeps a nice gap between the text and the form */
}