/* Hide scrollbar while keeping scroll functionality */
body {
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

/* Project Header Styling */
.project-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.project-header h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.project-subtitle {
    font-size: 1.2em;
    color: #666;
    font-weight: 400;
    margin: 0;
}

/* Project Content Layout */
.project-content {
    max-width: 900px;
    margin: 0 auto;
}

.project-description {
    margin: 40px 0;
    line-height: 1.7;
}

.project-description p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    text-align: left;
}

/* Image Gallery Styling */
.image-gallery {
    margin: 40px 0;
}

.gallery-item {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item.large {
    margin-bottom: 40px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    background: #f5f5f5;
}

.image-caption {
    padding: 15px 20px;
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    border-top: 1px solid #eee;
    background: #fafafa;
}

/* Gallery Row Layout */
.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

/* Project Details Section */
.project-details {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.detail-item {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
}

.detail-item h3 {
    font-size: 1em;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.detail-item p {
    font-size: 1.1em;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-header h1 {
        font-size: 2em;
    }
    
    .project-subtitle {
        font-size: 1.1em;
    }
    
    .project-content {
        padding: 0 20px;
    }
    
    .gallery-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-caption {
        padding: 12px 15px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .project-header {
        margin-bottom: 30px;
    }
    
    .project-description p {
        font-size: 1em;
    }
    
    .gallery-item {
        margin-bottom: 20px;
    }
} 