/* --- Global Styles --- */
:root { --primary-color: #ff8c00; --dark-bg: #1a1a1a; --text-color: #555; --heading-font: 'Playfair Display', serif; --body-font: 'Poppins', sans-serif; --light-bg: #fdfdfd; }
body { font-family: var(--body-font); color: var(--text-color); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); color: #222; font-weight: 700; }
.custom-font { font-family: var(--heading-font); font-style: italic; color: var(--primary-color); }
.section-padding { padding: 100px 0; }
.bg-light-grey { background-color: #f9f9f9; }

/* --- Buttons --- */
.btn-theme { background-color: var(--primary-color); color: #fff; border-radius: 30px; padding: 12px 30px; font-weight: 500; font-size: 15px; text-decoration: none; transition: all 0.3s ease; border: 2px solid var(--primary-color); display: inline-block; }
.btn-theme:hover { background-color: transparent; color: var(--primary-color); }
.btn-outline-theme { border: 2px solid #fff; color: #fff; background: transparent; border-radius: 30px; padding: 12px 30px; text-decoration: none; font-weight: 500; transition: all 0.3s ease; display: inline-block; margin-right: 15px; }
.btn-outline-theme:hover { background-color: #fff; color: #333; }

/* --- Navbar --- */
.navbar { transition: all 0.4s ease; padding: 15px 0; background: #1a1a1a; } /* Solid for subpages */
.navbar-brand { font-family: var(--body-font); font-weight: 700; font-size: 24px; color: #fff !important; letter-spacing: 1px; transition: 0.3s;}
.navbar-brand span { color: var(--primary-color); }
.navbar-nav .nav-link { color: #fff !important; font-size: 14px; text-transform: uppercase; font-weight: 500; margin: 0 12px; transition: 0.3s; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary-color) !important; }

/* --- Sub-Page Headers --- */
.page-header { height: 50vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; text-align: center; margin-top: 60px; }
.page-header::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.65); z-index: 1; }
.page-header .caption { position: relative; z-index: 2; color: #fff; }
.page-header h1 { color: #fff; font-size: 50px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

/* --- Features, Menu, Gallery, Contact (Reused from Index) --- */
.feature-box { background: #fff; padding: 40px 30px; border-radius: 10px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.4s ease; height: 100%; }
.feature-box:hover { transform: translateY(-10px); }
.feature-icon-wrap { width: 80px; height: 80px; background: #fffcf8; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; border: 1px dashed var(--primary-color); }

.menu-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn { background: #fff; border: 1px solid #eee; padding: 10px 30px; font-weight: 500; color: #555; border-radius: 5px; cursor: pointer; transition: 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.menu-item { background: #fff; padding: 25px; border-radius: 8px; margin-bottom: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); display: flex; justify-content: space-between; align-items: center; border-left: 3px solid transparent; transition: 0.3s; }
.menu-item:hover { border-left-color: var(--primary-color); transform: translateX(5px); }
.menu-price { font-weight: 700; color: var(--primary-color); font-size: 20px; }

.special-offer-img-wrap { position: relative; display: inline-block; }
.special-offer-img { width: 100%; max-width: 500px; border-radius: 50%; animation: float 6s ease-in-out infinite; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.discount-badge { position: absolute; top: 10%; right: 0; background: #fff; border-radius: 50%; width: 100px; height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: rotate(15deg); }
.discount-badge span.text { color: #333; font-weight: 600; font-size: 12px; }
.discount-badge span.perc { color: #007bff; font-weight: 800; font-size: 28px; line-height: 1; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }


.gallery-grid img { width: 100%; border-radius: 8px; margin-bottom: 20px; transition: 0.3s; cursor: pointer; }
.gallery-grid img:hover { filter: brightness(0.8); transform: scale(1.02); }

.booking-wrap { background: #fff; padding: 50px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.form-control, .form-select { border-radius: 5px; padding: 12px 20px; border: 1px solid #ddd; font-size: 14px; margin-bottom: 20px; }

/* ---gallery -- */
/* --- Custom Lightbox --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Keeps zoomed image contained */
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease-out;
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10000;
}

.lightbox-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-controls button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* --- Footer --- */
footer { background-color: var(--dark-bg); color: #aaa; padding-top: 80px; font-size: 14px; }
footer h5 { color: #fff; margin-bottom: 25px; font-family: var(--body-font); font-size: 18px; }
footer .social-icons a { width: 35px; height: 35px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #555; border-radius: 50%; color: #aaa; margin-right: 10px; transition: 0.3s; text-decoration: none;}
footer .social-icons a:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.footer-bottom { background: #111; padding: 25px 0; margin-top: 60px; }