/* Project_view Page Style Sheet Code Started Here  */
body {
    font-family: 'Georgia', serif;
}

.project-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px; 
    box-sizing: border-box; 
}

section.project-details {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    display: none; 
    border-radius: 5px; 
    background-color: #fff; 
}

/* Responsive Styles */
@media (max-width: 768px) {
    .project-container {
        padding: 10px; 
    }

    section.project-details {
        padding: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .project-container {
        padding: 5px; 
    }

    section.project-details {
        padding: 10px; 
        margin-bottom: 10px; 
    }
}

/* Project_view Page  Style Sheet Code Ended  Here  */ 



/* Project-view Page  Image Style Sheet Code Started Here */

.project-v-image {
    width: 100%; 
    overflow: hidden;
}

.project-v-image img {
    width:100%px;  
    height: auto; 
    object-fit: cover; 
}


/* Mobile View */
@media (max-width: 480px) {
    .project-v-image img {
        width: 100%;  
        height: auto; 
        object-fit: contain; 
    }
}

/* Project-view Page Image Style Sheet Code Ended Here */



/* Project-view Page Buttons for Project Details Style Sheet Code Started Here */
.project-v-buttons {
    display: flex;                     
    justify-content: space-around;    
    margin: 20px 0;                   
    padding: 7px;                   
    background-color:white;        
    border-radius: 8px;                
   
}

.tab-btn {
    flex: 1;                          
    margin: 0 5px;                   
    padding: 10px 10px;              
    background-color: #b78727;      
    color:white;                  
    border: none;                   
    border-radius: 50px;           
    cursor: pointer;                  
    font-size: 15px;                  
    transition: background-color 0.3s; 
    font-family: 'Georgia', serif;
}

/* Button Hover State */
.tab-btn:hover {
    background-color: grey;      
}

/* Responsive Styles */
@media (max-width: 768px) {
    .project-v-buttons {
        flex-direction: column; 
        align-items: center;     
    }

    .tab-btn {
        margin: 5px 0;         
        width: 80%;              
        font-size: 12px;         
    }
}

/* Project-view Page Buttons for Project Details Style Sheet Code Ended Here  */



/* Project-View Page Tab Content Section Overview Style Sheet Code Started Here */

#overview {
    margin: 20px; 
    padding: 20px; 
    background-color:white; 
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

/* Headline styles */
.tab-headline {
    text-align: center; 
    font-weight: bold; 
    font-size: 1.5em; 
    color: #b78727; 
    margin-bottom: 15px; 
    font-family: 'Georgia', serif;
}

/* Description styles */
.tab-description {
    font-family: 'Georgia', serif; 
    font-size: 0.85em; 
    color:gray; 
    line-height: 1.8;
    margin-top: 15px; 
    text-align: justify; 
}

/* Responsive Styles */
@media (max-width: 768px) {
    #overview {
        margin: 10px; 
        padding: 15px; 
    }

    .tab-headline {
        font-size:18px; 
        margin-bottom: 10px; 
    }

    .tab-description {
        font-size:12px; 
        line-height: 1.5; 
    }
}

@media (max-width: 480px) {
    .tab-headline {
        font-size: 16px; 
    }

    .tab-description {
        font-size:12px; /* Further adjust font size for smaller screens */
    }
}

/* Project-View Page Tab Content Section Overview Style Sheet Code Ended Here */


/* Project-View Page Tab Content Section price Style Sheet Code Started Here  */

#price {
    margin: 20px;
    padding: 20px;
    background-color: white; 
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

.tab-headline {
    text-align: center; 
    font-weight: bold; 
    font-size: 1.5em; 
    color: #b78727; 
    margin-bottom: 20px; 
    font-family: 'Georgia', serif;
}

.price-headlines {
    display: flex; 
    justify-content: center; 
    margin-bottom: 15px; 
    color:#b78727;
}

.headline-block {
    flex: 1; 
    text-align: center; 
    font-weight: bold; 
    color: #b78727; 
}

.price-details {
    margin-top: 10px; 
}

.price-row {
    display: flex; 
    justify-content: center; 
    margin: 10px 0;
}

.price-block {
    flex: 1; 
    text-align: center; 
    color: #555; 
    padding: 10px; 
    background-color: #e8e8e8; 
    border-radius: 4px; 
    margin: 0 20px; 
    min-width: 100px;
    font-size: 0.85em;  
}


/* Project-View Page Tab Content Section price Style Sheet Code Ended Here  */



/* Project-View Page Tab Content Section Location & Highlights Style Sheet Code Started Here  */

#location {
    margin: 20px; 
    padding: 20px; 
    background-color:white; 
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

/* Location box headline styles */
.location-box-headline {
    text-align: center; 
    font-size: 1.2em; 
    font-weight: bold; 
    color: #b78727; 
    margin-bottom: 20px; 
}

/* Container for location highlights */
.location-highlight-container {
    display: flex; 
    justify-content: space-between; 
}

/* Box styles for location and highlights */
.location-box, .highlight-box {
    flex: 1; 
    margin: 0 10px; 
    background-color:white; 
    border-radius: 8px; 
    padding: 15px; 
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); 
 }
/* Box headline styles */
.box-headline {
    text-align: center; 
    font-weight: bold; 
    font-size: 1.2em; 
    color: #444; 
    margin-bottom: 10px; 
    color: #b78727; 
}

/* Map container styles */
.map-container {
    width: 100%; 
    overflow: hidden; 
    border-radius: 4px; 
}

/* Highlight list styles */
.highlight-list {
    list-style-type: disc; 
    padding-left: 20px; 
}

.highlight-list li {
    margin: 10px 0; 
    text-align: left;
    color: #555;
    position: relative; 
    font-size: 14px;
}

.highlight-list li::marker {
    color: #333; 
}

/* Responsive Styles */
@media (max-width: 768px) {
    #location {
        margin: 10px; 
        padding: 15px; 
    }

    .location-highlight-container {
        flex-direction: column; 
    }

    .location-box, .highlight-box {
        margin: 10px 0; 
    }

    .location-box-headline {
        font-size: 16px; 
    }

    .box-headline {
        font-size:16px; 
    }
    .highlight-list li {
        font-size:12px; 
    }
}

@media (max-width: 480px) {
    .location-box-headline {
        font-size:16px; 
    }

    .box-headline {
        font-size:16px; 
    }

    .highlight-list li {
        font-size:12px; 
    }
}

/* Project-View Page Tab Content Section Location & Highlights Style Sheet Code Ended Here  */




/* Project-View Page Tab Content Section Amenities Style Sheet Code Started Here */

.amenities {
    padding: 20px;
    background-color: #f9f9f9;
}

.amenities-headline {
    font-size: 26px;
    color: #b78727;
    margin-bottom: 20px;
    text-align: center;
}

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.amenity-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 18%; /* Adjust for 5 per row */
    margin: 10px 0;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

.amenity-box:hover {
    transform: translateY(-5px);
}

.amenity-box img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.amenity-box p {
    font-size: 14px;
    color: #b78727; /* Simplified: Only set here for consistency */
    margin-top: 10px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .amenity-box {
        width: 23%; 
    }
}

@media (max-width: 900px) {
    .amenity-box {
        width: 30%; 
    }
}

@media (max-width: 600px) {
    .amenity-box {
        width: 45%; 
    }
}

@media (max-width: 400px) {
    .amenity-box {
        width: 100%; 
    }
}

/* Project-View Page Tab Content Section Amenities Style Sheet Code Ended Here */


/* Project-View Page Tab Content Section Gallery Style Sheet Code Started Here */

/* Gallery Style Sheet */
#gallery {
    padding: 30px;
    background-color: #f4f4f9;
}

.location-box-headline {
    font-size: 24px;
    color: #b78727;
    text-align: center;
    margin-bottom: 25px;
}

.gallery-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.photos-section {
    width: 45%; 
    margin-right: 20px;
}

.video-section {
    width: 40%; 
}

.gallery-headline {
    font-size: 22px;
    color: #b78727;
    margin-bottom: 20px;
    text-align: center; 
}

.photos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
}

.photos-grid img {
    width: 46%; 
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.photos-grid img:hover {
    transform: scale(1.05);
}

.video-grid {
    display: flex;
    flex-direction: column;
}

.video-grid video {
    width: 100%;
    height: auto; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Media Queries for responsiveness */
@media (max-width: 1200px) {
    .photos-section, .video-section {
        width: 100%; 
    }

    .photos-grid img {
        width: 30%;
    }
}

@media (max-width: 900px) {
    .photos-grid img {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .photos-grid img {
        width: 100%;
    }
}


/* Project-View Page Tab Content Section Gallery Style Sheet Code Ended Here  */
