/* Custom Lightbox Styles */
.custom-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.custom-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
}

.lightbox-counter {
    color: white;
    position: absolute;
    top: -30px;
    right: 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    transition: opacity 0.3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

.lightbox-close {
    top: -40px;
    right: 0;
    font-size: 30px;
}

.lightbox-prev {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-image {
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-image:hover {
    opacity: 0.8;
}

:root {
    --primary-color: #DAA520;
    --secondary-color: #F5F5F5;
    --text-color: #333;
    --white: #FFFFFF;
    --black: #000000;
}

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

    /*color: #666;*/
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../images/background.jpeg'); 
    background-position: center top;
    background-size: cover;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: right;
    color: var(--white);
    padding-top: 80px;
    padding-bottom: 0px;
}

.hero-content {
    background-color: rgba(0,0,0,0.5);
    padding: 5rem 5rem;
    width: 100%;
}

.hero h1 {
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

section h3 {
    text-align: center;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* About Section */
.about {
    background-color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 2rem;
    padding: 0.5rem;
}

.about-card {
    background-color: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.about-card h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    /*display: none;*/
}

.about-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 992px) {
.about-content {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.about-content {
    grid-template-columns: 1fr;
}

.about-card {
    padding: 2rem 1.5rem;
}
}

/* Project Text */
.project-text {
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    text-align: left;
}

.project-text h3:first-child {
    margin-top: 0;
}

.project-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.1rem;
}

.project-text ul {
    margin: 1.5rem 0 1.5rem 1.2rem;
    color: var(--text-color);
}

.project-text li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
    padding-left: 0.5rem;
}

.project-text li::marker {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
}

/* Project Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.project-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.project-gallery img:hover {
    transform: scale(1.05);
}

/* Description Section */
.description {
    position: relative;
    padding: 4rem 0;
}

.description-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 2rem;
    position: relative;
}

.description-image-wrapper {
    position: relative;
    margin: -3rem 0;
}

.description-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.description-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.description-image img:hover {
    transform: scale(1.02);
}

.description-text {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.description-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.description-text p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .description-content {
        grid-template-columns: 1fr;
    }
    
    .description-image-wrapper {
        margin: 0;
        order: -1;
    }
    
    .description-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .description-image {
        height: 300px;
    }
    
    .description-text {
        padding: 1.5rem;
    }
}

/* Nearby Section */
.nearby {
    background-color: var(--secondary-color);
}

.nearby-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.nearby-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.nearby-item h3 {
    font-size: 1.5rem;
}

.location {
    background-color: var(--secondary-color);
}

/* Location Section */
#map {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    z-index: 1;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 2rem 0;
    text-align: center;
}

/* Project Documents */
.project-documents {
    margin-top: 2rem;
}

.documents-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.document-button {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 250px;
    justify-content: center;
}

.document-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.document-button i {
    font-size: 1.2rem;
}

.document-button span {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .document-button {
        width: 100%;
        min-width: unset;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 3rem;
    }

    section {
        padding: 3rem 0;
    }
}
