* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: "Inter", sans-serif;
    background: #faf9f5;
    color: #222;

}

nav {
    position: fixed;

    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: min(1200px, 92%);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 40px;

    background: rgba(255, 255, 255, .85);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: all .3s ease;

    z-index: 1000;
}
nav.scrolled {

    padding: 12px 35px;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);

}

.logo {
    font-size: 28px;
    font-weight: 700;
    font-family: Poppins;
    color: #0A4D3C !important;
    line-height: 1;
}

.logo span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.9;
    color: #555 !important;
}

nav ul {

    display: flex;

    gap: 40px;

    list-style: none;

}

nav a {
    text-decoration: none;
    color: #222 !important;
    font-weight: 500;
}

.navBtn {

    background: #D9A441;

    padding: 14px 26px;

    border-radius: 50px;

    transition: .3s;
    

}

.navBtn:hover {

    transform: translateY(-3px);

}

.hero {

    height: 100vh;

    background-image: url(images/hero.jpg);

    background-size: cover;

    background-position: center;

    position: relative;

    display: flex;

    align-items: center;

}

.overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .55);

}

.heroContent {

    position: relative;

    z-index: 2;

    width: 700px;

    margin-left: 8%;

    color: white;

}

.location {

    display: inline-block;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(8px);

    padding: 10px 18px;

    border-radius: 40px;

    margin-bottom: 25px;

}

.hero h1 {

    font-family: Poppins;

    font-size: 68px;

    line-height: 1.05;

    margin-bottom: 25px;

}

.subtitle {

    font-size: 20px;

    line-height: 1.8;

    max-width: 600px;

    margin-bottom: 45px;

    opacity: .95;

}

.buttons {

    display: flex;

    gap: 20px;

}

.primary {

    background: #0A4D3C;

    padding: 18px 36px;

    border-radius: 50px;

    text-decoration: none;

    color: white;

    font-weight: 600;

    transition: .3s;

}

.secondary {

    border: 2px solid white;

    padding: 18px 36px;

    border-radius: 50px;

    text-decoration: none;

    color: white;

    font-weight: 600;

    transition: .3s;

}

.primary:hover {

    transform: translateY(-5px);

}

.secondary:hover {

    background: white;

    color: #222;

}

@media(max-width:900px) {

    nav ul {

        display: none;

    }

    .hero h1 {

        font-size: 45px;

    }

    .subtitle {

        font-size: 17px;

    }

    .heroContent {

        width: 90%;

    }

    .buttons {

        flex-direction: column;

    }

}


.overview {
    padding: 100px 8%;
    background: #faf9f5;
}

.overview h2 {
    font-family: Poppins;
    font-size: 40px;
    text-align: center;
    color: #0A4D3C;
    margin-bottom: 10px;
}

.subtext {
    text-align: center;
    margin-bottom: 60px;
    color: #555;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Poppins;
    color: #0A4D3C;
}

.card p {
    color: #666;
    line-height: 1.6;
}

.hero {
    margin-top: 110px;
}

.primary,
.secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.primary:hover,
.secondary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 18px 40px rgba(10, 77, 60, 0.25);
}

.secondary:hover {
    transform: translateY(-5px);
}

.visit {
    padding: 100px 8%;
    background: #faf9f5;
}

.visitBox {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.visitBox h2 {
    font-family: Poppins;
    font-size: 38px;
    color: #0A4D3C;
    margin-bottom: 15px;
}

.visitBox p {
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.visitGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.visitGrid h3 {
    color: #0A4D3C;
    margin-bottom: 10px;
    font-family: Poppins;
}


.visitGrid p {
    margin: 0;
}

.contact {

    padding: 120px 8%;

    background: white;

    scroll-margin-top: 120px;

}

.contactContainer {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}

.contact h2 {

    font-family: Poppins;

    font-size: 42px;

    color: #0A4D3C;

    margin-bottom: 20px;

}

.contact p {

    color: #555;

    line-height: 1.8;

}

.info {

    margin: 30px 0;

}

.info h3 {

    margin-bottom: 8px;

    color: #0A4D3C;

}

.info a {

    color: #0A4D3C;

    text-decoration: none;

}

.map iframe {

    width: 100%;

    height: 450px;

    border: none;

    border-radius: 24px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

@media(max-width:900px) {

    .contactContainer {

        grid-template-columns: 1fr;

    }

    .map iframe {

        height: 350px;

    }

}

footer {

    background: #0A4D3C;

    color: white;

    padding: 60px 8%;

    text-align: center;

}

.footerLogo {

    font-family: Poppins;

    font-size: 32px;

    font-weight: 700;

}

.footerLogo span {

    display: block;

    font-size: 14px;

    letter-spacing: 2px;

    opacity: .8;

}

.footerContent p {

    margin: 20px auto;

    max-width: 600px;

    line-height: 1.8;

    color: rgba(255, 255, 255, .85);

}

.footerLinks {

    display: flex;

    justify-content: center;

    gap: 35px;

    margin: 30px 0;

}

.footerLinks a {

    color: white;

    text-decoration: none;

    transition: .3s;

}

.footerLinks a:hover {

    color: #D9A441;

}

.copyright {

    margin-top: 40px;

    font-size: 14px;

    opacity: .7;

}

nav a.active {
    color: #D9A441 !important;
    font-weight: 600;
}

nav a.active::after {
    width: 100%;
}

nav {
    transition: all 0.3s ease;
}

nav.scrolled a {
    color: #222 !important;
}

nav.scrolled a.active {
    color: #D9A441 !important;
}


.visitBtntext {
    color: #222 !important;
}

.specials {
    padding: 100px 8%;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title p {
    color: #0A4D3C;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 42px;
    font-family: Poppins;
    margin-top: 10px;
}

#specialGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.specialCard {
    background: #faf9f5;
    border-radius: 22px;
    padding: 35px;
    transition: .3s;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.specialCard:hover {
    transform: translateY(-8px);
}

.badge {
    display: inline-block;
    background: #0A4D3C;
    color: white;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 20px;
}

.price {
    margin-top: 20px;
    font-size: 28px;
    color: #D9A441;
    font-weight: 700;
}
