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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.footer {
    margin-top: auto;
}

/* NAVBAR  
__________________________________________________________*/

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 30px;
    background-color: #322E2D;
    position: relative;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar .logo {
    font-size: 1.8rem;
    color: #F1A22B;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-right: auto;
    height: 70px;
}

.navbar .logo img {
    height: 60px;
    width: auto;
    display: block;
}

.navbar .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    height: 70px;
    gap: 2rem; 
}

.navbar .nav-links li {
    margin-left: 2rem;
}

.navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar .nav-links a:hover {
    color: #F1A22B;
}

/*__________________________________________________________*/

.call-us.desktop-btn {
    background-color: #F1A22B;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.call-us.desktop-btn:hover {
    background-color: #cd800d;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger div {
    background-color: white; 
    height: 4px;
    width: 100%;
    border-radius: 2px;
}
.mobile-btn {
    display: none;
}

.close-menu {
    display: none;
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white; 
    cursor: pointer;
    z-index: 1001; 
}
.hamburger:hover div {
    background-color: #F1A22B;
}
.close-menu:hover {
    color: #F1A22B; 
}
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle .arrow {
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #322E2D;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    flex-direction: column;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 1rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
    color: #F1A22B;
}
.navbar .dropdown-toggle:hover {
    color: #F1A22B;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: absolute; 
        top: 100%;         
        box-shadow: none;
        min-width: 100%;
        margin-top: 0;     
    }

    .dropdown:hover { 
        color: #F1A22B;
    }
}



@media (max-width: 768px) {
    .navbar .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
    
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    
        background-color: rgba(50, 46, 45, 0.95);
    
        gap: 2rem;
        z-index: 1000;
    
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .navbar .nav-links li {
        margin: 0;           
        padding: 0;     
        width: auto;      
    }

    .navbar .nav-links li .call-us {
        margin: 0 auto;     
    }
    
    .navbar .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    

    .hamburger {
        display: flex;
    }


    .call-us.desktop-btn {
        display: none; 
    }
    .mobile-btn {
        display: block;
    }

    .nav-links li .call-us {
        background-color: #F1A22B;
        color: white;
        font-size: 1rem;
        border: none;
        border-radius: 4px;
        padding: 0.6rem 1.2rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .nav-links li .call-us:hover {
        background-color: #cd800d;
    }
    body.no-scroll {
        overflow: hidden;
    }

    .close-menu.active {
        display: block;
    }
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #322E2D;
    z-index: 1000;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../hero.jpg') center/cover no-repeat;
    color: #F1A22B;
    text-align: center;
    padding: 4rem 0;                
    position: relative;
    width: 100%;
    min-height: 75vh;                
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 3rem;
}

.about {
    padding: 4rem 0;
    background-color: #322E2D;
}

.about .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-width: 500px;
}

.about-content {
    flex: 1;
    color: white;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #F1A22B;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #cd800d;
}


@media (max-width: 768px) {
    .about .container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
    }
}



.projects {
    padding: 4rem 0 1rem 0;
    background-color: #e9e9e9; 
  }
  
  .projects .container {
    text-align: center;
    padding: 0 20px;
  }
  
  .projects h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #322E2D;
  }
  
  .projects p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
  }
  
  .project-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  
  .project-item img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .project-item h3 {
    padding: 1rem;
    color: #322E2D;
    font-size: 1.2rem;
  }
  
  .projects .contact-button {
    margin-top: 3rem;
  }

.contact-icons {
    background-color:#e9e9e9 ;
    padding: 4rem 0;
    text-align: center;
}

.contact-icons .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-icons h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #322E2D;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.icon {
    display: inline-block;
    font-size: 2.5rem; 
    color: #F1A22B;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon:hover {
    transform: scale(1.1); 
    color: #cd800d; 
}


.icon i {
    transition: color 0.3s ease;
}


.project-links {
    background-color: #322E2D;
    padding: 4rem 0;
    text-align: center;
}

.project-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.project-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.project-btn {
    background-color: #F1A22B;
    color: #322E2D;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.project-btn:hover {
    background-color:  #cd800d;
    color: #322E2D;
}


.contact {
    padding: 4rem 0;
    background-color:#322E2D;
}

.contact .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffffbb;
}


.contact-info {
    margin-bottom: 2rem;
    text-align: left;
    padding: 0 20px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-info p {
    font-size: 1rem;
    color: #fff;
}

.contact-info a {
    color: #F1A22B;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}


.map {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    margin-bottom: 2rem;
    padding-left: 20px;
    padding-right: 20px;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map {
        margin: 0 auto;
        width: 80%; 
        padding-left: 10px;
        padding-right: 10px;
    
    }

    .map iframe {
        height: 300px; 
    }
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form label {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 0.5rem;
}

form input,
form textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 1rem;
    font-size: 1.2rem;
    background-color: #F1A22B;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #cd800d;
}

.footer {
    padding: 2rem 0;
    background-color: #322E2D;
    color: white;
    text-align: center;
}

.footer p {
    font-size: 1rem;
}
