/* ==========================
   GENERAL
========================== */

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


body {

    font-family: Arial, Helvetica, sans-serif;

    line-height: 1.6;

    color: #333;

    background-color: #fafafa;

}


a {

    text-decoration: none;

}


section {

    padding: 70px 10%;

}


h1,
h2,
h3 {

    margin-bottom: 20px;

}


p {

    margin-bottom: 20px;

}





/* ==========================
   NAVIGATION
========================== */


.navbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    background-color: #12344D;

    padding: 20px 10%;

    position: sticky;

    top: 0;

    z-index: 1000;

    box-shadow: 0 2px 8px rgba(0,0,0,0.15);

}


.logo a {

    color: white;

    font-size: 28px;

    font-weight: bold;

}



.nav-links {

    display: flex;

    list-style: none;

    gap: 30px;

}



.nav-links a {

    color: white;

    font-size: 18px;

    transition: color 0.3s;

}



.nav-links a:hover {

    color: #D9B44A;

}



/* Hamburger button */

.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 34px;

    cursor: pointer;

}





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


.hero {

    height: 80vh;

    background-image:

        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.45)
        ),

        url("../images/hero.jpg");


    background-size: cover;

    background-position: center;


    display: flex;

    justify-content: center;

    align-items: center;


    text-align: center;

    color: white;

}



.hero-content {

    max-width: 850px;

    padding: 20px;

}



.hero h1 {

    font-size: 3.5rem;

    color: white;

}



.hero p {

    font-size: 1.4rem;

    color: white;

    margin-bottom: 35px;

}






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


.button {

    display: inline-block;

    background-color: #D9B44A;

    color: #333;

    padding: 15px 35px;

    border-radius: 40px;

    font-weight: bold;

    font-size: 18px;

    transition: all .3s ease;

}



.button:hover {

    background-color: white;

    transform: translateY(-2px);

}



section .button {

    display: block;

    width: fit-content;

    margin: 20px auto;

}







/* ==========================
   CONTENT
========================== */


section h2 {

    text-align: center;

    color: #12344D;

    font-size: 2rem;

}



section p {

    max-width: 900px;

    margin: 0 auto 20px auto;

    text-align: center;

}





/* ==========================
   SERVICES
========================== */


article {

    background: white;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);

    margin: 25px auto;

    max-width: 900px;

}



article h3 {

    color: #12344D;

}






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


.gallery-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}



.gallery-item img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    border-radius: 10px;

}







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


footer {

    background: #12344D;

    color: white;

    text-align: center;

    padding: 30px;

}


footer p {

    margin: 5px 0;

}







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


@media (max-width: 768px) {



    /* Navigation */


    .navbar {

        padding: 15px 20px;

    }



    .logo a {

        font-size: 24px;

    }



    .menu-toggle {

        display: block;

    }



    .nav-links {

        display: none;

        flex-direction: column;

        position: absolute;

        top: 70px;

        left: 0;

        width: 100%;

        background-color: #12344D;

        padding: 20px 0;

        text-align: center;

        gap: 15px;

    }



    .nav-links.show {

        display: flex;

    }



    .nav-links li {

        margin: 10px 0;

    }






    /* Hero */


    .hero {

        height: 70vh;

    }



    .hero h1 {

        font-size: 2.2rem;

    }



    .hero p {

        font-size: 1rem;

    }






    /* Content */


    section {

        padding: 40px 20px;

    }



    section h2 {

        font-size: 1.8rem;

    }



    article {

        padding: 20px;

    }






    /* Gallery */


    .gallery-grid {

        grid-template-columns: 1fr;

    }



}