:root {
    --gold: #c5a059;
    --red: #e63946;
}

body { font-family: 'Poppins', sans-serif; margin: 0; }

.serif-font { font-family: 'Playfair Display', serif; }

.btn-gold { background-color: var(--gold); border-radius: 4px; }

/* 1. HERO FIX: Full screen, no cut-off */
.hero-viewport {
    position: relative;
    height: 100vh; /* Takes full screen height */
    width: 100%;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.slide {
    position: absolute;
    width: 100%; height: 100%;
    background-size: cover; /* Fits image to screen */
    background-position: center;
    opacity: 0;
    animation: crossFade 15s infinite ease-in-out;
}

/* Staggered animation */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

@keyframes crossFade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33% { opacity: 1; }
    45% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-title { font-size: 4rem; font-weight: 700; color: white; }

/* 2. SPECIAL DAYS SECTION FIX */
.special-days-section {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 10;
}

.red-divider {
    width: 50px; height: 2px;
    background: var(--red);
    margin: 20px auto;
}

.img-zoom-container {
    border-radius: 15px;
    overflow: hidden;
    /* This makes sure the box is visible even if image is missing */
    background: #f0f0f0; 
}

.img-zoom-container img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: 0.5s;
}

.card-special:hover img { transform: scale(1.1); }

.card-action-links { display: flex; align-items: center; gap: 10px; margin-top: 15px; }
.link-red { color: var(--red); text-decoration: none; font-weight: 600; }
.link-dark { color: #333; text-decoration: none; }
.dot-separator { width: 4px; height: 4px; background: #999; border-radius: 50%; }
/* Heritage Section Specifics */
.gold-text {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.heritage-img-frame {
    position: relative;
    /* Optional: adds a slight offset decorative border behind image */
}

/* Discover More Button Styling */
.btn-discover {
    border-radius: 0; /* Square edges like the screenshot */
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-width: 1px;
}

.btn-discover:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .heritage-detail-section {
        text-align: center;
    }
    .ps-md-4 {
        padding-left: 0 !important;
    }
}
/* About Us Specific Styles */
.square-frame {
    padding: 10px;
    border: 1px solid #eee; /* Subtle frame around the square */
}

.square-fixed {
    width: 100%;
    aspect-ratio: 1 / 1; /* FORCES SQUARE DIMENSIONS */
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.square-frame:hover .square-fixed {
    transform: scale(1.03); /* Subtle artistic zoom on hover */
}

.gold-text-heading {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
}

.serif-font {
    font-family: 'Playfair Display', serif;
}

/* Back Button Link */
.text-dark:hover {
    color: var(--gold) !important;
}
/* Eyebrow text styling */
.tracking-widest {
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Gold color for the eyebrow */
.gold-text {
    color: #c5a059;
}

/* Decorative line under the title */
.accent-line {
    width: 60px;
    height: 2px;
    background-color: #e63946; /* Using your theme's red */
}

/* Improved Paragraph Typography */
.description-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a4a4a;
    font-weight: 300; /* Light weight makes it look more elegant */
}

/* Highlight the key term */
.description-text strong {
    font-weight: 600;
    color: #1a1a1a;
}
/* Menu Section Specifics */
.menu-img-cinematic {
    width: 100%;
    /* Cinematic wide ratio to match your reference */
    aspect-ratio: 16 / 10; 
    object-fit: cover;
    border-radius: 0; /* Keeps the sharp architectural look */
}

.menu-preview-section .display-4 {
    letter-spacing: 2px;
    font-weight: 500;
    color: #1a1a1a;
}

/* Square Artistic Button */
.btn-square {
    border-radius: 0; /* Perfectly square */
    border: 1.5px solid #1a1a1a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn-square:hover {
    background-color: #1a1a1a;
    color: #fff;
    transform: translateY(-3px);
}

/* Description text spacing for premium feel */
.description-text {
    line-height: 1.9;
    color: #555;
    font-size: 1.05rem;
}
/* Footer Specifics */
.footer-section {
    font-family: 'Poppins', sans-serif;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icon {
    font-size: 1.2rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--gold);
}

.x-small {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
}

/* Red Accent for consistency with logo */
.footer-section .border-top {
    border-color: #f1f1f1 !important;
}
:root {
    --gold: #c5a059;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.serif-font {
    font-family: 'Playfair Display', serif;
}

.gold-text-heading {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

/* Image Styling */
.square-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover; /* This makes it a perfect square */
    border-radius: 8px;
    background-color: #eee; /* Shows if image is missing */
}

/* Menu Item Styling */
.gold-price {
    color: var(--gold);
    font-weight: 600;
}

.menu-chapter h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.border-bottom {
    border-color: #f1f1f1 !important;
}

/* Hover Effect */
.d-flex.align-items-center:hover {
    background-color: #fafafa;
    transition: 0.3s;
}
/* Chapter II Specifics */
.menu-item-simple {
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.menu-item-simple h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0;
}

.menu-item-simple span {
    color: var(--gold);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.x-small {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #777;
    margin-top: 4px;
}

/* Hover effect to make it interactive */
.menu-item-simple:hover {
    padding-left: 10px;
    border-left: 2px solid var(--gold);
}

.italic {
    font-style: italic;
}
/* Heritage Theme Styling */
.heritage-parchment-section {
    background-color: #fcfaf7; /* Soft Parchment Color */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.heritage-column {
    padding: 20px;
    background: transparent;
}

/* Make the center column slightly different for visual interest */
.featured-center {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    border-radius: 2px;
}
/* Premium Image Styling */
.heritage-image-container {
    position: relative;
    padding: 20px;
}

.premium-shadow {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
    border-radius: 2px;
}

/* Decorative Gold Frame behind the image */
.gold-border-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 2px solid #c5a059;
    z-index: 1;
    transform: translate(-10px, -10px);
}

/* Typography and Button */
.gold-text {
    color: #c5a059;
}

.btn-outline-gold {
    color: #c5a059;
    border: 1px solid #c5a059;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-outline-gold:hover {
    background-color: #c5a059;
    color: white;
}
/* Full Screen Loader Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a; /* Dark Charcoal */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Loader Content */
.loader-content {
    text-align: center;
}

.loader-line {
    width: 0;
    height: 2px;
    background-color: #c5a059;
    margin-top: 10px;
    animation: lineGrow 0.8s forwards;
}

@keyframes lineGrow {
    to { width: 100%; }
}

/* Class to slide the loader out */
.loader-hidden {
    transform: translateY(-100%);
}

/* Class to slide the loader in (on button click) */
.loader-active {
    transform: translateY(0);
}
:root {
    --gold: #c5a059;
    --dark: #1a1a1a;
    --paper: #fdfaf5;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
}

.serif-font { font-family: 'Playfair Display', serif; }
.gold-text { color: var(--gold); }
.italic { font-style: italic; }

/* Scrapbook Specifics */
.scrapbook-bg { background-color: var(--paper); }

.scrapbook-item {
    position: relative;
    transition: all 0.5s ease;
}

/* 1. Polaroid Look */
.polaroid {
    background: white;
    padding: 15px 15px 60px 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.polaroid .caption {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #555;
    margin-top: 20px;
    text-align: center;
}

/* 2. Frames & Details */
.minimalist-frame img {
    border-left: 6px solid var(--gold);
    padding-left: 20px;
}

.vertical-frame img {
    aspect-ratio: 3/4;
    object-fit: cover;
}

.wide-img {
    height: 450px;
    object-fit: cover;
    width: 100%;
}

.handwritten-note {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.2rem;
}

/* 3. Washi Tape Effect */
.tape-effect::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 40px;
    background: rgba(197, 160, 89, 0.25);
    z-index: 5;
}

/* 4. Rotations */
.rotate-left { transform: rotate(-2deg); }
.rotate-right { transform: rotate(2deg); }

.scrapbook-item:hover {
    transform: rotate(0) scale(1.02);
    z-index: 10;
}

/* Diamond Divider */
.diamond-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

/* PAGE LOADER STYLES */
.loader-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #1a1a1a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-hidden { transform: translateY(-100%); }

.loader-line {
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin-top: 10px;
}
:root {
    --gold: #c5a059;
}

.serif-font { font-family: 'Playfair Display', serif; }

/* Image Container */
.gallery-item-wrap {
    position: relative;
    overflow: hidden;
    background-color: #000;
    cursor: pointer;
}

.gallery-main {
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
    display: block;
}

/* Panoramic specific height */
.panoramic .gallery-main {
    height: 450px;
    object-fit: cover;
}

/* Info Overlay */
.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-info .category {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

/* Hover States */
.gallery-item-wrap:hover .gallery-main {
    transform: scale(1.08);
    opacity: 0.7;
}

.gallery-item-wrap:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

/* Small Title Adjustment */
h4.serif-font.small {
    font-size: 1.2rem;
}
/* Booking Specific Styles */
.booking-image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.custom-input {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 12px 5px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #c5a059;
    background-color: #fafafa;
}

.btn-gold-booking {
    background-color: #c5a059;
    color: white;
    border: none;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-gold-booking:hover {
    background-color: #1a1a1a;
    letter-spacing: 5px;
    color: #c5a059;
}

.object-fit-cover {
    object-fit: cover;
}

.gold-text-heading {
    color: #c5a059;
    letter-spacing: 3px;
    font-size: 0.75rem;
}
/* Move everything to the extreme right */
@media (min-width: 992px) {
    .right-edge-fix {
        margin-right: -25px; /* Adjust this number to move it even further right */
    }
}

/* Ensure the nav-social-link doesn't have extra hidden padding */
.nav-social-link {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    color: #1a1a1a;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.nav-social-link:hover {
    color: #c5a059;
}

/* Optional: Make the button slightly smaller to create more space for icons */
.btn-gold {
    white-space: nowrap;
    border-radius: 0;
    font-size: 0.7rem;
    letter-spacing: 1px;
}