/* ===== @FONT-FACE — Local Font Files ===== */

@font-face {
    font-family: 'mailman';
    src: url('../fonts/MailmanRegular-R9exe.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'semplicita-pro';
    src: url('../fonts/SemplicitaPro-Regular.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'scotch-display';
    src: url('../fonts/Scotch Display Regular.otf') format('opentype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-plum: #5a4349;
    --color-plum-dark: #4a353e;
    --color-gold: #b5a074;
    --color-gold-hover: #a08a5e;
    --color-sage: #a5a88f;
    --color-copper: #8b6254;
    --color-cream: #edeae8;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-body: 'semplicita-pro', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'mailman', cursive;
    --font-display: 'scotch-display', Georgia, serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h2 {
    font-family: var(--font-heading);
}

h3 {
    font-family: var(--font-display);
}

h4, h5 {
    font-family: var(--font-body);
}

h6 {
    font-family: var(--font-display);
}

p {
    font-family: var(--font-body);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: transparent;
}

.site-header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.site-header.scrolled .header-logo img {
    height: 38px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--color-gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: var(--color-white);
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--color-gold);
}

.btn-gift {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-plum);
    color: var(--color-white);
    padding: 14px 26px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    transition: var(--transition);
}

.btn-gift svg {
    flex-shrink: 0;
}

.btn-gift:hover {
    background-color: var(--color-plum-dark);
    border-color: var(--color-gold);
}

/* Mobile Gift Voucher Bar (between header and hero, index only) */
.mobile-gift-bar {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding: 20px;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    max-width: 400px;
    margin: 0 auto;
}

.hero-logo .logo-main {
    font-family: var(--font-heading);
    font-size: 90px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-logo .logo-main .logo-number {
    font-size: 70px;
}

.hero-logo .logo-sub {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 300;
    display: block;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.5);
    padding-top: 10px;
    display: inline-block;
}

.hero-tagline {
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--color-gold);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    background-color: rgba(181, 160, 116, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero .hero-bg::after {
    background: rgba(0, 0, 0, 0.4);
}

.page-hero .hero-content h1 {
    font-family: var(--font-heading);
    font-size: 138px;
    font-weight: 400;
    color: var(--color-white);
}

/* ===== MARQUEE ===== */
.marquee {
    background-color: var(--color-gold);
    overflow: hidden;
    padding: 18px 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    flex-shrink: 0;
}

.marquee-dot {
    width: 6px !important;
    height: 6px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: inline-block;
    opacity: 0.6;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

.section-script-heading {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 400;
    margin-bottom: 30px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-subheading {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.section-plum {
    background-color: var(--color-plum);
    color: var(--color-white);
    text-align: center;
    padding: 80px 20px;
}

.section-plum .section-script-heading {
    color: var(--color-white);
}

.section-plum p {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 18px;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.section-plum p.lead {
    font-style: normal;
    font-size: 20.4px;
    font-weight: 700;
}

/* ===== PARALLAX SECTION ===== */
.parallax-section {
    position: relative;
    height: 70vh;
    min-height: 450px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 700px;
    padding: 20px;
}

.parallax-content p {
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 15px;
}

.parallax-content .highlight-text {
    font-size: 26.4px;
    font-weight: 400;
    margin-top: 20px;
}

/* ===== FEATURE CARDS ===== */
.section-cream {
    background-color: var(--color-cream);
    padding: 80px 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
}

.feature-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 27.6px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-plum);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== MENU / EXPERIENCE SECTION ===== */
.section-sage {
    background-color: var(--color-sage);
    color: var(--color-white);
    text-align: center;
    padding: 80px 20px 0;
}

.section-sage .section-script-heading {
    color: var(--color-white);
}

.section-sage p {
    font-style: italic;
    font-size: 15px;
    margin-bottom: 30px;
}

.menu-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-menu {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--color-gold);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background-color: rgba(181, 160, 116, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.btn-menu:hover,
.btn-menu.active {
    background-color: var(--color-gold);
}

/* ===== MENU TABS ===== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--color-gold);
}

.menu-tab {
    padding: 14px 32px;
    border: none;
    background: none;
    color: var(--color-plum);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    opacity: 0.7;
}

.menu-tab:hover {
    opacity: 1;
    background-color: rgba(181, 160, 116, 0.15);
}

.menu-tab.active {
    opacity: 1;
    background-color: var(--color-gold);
    color: var(--color-white);
}

.menu-tab-content {
    max-width: 700px;
    margin: 0 auto;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* ===== WEB MENU ===== */
.web-menu {
    text-align: center;
    padding: 30px 0 40px;
}

.menu-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-plum);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.menu-category {
    margin-bottom: 35px;
}

.menu-category-heading {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(181, 160, 116, 0.3);
    display: inline-block;
}

.menu-item {
    margin-bottom: 18px;
}

.menu-item .dish-name {
    display: block;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-plum);
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.menu-item .dish-desc {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-light);
    font-style: italic;
    letter-spacing: 0.3px;
}

.menu-item .dish-price {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gold);
    margin-top: 4px;
}

.menu-item .dish-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 1px;
    margin-top: 4px;
}

.menu-note {
    margin-top: 35px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    font-style: italic;
    line-height: 1.8;
}

.menu-allergen-key {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(90, 67, 73, 0.2);
    font-size: 12px;
    color: var(--color-text-light);
}

.menu-allergen-key strong {
    color: var(--color-gold);
}

.menu-allergen-notice {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 15px;
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.menu-coming-soon {
    font-size: 16px;
    color: var(--color-text-light);
    font-style: italic;
    padding: 60px 0;
}

.food-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.food-gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ===== FOOD GALLERY SECTION ===== */
.food-gallery-section {
    padding: 0;
}

.food-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.food-gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .food-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .food-gallery-grid img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .food-gallery-grid {
        grid-template-columns: 1fr;
    }
    .food-gallery-grid img {
        height: 250px;
    }
}

/* ===== MAILING LIST SECTION ===== */
.section-mailing {
    background-color: var(--color-plum);
    color: var(--color-white);
    text-align: center;
    padding: 60px 20px;
}

.section-mailing .section-script-heading {
    color: var(--color-white);
    margin-bottom: 15px;
}

.section-mailing p {
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 25px;
}

.mailing-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.mailing-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    outline: none;
}

.mailing-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.6);
}

.mailing-form button {
    padding: 12px 25px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.mailing-form button:hover {
    background-color: var(--color-gold-hover);
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 300;
}

.footer-contact a {
    color: var(--color-white);
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.btn-find {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: var(--transition);
}

.btn-find:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.footer-hours {
    text-align: center;
}

.footer-hours h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-hours h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.footer-hours h4::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.footer-hours p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
}

.footer-image {
    text-align: center;
}

.footer-image img {
    max-width: 250px;
    margin: 0 auto;
}

.footer-image-caption {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* ===== BOOKING SECTION ===== */
.section-booking {
    background-color: var(--color-white);
    background-image: url('../images/restaurant-pattern.svg');
    background-repeat: repeat;
    background-size: 250px 250px;
    text-align: center;
    padding: 60px 20px 80px;
}

.section-booking .section-script-heading {
    color: var(--color-plum);
    margin-bottom: 30px;
}

.booking-widget {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 4px;
}

/* ===== QUAY HOSPITALITY GROUP ===== */
.section-quay {
    background-color: var(--color-white);
    text-align: center;
    padding: 50px 20px;
}

.quay-content {
    max-width: 800px;
    margin: 0 auto;
}

.quay-content img {
    max-width: 200px;
    margin: 0 auto 20px;
}

.quay-content .eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.quay-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--color-plum);
}

.quay-group-image {
    max-width: 100% !important;
    margin-top: 30px !important;
}

.footer-logo {
    display: block;
    width: 80px;
    height: auto;
    margin: 0 auto 15px;
}

/* ===== FOOTER BOTTOM BAR ===== */
.footer-bottom {
    background-color: #111;
    padding: 20px;
    text-align: center;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.footer-bottom a:hover {
    color: var(--color-gold);
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    padding: 80px 20px;
    background-color: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 100px;
    color: var(--color-plum);
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 15px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info .info-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-gold);
}

.contact-form h2 {
    font-family: var(--font-heading);
    font-size: 100px;
    color: var(--color-plum);
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--color-text);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text);
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--color-gold);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.btn-submit {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--color-plum);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--color-plum-dark);
}

.form-message {
    padding: 15px;
    margin-top: 15px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===== SPECIAL OFFERS ===== */
.special-offers {
    background-color: var(--color-cream);
    padding: 80px 20px;
}

.offers-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.offer-card-image {
    width: 100%;
    overflow: hidden;
}

.offer-card-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-card-image img {
    transform: scale(1.03);
}

.offer-card-content {
    padding: 25px;
    text-align: center;
}

.offer-card-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-plum);
    margin-bottom: 8px;
}

.offer-card-price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.offer-card-content p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ===== WHATS ON / EVENTS ===== */
.events-section {
    padding: 80px 20px;
    background-color: var(--color-cream);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.event-card {
    background: var(--color-white);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.event-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.event-card-body {
    padding: 30px;
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: 25.3px;
    font-weight: 400;
    color: var(--color-plum);
    margin-bottom: 10px;
}

.event-card .event-date {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.event-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-light);
}

.event-schedule {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid rgba(90, 67, 73, 0.15);
}

.event-schedule p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 4px;
    color: var(--color-text);
}

.event-schedule p strong {
    color: var(--color-plum);
}

/* ===== OFFERS SECTION ===== */
.offers-section {
    background-color: var(--color-dark);
    overflow: hidden;
}

.offers-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.offer-block {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

.offer-block-image {
    height: 350px;
    overflow: hidden;
}

.offer-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.offer-block:hover .offer-block-image img {
    transform: scale(1.03);
}

.offer-block-content {
    padding: 40px 40px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 2px solid var(--color-gold);
}

.offer-block-content h3 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1.1;
}

.offer-block-content .offer-time {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.offer-block-content .offer-price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.offer-block-content .offer-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.offer-block-content .offer-desc strong {
    color: var(--color-white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .offers-dual-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 25px;
    }

    .offer-block-image {
        height: 280px;
    }

    .offer-block-content h3 {
        font-size: 40px;
    }

    .offer-block-content .offer-price {
        font-size: 28px;
    }

    .offer-block-content {
        padding: 30px 25px;
    }
}

/* ===== WEEKEND EVENTS ===== */
.weekend-events {
    background-color: var(--color-plum);
    padding: 80px 20px;
}

.weekend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.weekend-card {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    overflow: hidden;
}

.weekend-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 25px 15px;
    background-color: var(--color-cream);
}

.weekend-day-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    color: var(--color-plum);
    line-height: 1;
}

.weekend-day-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-plum);
    margin-top: 2px;
}

.weekend-details {
    padding: 20px 25px;
}

.weekend-details h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-plum);
    margin-bottom: 4px;
}

.weekend-details .weekend-role {
    font-size: 13px;
    font-weight: 300;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.weekend-details .weekend-time {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text);
}

@media (max-width: 992px) {
    .weekend-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

/* ===== FOOD / MENU PAGE ===== */
.menu-section {
    padding: 80px 20px;
    background-color: var(--color-cream);
    text-align: center;
}

.menu-section .section-script-heading {
    color: var(--color-plum);
}

.menu-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
}

.menu-downloads {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 60px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border: 1px solid var(--color-gold);
    color: var(--color-text);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-download:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.menu-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ===== GIFT VOUCHERS ===== */
.voucher-section {
    padding: 80px 20px;
    background-color: var(--color-cream);
    text-align: center;
}

.voucher-section .section-script-heading {
    color: var(--color-plum);
}

.voucher-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
}

.voucher-embed {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 80px 20px;
    background-color: var(--color-cream);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-plum);
    margin: 35px 0 15px;
}

.legal-content h3 {
    font-size: 20.7px;
    font-weight: 500;
    color: var(--color-text);
    margin: 25px 0 10px;
}

.legal-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 10px 0 20px 25px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 5px;
}

.legal-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-plum);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: right 0.4s ease;
        padding: 20px;
    }

    .main-nav.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
    }

    .header-logo {
        order: 2;
    }

    .header-right {
        order: 1;
        width: 100%;
        justify-content: center;
        margin-bottom: 5px;
    }

    .header-right .social-icons,
    .header-right .menu-toggle {
        position: absolute;
    }

    .header-right .menu-toggle {
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-right .social-icons {
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-nav {
        order: 3;
    }

    .btn-gift {
        display: none !important;
    }

    .mobile-gift-bar {
        display: flex;
        justify-content: center;
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        z-index: 999;
        padding: 8px 20px;
        background-color: transparent;
        transition: top 0.3s ease;
    }

    .site-header.scrolled + .mobile-gift-bar {
        top: 58px;
    }

    .mobile-gift-bar .btn-gift {
        display: inline-flex !important;
        padding: 10px 18px;
        font-size: 10px;
        letter-spacing: 1.75px;
        gap: 7px;
    }

    .mobile-gift-bar .btn-gift svg {
        width: 10px;
        height: 10px;
    }

    .hero-logo .logo-main {
        font-size: 60px;
    }

    .hero-logo .logo-main .logo-number {
        font-size: 48px;
    }

    .section-script-heading {
        font-size: 68px;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 34px;
    }

    .legal-content h2 {
        font-size: 48px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 500px;
    }

    .food-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .offers-card-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .events-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }

    .menu-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero .hero-content h1 {
        font-size: 80px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-logo .logo-main {
        font-size: 45px;
    }

    .hero-logo .logo-main .logo-number {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .section {
        padding: 60px 0;
    }

    .section-script-heading {
        font-size: 57px;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 28px;
    }

    .legal-content h2 {
        font-size: 40px;
    }

    .parallax-section {
        background-attachment: scroll;
        height: 50vh;
    }

    .menu-buttons {
        gap: 10px;
    }

    .btn-menu {
        padding: 10px 20px;
        font-size: 11px;
    }

    .food-gallery img {
        height: 200px;
    }

    .mailing-form {
        flex-direction: column;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }

    .page-hero {
        height: 40vh;
        min-height: 280px;
    }

    .page-hero .hero-content h1 {
        font-size: 60px;
    }

    .page-hero .hero-content h1.food-title {
        font-size: 112px !important;
    }

}

@media (max-width: 480px) {
    .header-right .social-icons {
        display: none;
    }

    .hero-logo .logo-main {
        font-size: 36px;
    }

    .food-gallery {
        grid-template-columns: 1fr;
    }

    .menu-image-grid {
        grid-template-columns: 1fr;
    }
}
