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

body {
    font-family: "Varela", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1rem;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    padding: 15px 50px;

    width: 100%;
    top: 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: black;
}

.call-btn {
    margin: 10px;
    padding: 10px 20px;
    
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.banner {
    background-color: #a3a3a3;
    height: 600px;
    display: flex;
    align-items:end;
    justify-content: center;
    color: #000000;
    text-align: center;
    position: relative;
}

.overlay {
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
    color: #000000;
    font-size: xx-large;
    font-weight: bolder;
}

h2{
    font-weight: bolder;
    font-size: 40px;
    text-align: center;
}

.about {
    display: flex;
    align-items: center;
    padding: 50px;
    color:#000000;
}

.about img {
    width: 50%;
    border-radius: 10px;
}

.about-text {
    margin: 20px;
    padding: 20px;
    text-align: center;
    font-size: large;
}

#gallery, #contact {
    padding: 30px;
    text-align: center;
}

#map{
    width:100%;
    height: 400px;
    border: 0;
}

#services{
    display: block;
    padding: 30px;
    text-align: center;
}

/* Services */
#services {
  background: #f3f4f6;
  padding: 4rem 1rem;
  text-align: center;
}

#services h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-box {
  background: #fff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.row{
    display: flex;
    justify-content: space-evenly;
}

.col{
    background-color: #A11013;
    display: block;
    padding: 20px;
    margin: 20px;
    text-align: center;
    font-size:x-large;
    color:#FFFFFF;
    border-radius: 10px;
}


.gallery-container {
    display: flex;
    gap: 10px;
    overflow: auto;
    justify-content: center;
    font-size: large;
}

.gallery-container img {
    width: 320px;
    height: 320px;
    border-radius: 10px;
}

footer {
    background:#5c5b5a;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-content {
    display:flex;
    justify-content: space-evenly;
    gap: 20px;
    text-align: left;
}

#foot-about{
    max-width: 200px;
}

.socials a {
    display: block;
    color: white;
    text-decoration: none;
    margin-top: 5px;
}

/* 🔥 Mobile Navigation 🔥 */


@media screen and (max-width: 768px) {

    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .menu-toggle div {
        width: 30px;
        height: 3px;
        background: black;
        margin: 5px;
    }

    
    header {
        padding: 15px 20px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        width: 100%;
        text-align: center;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 15px;
    }

    .about {
        display: block;
    }

    .about img {
        width: 100%;
        border-radius: 10px;
    }
    
    .about-text{
        margin: 0;
        padding: 0;
    }

    .footer-content {
        display:block;
        gap: 20px;
        text-align: center;
    }

    #foot-about{
        max-width: none;
    }

    .call-btn {
        display: none;
    }

    .gallery-container {
        display: block;
        gap: 10px;
        justify-content: center;
    }

    /*.gallery-container img {
        width: 50%;
        height: 50%;
    }*/

    .row{
        display: block;
        
    }
}