body {
    font-family: 'Roboto', sans-serif; /* Font for paragraphs */
    color: #333;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    font-family: 'Lato', sans-serif; /* Font for headings */
    font-weight: 700;/* Using bold weight */
    color: #ff6600;
}
footer {
    font-family: 'Merriweather', serif; /* Font for the footer */
    color: #555;
    background-color: #f4f4f4;
    padding: 10px 0;
    text-align: center;
}
header {
    background-color: #fff; /* White background color for the navigation bar */
    color: #333;
    padding: 10px 0;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    position: fixed; /* Keep the navigation bar fixed */
    width: 100%; /* Ensure it covers the full width */
    top: 0; /* Position at the top */
    z-index: 1000; /* Ensure it stays above the content */
}
header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    height: 50px;
    width: auto;
}
header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
header nav ul li {
    display: inline;
}
header nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    transition: background 0.3s;
}
header nav ul li a:hover {
    background: #ff6600;
    color: #fff;
}
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
section {
    padding: 20px;
    margin: 80px auto 20px auto; /* Adjust top margin to avoid content being hidden behind the header */
    max-width: auto;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.project, .block {
    background: #f4f4f4;
    padding: 10px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}
.project img, .block img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensure images fit the block */
    height: 200px; /* Fixed height for images */
}
.block.analysis {
    background-color: #e0f7fa; /* Fresh color for analysis */
}
.block.planning {
    background-color: #e1bee7; /* Fresh color for planning */
}
.block.design {
    background-color: #ffe0b2; /* Fresh color for design */
}
.back-to-top {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #ff6600;
    text-decoration: none;
    font-size: 14px;
}
.back-to-top:hover {
    text-decoration: underline;
}

.slideshow-container {
    position: relative;
    width: 100%; /* Full width of the page */
    height: 45vh; /* 45% of the viewport height */
    margin-top: 60px; /* Ensure it is not covered by the header */
    overflow: hidden; /* Hide overflow */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.mySlides {
    display: none;
    width: 100%;
    height: 100%; /* Full height of the container */
}
.mySlides img {
    width: 100%;
    height: 100%; /* Full height of the container */
    object-fit: cover; /* Ensure images fit the container */
}
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.dots-container {
    text-align: center;
    padding: 15px;
    background: #ddd;
}
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #717171;
}
.quote-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f4f4f4;
}
.quote-section .quote-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensure content wraps */
}
.quote-section img {
    width: 200px; /* 4 times bigger */
    height: auto; /* Maintain aspect ratio */
}


/* Media Queries for responsive design */
@media (max-width: 768px) {
    header nav ul {
        display: none; /* Hide menu on mobile devices */
    }
    .menu-icon {
        display: block; /* Show the menu icon */
    }
    .menu.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background-color: #eee3e300;        
    }
    .showcase {
        flex-direction: column; /* Align in column on small screens */
    }
    .logo img {
        height: auto;
        width: 150px; /* Adjust logo size on small screens */
    }
    .quote-section {
        flex-direction: column;
        text-align: center;
    }
    .quote-section .quote-container {
        flex-direction: column;
    }
    .quote-section img {
        width: 100px; /* Adjust size for small screens */
        height: auto; /* Maintain aspect ratio */
    }
    .gallery {
        width: 95%;
        height: 95%;
    }
    .main-image img {
        width: 100%;
    }
    .thumbnail {
        width: 80px;
    }
}

.social-icons {
    display: flex;
    justify-content: left;
    gap: 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0 auto; /* Center the container */
    max-width: 1000px; /* Optional max-width for the container */
}
.contact-data, form {
    background: #f4f4f400;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.contact-data {
    text-align: left;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
form label {
    font-size: 16px;
    color: #333;
}
form input, form select, form textarea, form button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
form input:focus, form textarea:focus, form select:focus {
    border-color: #ff6600;
    outline: none;
}
form button {
    background-color: #ff6600;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
form button:hover {
    background-color: #e65500;
}
.social-icons a {
    color: #333;
    font-size: 40px;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #ff6600;
}

#openGallery {
    display: inline-block;
    margin: 20px;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
#openGallery:hover {
    background-color: #e65500;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
}
.close-btn:hover {
    color: #ff6600;
}

.gallery {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
}

.gallery-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-image img {
    width: auto;
    height: 425px;
    border-radius: 5px;
}
.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.thumbnail {
    width: 100px;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.thumbnail:hover {
    opacity: 1;
}
.thumbnail.active {
    opacity: 1;
    border: 2px solid #ff6600;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}
.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.form-group {
    display: flex;
    margin-bottom: 10px;
    justify-content: flex-start; /* Alinea los elementos a la izquierda */
}

.form-group label {
    margin-right: 10px;
    width: 80%;
}

.form-group input {
    margin-right: 10px;
    width: 20%;
}


