html, body {
    font-family: Garamond, serif;
    margin: 0;
    padding: 0;
    background-color: white;

    
    width: 100%;
    overflow-x: hidden;
}

/* ===== Header / Navbar ===== */
header {
    background-color: rgba(255, 255, 255, 0.983);
    padding: 10px 0px;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

/* =========================================
   LEFT
========================================= */
.nav-left img {
    height: 100px;
    width: auto;
    cursor: pointer;
    margin-left: 20px;
    max-width: 100%;
    padding-left: 20px;
}


/* =========================================
   CENTER
========================================= */
.nav-center {
    position: absolute;
    left: 14%;
    cursor: pointer;
    padding-left: 10px;
}

.nav-center a,
.nav-center a:visited,
.nav-center a:active {
    text-decoration: none;
    color: black;
}

.nav-center h1 {
    margin: 0;
    font-size: 2em;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out;
    white-space: nowrap;
}

.nav-center h1:hover {
    color: #ffba26de;
}


/* =========================================
   RIGHT
========================================= */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    padding-right: 30px;
}

nav ul li a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.288);
    font-size: 1.5em;
    padding: 8px 20px;
    transition: color 0.3s ease-in-out;
    white-space: nowrap;
}

nav ul li a:hover {
    color: rgb(0, 0, 0);
}

nav ul li a.active {
    color: rgb(0, 0, 0);
}


/* =========================================
   TABLET
========================================= */
@media (max-width: 1024px) {
    header {
        padding: 10px 25px;
    }

    .nav-left img {
        height: 80px;
        margin-left: 10px;
    }

    .nav-center {
        left: 16%;
    }

    .nav-center h1 {
        font-size: 1.6em;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 1.2em;
        padding: 8px 12px;
    }
}


/* =========================================
   MOBILE
========================================= */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .nav-left {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .nav-left img {
        height: 75px;
        margin-left: 0;
    }

    .nav-center {
        position: static;
        text-align: center;
        width: 100%;
    }

    .nav-center h1 {
        font-size: 1.5em;
        white-space: normal;
    }

    .nav-right {
        width: 100%;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    nav ul li a {
        font-size: 1.1em;
        padding: 6px 10px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */
@media (max-width: 480px) {
    .nav-left img {
        height: 65px;
    }

    .nav-center h1 {
        font-size: 1.2em;
        letter-spacing: 0.5px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    nav ul li a {
        font-size: 1em;
        padding: 4px 0;
    }
}

/* ===== Hero Section ===== */
.hero {
    background-color: #dddddde8;
    text-align: center;
    width: 100%;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.199);
}

.hero-image {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-caption {
    font-family: helvetica;
    font-size: 2.4em;
    font-weight: bold;
    color: white;
    position: absolute;
    -webkit-text-stroke: 1px rgb(0, 0, 0);
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
}

.hero-caption p {
    font-family: georgia;
    font-size: 1em;
}





/* ===== Modern CTA Button ===== */

.cta-button {
    display: inline;
    padding: 14px 32px;
    background-color: rgba(0, 0, 0, 0.798);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
    border: 2px solid black;
    transition: all 0.3s ease;
    cursor: pointer;

    position: absolute;
    bottom: 28%;
    left: 50%;
    transform: translateX(-50%);
}

/* Hover Effect */
.cta-button:hover {
    background-color: #ffba26;
    color: black;
    border-color: #ffba26;
}



/* ===== Footer ===== */


footer {
    background-color: rgba(0, 0, 0, 0.832);
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}