@import url('style.css');

.project-hero {
    background: linear-gradient(rgba(7,22,51,0.6), rgba(7,22,51,0.6)), url('../images/project/DesignPhase.webp');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    margin-top: 70px;
    text-align: center;
}

.hero-content h1 {
    font-size: 1.5rem; /* updated to 1.5rem */
    margin-bottom: 1rem;
    color: var(--white);
}  

.hero-content p {
    font-size: 1.3rem;
    color: var(--cold);
    max-width: 600px;
    margin: 0 auto;
}

.project-overview {
    padding: 100px 0;
    background-color: var(--navy);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}  

.overview-text > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.key-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fact {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--navy-light);
    border-radius: 8px;
    border: 1px solid var(--navy-lighter);
}

.fact h3 {
    font-size: 1.8rem;
    color: var(--cold);
    margin-bottom: 0.5rem;
}

.fact p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.overview-image {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phases-detailed {
    padding: 100px 0;
    background-color: var(--navy-light);
}

.phases-detailed h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 4rem;
    color: var(--white);
} 

.phases-container {
    max-width: 1000px;
    margin: 0 auto;
}

.phase-card {
    background-color: var(--navy);
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid var(--navy-lighter);
    transition: all 0.3s ease;
}

.phase-card.active {
    border-color: var(--cold);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.phase-header {
    padding: 1.5rem 2rem;
    background-color: var(--navy-lighter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.phase-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
}

.status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.completed {
    background-color: #10b981;
    color: white;
}

.status.in-progress {
    background-color: #f59e0b;
    color: white;
}

.status.planned {
    background-color: var(--gray);
    color: var(--white);
}

.phase-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phase-card.active .phase-content {
    padding: 2rem;
    max-height: 1000px;
}

.phase-content h4 {
    font-size: 1.3rem;
    color: var(--cold);
    margin-bottom: 1rem;
}

.phase-content > p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.phase-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.phase-features li {
    color: var(--gray-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--navy-lighter);
}

.phase-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.phase-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.location {
    padding: 100px 0;
    background-color: var(--navy);
}

.location h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 4rem;
    color: var(--white);
} 

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-size: 1.8rem;
    color: var(--cold);
    margin-bottom: 1.5rem;
}

.location-info > p {
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-feature h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.location-feature p {
    color: var(--gray-light);
    line-height: 1.6;
}

.location-map {
    position: relative;
}

.map-placeholder {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 25, 47, 0.9));
    padding: 2rem;
    color: var(--white);
}

.map-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--cold);
}

.project-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), url('../images/project/Construction1.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
} 

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--gray-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .overview-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .key-facts {
        grid-template-columns: 1fr;
    }
    
    .phase-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .overview-text h2,
    .phases-detailed h2,
    .location h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .phase-header {
        padding: 1rem;
    }
    
    .phase-content {
        padding: 0 1rem;
    }
    
    .phase-card.active .phase-content {
        padding: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn, .btn-whatsapp {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}