* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
    "Inter",
    "Segoe UI",
    Arial,
    sans-serif;

    background: #eef8f7;

    color: #173535;

    line-height: 1.6;

}



/* =====================
   NAVBAR
===================== */


.navbar {

    width: 100%;

    padding: 18px 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: rgba(255,255,255,0.9);

    backdrop-filter: blur(10px);

    position: sticky;

    top: 0;

    z-index: 100;

    box-shadow:
    0 4px 20px rgba(0,0,0,0.08);

}



.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: #147d78;

    font-size: 1.4rem;

    font-weight: 800;

}



.brand img {

    width: 45px;

    height: 45px;

    object-fit: contain;

}



.nav-links {

    display: flex;

    gap: 25px;

}



.nav-links a {

    text-decoration: none;

    color: #173535;

    font-weight: 600;

    transition: .25s;

}



.nav-links a:hover {

    color: #229c72;

}





/* =====================
   HERO
===================== */


.hero {

    min-height: 90vh;

    background-image:

    url("images/elbow%20lever%20park.jpg");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

}



.hero-overlay {

    position: absolute;

    inset: 0;

    background:

    linear-gradient(

    rgba(230,248,247,.55),

    rgba(230,248,247,.75)

    );

}



.hero-content {

    position: relative;

    max-width: 750px;

    padding: 30px;

}



.hero-logo {

    width: 110px;

    margin-bottom: 20px;

}



.hero h1 {

    font-size: clamp(2.5rem,5vw,4rem);

    color:#116b68;

    margin-bottom:20px;

}



.hero p {

    font-size:1.25rem;

    margin-bottom:30px;

}





/* =====================
   BUTTONS
===================== */


.button {

    display:inline-block;

    padding:14px 30px;

    border-radius:40px;

    background:#249b72;

    color:white;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}



.button:hover {

    transform:translateY(-3px);

    background:#18785a;

}



.button.secondary {

    margin-top:30px;

    background:#147d78;

}




/* =====================
   SECTIONS
===================== */


.section {

    max-width:1100px;

    margin:auto;

    padding:80px 25px;

    text-align:center;

}



.section h2 {

    font-size:2.3rem;

    color:#116b68;

    margin-bottom:30px;

}



.section p {

    max-width:750px;

    margin:0 auto 25px;

    font-size:1.1rem;

}




.text-link {

    color:#229c72;

    font-weight:bold;

    text-decoration:none;

}





/* =====================
   CARDS
===================== */


.cards {

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-top:40px;

}



.card {

    background:white;

    padding:35px 25px;

    border-radius:22px;

    box-shadow:

    0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}



.card:hover {

    transform:translateY(-8px);

}



.card h3 {

    color:#147d78;

    margin-bottom:15px;

    font-size:1.4rem;

}





/* =====================
   GALLERY
===================== */


.gallery-grid {

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}



.gallery-placeholder {

    background:white;

    border-radius:20px;

    padding:70px 20px;

    box-shadow:

    0 8px 25px rgba(0,0,0,.08);

    color:#567;

}





/* =====================
   CONTACT
===================== */


.social-links {

    display:flex;

    justify-content:center;

    gap:25px;

}



.social-links a {

    color:#147d78;

    font-weight:bold;

    text-decoration:none;

    font-size:1.1rem;

}





/* =====================
   FOOTER
===================== */


footer {

    background:white;

    padding:30px;

    text-align:center;

}



footer img {

    width:50px;

    margin-bottom:10px;

}





/* =====================
   MOBILE
===================== */


@media(max-width:850px){


.navbar {

    flex-direction:column;

    gap:15px;

}


.nav-links {

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}



.hero {

    min-height:80vh;

}


}

/* Prevent images from overflowing */
img {
    max-width: 100%;
    height: auto;
}


/* Control logo size in hero sections */
.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}


/* Navbar logo */
.brand img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}


/* Footer logo */
footer img {
    width: 50px;
    height: auto;
}
