/* Gallery Section Custom Styles */
.gallery-img img {
    transition: transform 0.4s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.gallery-img:hover img {
    transform: scale(1.07);
}
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;500;600&family=Arapey:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap'); */

body {
    font-family: 'Poppins', sans-serif;
}

html, body {
    /*overflow-x: clip;*/
    margin: 0;
}


.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-section {
    position: relative;
}



.hero-content {
    position: relative;
    z-index: 2;
}


.location-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.location-card::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px solid #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
    pointer-events: none;
}

.location-card:hover::after {
    opacity: 1;
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(139, 69, 19, 0.3), rgba(107, 142, 35, 0.4));
    z-index: 1;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover .location-overlay {
    opacity: 1;
}

.location-overlay p {
    color: white;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0 20px;
}

.divider-ornament {
    width: 150px;
    height: 40px;
    margin: 0 auto;
}

/* Image wrapper */
.dish-card .image-box {
    position: relative;
    overflow: hidden;
}

/* Corner diagonal lines */
.dish-card .image-box::before,
.dish-card .image-box::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 1.5px;
    background: #ffffff;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 6;
}

/* Top-right corner line */
.dish-card .image-box::before {
    top: 60px;
    right: -100px;
    transform: rotate(45deg);
}

/* Bottom-left corner line */
.dish-card .image-box::after {
    bottom: 60px;
    left: -100px;
    transform: rotate(45deg);
}

.dish-card:hover .image-box::before {
    right: -40px;
    opacity: 1;
}

.dish-card:hover .image-box::after {
    left: -40px;
    opacity: 1;
}

/* Pulse animation for video play button */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.pulse-btn {
    position: relative;
}

.pulse-btn::before,
.pulse-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.4);
    animation: pulse-ring 1.5s ease-out infinite;
    z-index: -1;
}

.pulse-btn::after {
    animation-delay: 0.5s;
}

.testimonial-quote-left,
.testimonial-quote-right {
    font-size: 6rem;
    line-height: 1;
    color: #dc2626;
    font-family: Georgia, serif;
}

/* Book on Resy pulse animation */
@keyframes book-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.7);
    }
    70% {
        box-shadow: 0 0 0 22px rgba(185, 28, 28, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(185, 28, 28, 0);
    }
}

.book-pulse-btn {
    animation: book-pulse 1.8s ease-out infinite;
}

/* Nav link hover color */
.nav-link:hover {
    color: rgb(221, 89, 3) !important;
}

/* ===== Private Dining Page ===== */
.private-dining-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .private-dining-container {
    max-width: 1100px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .private-dining-container {
    max-width: 1280px;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

.private-dining-heading {
    font-family: Arapey, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 58px;
    color: rgb(0, 0, 0);
}

.private-dining-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: rgb(0, 0, 0);
}
