/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    padding: 40px 60px;
    background-color: #ffffff;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 60px;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #8b7355;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #6b5745;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #8b7355;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Main Content - Home Page */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 150px);
    padding: 40px;
}

.logo-container {
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 100%;
    height: auto;
    max-width: 700px;
    object-fit: contain;
    animation: logoFadeIn 1.5s ease-out;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* About Page */
.about-content {
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    padding-right: 40px;
}

.about-title {
    font-size: 42px;
    font-weight: 300;
    color: #8b7355;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.about-paragraph,
.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b6b6b;
    margin-bottom: 25px;
    font-weight: 300;
}

.about-paragraph strong,
.about-text p strong {
    font-weight: 500;
    color: #5a5a5a;
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
}

.about-logo-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

/* Projects Page */
.projects-content {
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-title {
    font-size: 42px;
    font-weight: 300;
    color: #8b7355;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 1px;
}

.empty-projects-message {
    text-align: center;
    padding: 100px 20px;
    color: #999;
}

.empty-projects-message p {
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    justify-items: center;
}

.project-card {
    text-align: center;
    max-width: 350px;
    width: 100%;
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.clickable-image {
    cursor: pointer;
}

.project-card:hover .project-image {
    transform: scale(1.02);
}

.project-name {
    font-size: 18px;
    font-weight: 400;
    color: #6b5745;
    margin-bottom: 8px;
    font-style: italic;
    line-height: 1.4;
}

.project-location {
    font-size: 16px;
    font-weight: 300;
    color: #8b7355;
    font-style: italic;
}

/* Contact Page */
.contact-content {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contact-info {
    padding-right: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #6b6b6b;
    font-style: italic;
    font-weight: 300;
}

.contact-info a {
    color: #6b6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #8b7355;
}

.contact-heading {
    font-size: 32px;
    font-weight: 400;
    color: #6b5745;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.contact-address {
    font-size: 16px;
    line-height: 1.8;
    color: #6b6b6b;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-phone {
    font-size: 16px;
    line-height: 1.8;
    color: #6b6b6b;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-email {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
}

.contact-email a {
    color: #6b6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #8b7355;
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        padding-right: 0;
    }

    .about-logo {
        justify-content: center;
        padding-top: 20px;
    }

    .nav-menu {
        gap: 40px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .projects-content {
        padding: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-content {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 30px 20px;
    }

    .nav-menu {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 14px;
    }

    .about-content {
        padding: 40px 20px;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .about-paragraph {
        font-size: 15px;
    }

    .logo-image {
        max-width: 500px;
    }

    .about-logo-image {
        max-width: 350px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-content {
        padding: 30px 20px;
    }

    .projects-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .project-name {
        font-size: 16px;
    }

    .project-location {
        font-size: 14px;
    }

    .contact-content {
        padding: 40px 20px;
    }

    .contact-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-address,
    .contact-phone,
    .contact-email {
        font-size: 15px;
    }

    .contact-map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 13px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-paragraph {
        font-size: 14px;
    }

    .projects-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .project-name {
        font-size: 15px;
    }

    .project-location {
        font-size: 13px;
    }

    .contact-heading {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .contact-address,
    .contact-phone,
    .contact-email {
        font-size: 14px;
    }

    .contact-map {
        height: 300px;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
}

.lightbox-caption {
    text-align: center;
    color: #ccc;
    padding: 20px;
    font-size: 18px;
    font-style: italic;
    max-width: 700px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 30px;
        font-size: 40px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }

    .lightbox-caption {
        font-size: 16px;
    }
}

