/* Basic Resets */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Georgia, serif; line-height: 1.6; }

.container-wide { max-width: 1000px; margin: 0 auto; width: 100%; }
.container-narrow { max-width: 880px; margin: 0 auto; width: 100%; }

.black-bg { background-color: #1a1a1a; color: white; height: 60px; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.nav-links-wrapper { display: flex; height: 100%; }
.menu-link { display: flex; align-items: center; justify-content: center; width: 100px; height: 100%; color: white; text-decoration: none; font-size: 14px; transition: 0.2s; border-left: 1px solid transparent; border-right: 1px solid transparent; }
.menu-link:hover { border-left: 1px solid white; border-right: 1px solid white; background-color: rgba(255, 255, 255, 0.05); cursor: pointer; }
.menu-icon { width: 18px; height: 18px; margin-right: 6px; }
.active-link { background-color: rgba(255, 255, 255, 0.1); border-left: 1px solid white; border-right: 1px solid white; }

/* Section Themes */
.color-1 { background: linear-gradient(135deg, #f3e5ab, #e5d392); 
    color: #333; }
.color-2 { background: linear-gradient(135deg, #1a1a1a, #2c2c2c); 
    color: #f0f0f0;
     } 
.color-3 { background: linear-gradient(135deg, #ffffff, #e6e6e6); 
    color: #222; 
    border-bottom: 1px solid #ddd; } 
.color-4 { background: linear-gradient(135deg, #2d2d2d, #121212); 
    color: white;
     }
.color-5 { background: linear-gradient(135deg, #f9f9f9, #ececec); 
    color: #333; }

    /* Gold Accents for Headers in Dark Sections */
.color-3 h2, .color-5 h2 { color: #d4af37; } /* Classic Gold */

/* Structural Fixes */
section {
    min-height: 450px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 80px 0; /* Natural spacing to prevent overlap */
    position: relative;
    overflow: visible;
}

.section-flex { display: flex; justify-content: space-between; align-items: center; gap: 40px; width: 100%; }
.reverse { flex-direction: row-reverse; }

/* Image and Dot Alignment */
.slideshow-container { width: 360px; flex-shrink: 0; position: relative; }
.placeholder-img { width: 360px; height: 260px; display: block; object-fit: cover; border-radius: 4px; }

/* Specific Logo Style */
.first-image-style {
    width: 360px; /* Matched to slideshow-container for dot alignment */
    height: 260px;
    object-fit: fill; /* This forces the image to stretch to the corners of the shadow */
    background-color: transparent;
    display: block;
    /* Rounds Top-Left and Top-Right | Bottoms are 0 (Flat) */
    border-radius: 15px 15px 0 0; 
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
}

.slideshow-controls {
    width: 100%; /* Spans the full width of the 360px image */
    height: 30px;
    background-color: rgba(0, 0, 0, 0.6); /* Darker for better contrast on white/silver */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-top: -2px;
}

.dot { height: 12px; width: 12px; background-color: #bbb; border-radius: 50%; cursor: pointer; }
.dot:hover { background-color: #717171; }

.text-box { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.text-box p { font-size: large; }

/* Gallery and Footer */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-bottom: 40px; }
.gallery-item { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 8px; }
.gallery-item .placeholder-img { width: 100%; height: 100%; object-fit: cover; }

.site-footer { background-color: #1a1a1a; color: white; padding: 60px 0 20px 0; width: 100%; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-bottom: 40px; }
.footer-col h4 { margin-bottom: 15px; border-bottom: 1px solid #444; padding-bottom: 5px; text-transform: uppercase; font-size: 0.9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; color: #bbb; }
.footer-col li a { color: inherit; text-decoration: none; }
.copyright { text-align: center; font-size: 0.8rem; margin-top: 20px; color: #666; border-top: 1px solid #333; padding-top: 20px; }

/* The "Choose Your Package" Button - Now Gold/Black */
#pgBtn { 
    background-color: #d4af37; 
    color: #1a1a1a; 
    padding: 12px 28px; 
    border-radius: 5px; 
    text-decoration: none; 
    display: inline-block; 
    font-weight: bold;
    transition: 0.3s;
    border: 1px solid #b8860b;
}

#pgBtn:hover { 
    background-color: #f3e5ab; 
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* This targets the 3rd link (Contact us) and pushes it to the right */
.nav-links-wrapper a:nth-child(3) {
    margin-left: auto;
}

/* Optional: Since your container is 1000px, make sure the wrapper fills it */
.nav-links-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

#menuBook {
    background-color: #d4af37; 
                color: #1a1a1a; 
                height: 34px; 
                margin: 0 15px; 
                padding: 0 15px; 
                border-radius: 4px; 
                text-decoration: none; 
                font-weight: bold; 
                font-size: 13px; 
                display: flex; 
                align-items: center; 
                justify-content: center;
                transition: 0.3s;
                border: 1px solid #b8860b;
}
#menuBook:hover {
    background-color: #f3e5ab; 
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}