/* --- Basic Setup & Fonts --- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #ccc;
}

h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* --- Top Bar --- */
.top-bar {
    color: #fff;
    position: fixed;
    top: -1em;
    left: 0;
    right: 0;
    z-index: 1000; 
    align-self: flex-start; /* This is no longer needed with position: fixed */
    width: 100%;            /* This is now handled by left: 0; and right: 0; */
    text-align: left;
    font-size: 1.2em; 
    height: 2em;

}
.top-bar a {
    text-decoration: none; /* Removes underline */
    color: inherit;        /* Keeps text color white (or the inherited color) */
}

.top-bar p img {
    height: 3em; 
    width: auto; 
    vertical-align: middle; 
    margin-right: 8px; 
}


/* --- Hero Header --- */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* CHANGE THIS: Update with your background image path */
    background-image: url('images/background.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-buttons {
    display: flex;
    justify-content: center; /* Centers buttons horizontally */
    flex-wrap: wrap;         /* Allows buttons to stack if screen is small */
    gap: 1rem;               /* Adds space between buttons */
    margin-top: 1rem;
}

.logo {
    max-width: 350px;
    margin-bottom: 2rem;
}

.btn {
/*    background-color: #d4af37; /* Gold color */ 
    background-color: #dfb100; /* Gold color */
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 0.5rem;
    border-radius: 8px;
}


/* --- Contact Page Specific Styling --- */
.contact-hero {
    /* Significantly reduces the height of the header on the contact page */
    height: 35vh; 
}

/* Ensure the hero-content stays centered in the smaller space */
.contact-hero .hero-content {
    justify-content: center;
}

.contact-details a {
    text-decoration: none; /* Removes underline */
    color: #dfb100;        /* Keeps text color white (or the inherited color) */
}

.contact-icon {
    font-size: 2rem;
    color: #dfb100; /* Current gold color */
}


/* --- Main Content --- */
main {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
}

.content-section {
    padding: 2rem 0;
    border-bottom: 1px solid #222;
}

.content-section p {
    line-height: 1.6;
    max-width: 80ch;
}

/* --- Services Section --- */
.services {
    padding: 0rem;
}

.services-grid {
    display: flex;
    flex-direction: row;
    padding-left: 0; 
    padding-right: 0;
    gap: 3rem;

}
.service-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding-left: 0;
}

.service-item h3 {
    margin: 0 0 0.25rem 0;
    color: #fff;
    font-size: 1.1rem;
}
.service-item p {
    margin: 0;
    color: #aaa;
}
.price {
    margin-left: auto;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- Services Page Detail Layout --- */
.wide-service-item {
    /* Allow the item to take up full width for better readability */
    width: 100%; 
    /* Ensure the price stays to the right, but allow content to flow */
    align-items: flex-start;
    padding-bottom: 1.5rem;
    /* Reset margin/padding for lists inside the service item */
}

/* Adjustments for the text content within the service item */
.wide-service-item div {
    /* Allows the text content block to grow and push the price further right */
    flex-grow: 1; 
    margin-right: 1.5rem; /* Add space between text and price */
}

/* Adjust the services grid to be full-width if needed */
.services-full-list {
    flex-direction: column; /* Ensure items stack vertically */
}






.more-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #aaa;
    text-decoration: none;
}
.more-link strong {
    color: #d4af37;
}
.service-image-icon {
    /* Set a specific size, similar to the 2rem font size of the old icons */
    width: 2rem; 
    height: 2rem;
    object-fit: contain; /* Ensures the image scales properly without cropping */
}

/* --- Address & Map --- */
.map-container {
    margin-top: 1rem;
}

/* --- Gallery Section --- */
.main-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.main-gallery-grid img {
    width: 100%;
    height: auto;
}

.gallery-grid {
    display: flex; /* Use Flexbox to put columns side-by-side */
    flex-wrap: wrap; /* Allow columns to wrap to the next row */
    gap: 1rem;       /* Space between columns (horizontal and vertical) */
    padding: 0 1rem; /* Ensure it stays within the main content area */
    margin-bottom: 2rem;
}

.gallery-column-big {
    width: calc(66.66% - 1rem); /* Two-thirds width, subtracting half the gap */
    height: 400px; /* Fixed height for the big column */
    /* Ensure the single image fills the column */
    display: flex; 
}

.gallery-column-small {
    width: calc(33.33% - 0.5rem); /* One-third width, subtracting half the gap */
    height: 380px; /* Fixed height, matching the big column */
    
    display: flex; /* Use Flexbox to stack the two images vertically */
    flex-direction: column;
    gap: 1rem; /* Gap between the two small images */
}

/* General image styling within the new columns */
.gallery-grid img {
    width: 100%;
    /* Flex-grow ensures the image takes up all available height in the column */
    flex-grow: 1; 
    /* For the small columns, flex-basis/height 50% ensures equal stacking */
    height: 50%;
    object-fit: cover; /* Ensures images fill the space without stretching */
    border-radius: 4px; 
}

/* Ensure images in the BIG column take up 100% of the column height */
.gallery-column-big img {
    height: 100%; 
}

/* --- Footer --- */
footer {
/*    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: #1a1a1a; */

    display: flex;
    /* CHANGED: Switch to column to stack items vertically */
    flex-direction: column; 
    /* CHANGED: Center everything */
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #1a1a1a;
    gap: 1.5rem;

}

/* ADD THIS NEW BLOCK */
.footer-buttons {
    display: flex;
    justify-content: center; /* Centers the buttons */
    flex-wrap: wrap;
    gap: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    color: #dfb100;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-buttons, .footer-buttons {
        /* CHANGED: Removed flex-direction: column; or replaced it with row; */
        /* If it was flex-direction: column, change it to this: */
        flex-direction: row; 
        justify-content: center;
        flex-wrap: wrap; /* Allows buttons to wrap to the next line */
        gap: 0.5rem; /* Reduced gap slightly for tighter fit */
        padding: 0 1rem; /* Added padding so buttons don't hit the screen edges */
    }

    /* ADD THIS NEW RULE to force two buttons per line */
    .hero-buttons .btn, .footer-buttons .btn {
        width: 33%; /* Makes each button take up slightly less than half the container */
        margin: 0; /* Remove horizontal margin from the previous rule */
        text-align: center;
    }
    .hero {
        height: 90vh;
    }
    /* ADD THIS NEW RULE FOR MOBILE CONTACT PAGE */
    .contact-hero {
        height: 40vh; /* Keeps it reasonably small on mobile too */
    }
 
    .services-grid {
        flex-direction: column; /* Force items to stack vertically on mobile */
        gap: 2rem; /* Optional: Increase gap for better visual separation */
    }

    /* Reset service item alignment for vertical stack */
    .service-item {
        /* Ensure the icon, text, and price are not squished */
        flex-direction: column; 
        align-items: flex-start;
        padding-bottom: 1rem;
    }
    
    /* Ensure the price moves to a new line and takes full width */
    .price {
        margin-left: 0;
        margin-top: 0.5rem;
        align-self: flex-end; /* Puts the price tag on the right of its line */
    }



    
   .gallery-grid {
        flex-direction: column; /* Stack all columns vertically on mobile */
        gap: 1rem;
    }
    
    /* Make all columns 100% width on mobile */
    .gallery-column-big, .gallery-column-small {
        width: 100%;
        height: auto; /* Allow height to adjust based on content */
    } 


   .footer {
        flex-direction: column;
        gap: 1.5rem;
    }
}
