body {
    font-family: 'Poppins', sans-serif; 
    background-color: #22292e; 
    color: #ffffff; 
    margin: 0;
    padding: 0;
    text-align: center; 
}

/* Headings */
h1 {
    font-family: 'Figtree', sans-serif; 
    color: #ffffff;
    font-size: 5rem; 
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center; 
}

h2 {
    font-family: 'Barlow Semi Condensed', sans-serif; 
    color: #ffffff;
    font-size: 3rem; 
    margin-top: 0px;
    margin-bottom: 30px;
    text-align: center; 
    font-weight: normal;
}

h3 {
    font-family: 'Poppins', sans-serif; 
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: bold;
}

h4 {
    font-family: 'Barlow Semi Condensed', sans-serif;  
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.8;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: normal;
}

p {
    font-family: 'Poppins', sans-serif; 
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 30px;
    margin-bottom: 40px;
    padding-left: 50px;  
    padding-right: 50px;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
    background-color: #b81615; 
    color: white;
    width: 100%;
    text-align: center;
    padding-right: 20px;
}

/* Menu Styles (hidden by default) */
.menu {
    display: none;
    flex-direction: column;
    background-color: #b81615; 
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

/* Menu Link Styles */
.menu a {
    color: white;
    padding: 15px;
    text-decoration: none;
    display: block;
    font-family: 'Poppins', sans-serif; 
}

/* Hover Effect on Menu Links */
.menu a:hover {
    background-color: #575757;
}

.menu-toggle:checked + .hamburger + .menu {
    display: flex;
}

.menu-toggle {
    display: none;
}

/* Media Query for Larger Screens (Displays menu in row format and hides hamburger) */
@media (min-width: 768px) {
    .menu {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
    }
    .hamburger {
        display: none;
    }
}

/* Photo Gallery */
.photo-gallery img {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    max-width: 85%;
    margin: 0 auto; 
    justify-content: center;
}

/* Renovation Gallery Section */
.reno-gallery img {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    max-width: 85%;
    margin: 0 auto; 
    justify-content: center;
}

/* Fact Container */
.fact-container {
    display: flex;
    align-items: center;
    gap: 30px; 
    margin-bottom: 50px; 
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap; /* Allows items to stack on smaller screens */
}

/* Responsive Image Styling */
.fact-container img {
    width: 100%; /* Makes image responsive */
    max-width: 450px; /* Larger images on bigger screens */
    height: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.fact-container img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Text Box */
.fact-text {
    max-width: 50%;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

/* Alternate Alignment: Left-Right */
.fact-container:nth-child(odd) {
    flex-direction: row; /* Image on left, text on right */
    text-align: left;
}

.fact-container:nth-child(even) {
    flex-direction: row-reverse; /* Image on right, text on left */
    text-align: right;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    margin-top: 50px;
    margin-bottom: 50px;
}

.nav-buttons a {
    background-color: #b81615; /* Red background */
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 30px; /* Rounded corners */
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-buttons a:hover {
    background-color: #921010; /* Slightly darker red on hover */
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .fact-container {
        flex-direction: column;
        text-align: center;
    }

    .fact-text {
        max-width: 90%;
        text-align: center;
    }

    .fact-container img {
        max-width: 100%;
    }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .image-container {
        width: calc(50% - 20px); /* 2 images per row on tablets */
    }
}

@media (max-width: 600px) {
    .image-container {
        width: 100%; /* 1 image per row on small screens */
    }
}
.quote {
    padding: 100px; 
}