* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a; 
    background-color: #989797; /* Main Silver Background */
    line-height: 1.6;
}

h1, h2, h3, .logo-main, .hero-subtitle {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

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

section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #111111;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
}

/* Header Navigation Styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #989797; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
    border-bottom: 2px solid #989797; 
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 3px;
    margin-top: 2px;
    text-transform: uppercase;
}

header nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
}

header nav a:hover {
    color: #ffffff;
}

/* Hero Section with Storefront Image */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('vivido front.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #eaeaea;
    letter-spacing: 6px;
    margin-top: 0px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Vouchers Section Layout Framework */
.vouchers-section {
    background-color: #a6a5a5; 
}

.vouchers-split-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr; 
    gap: 40px;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.vouchers-text-side {
    text-align: center;
}

.voucher-intro {
    color: #111111;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.vouchers-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.voucher-display-graphic {
    width: 100%;
    max-width: 480px;
    height: auto;
    border: 3px solid #c4c3c3; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.close-by-section {
    background-color: #a6a5a5;
    text-align: center;
}

/* Menu Layout Panels */
.menu-section {
    background-color: #989797;
}

.menu-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.menu-image-box {
    background-color: #a6a5a5;
    padding: 15px;
    border: 2px solid #c4c3c3; 
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu-image-box:hover {
    transform: scale(1.02);
    background-color: #b8b7b7;
}

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

.menu-sidebar-desc, .menu-description-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.menu-description-text h3 {
    color: #111111;
    margin-bottom: 15px;
}

.menu-description-text p {
    margin-bottom: 15px;
    color: #222222;
}

/* Dietary Info Box */
.dietary-info-box {
    max-width: 800px;
    margin: 40px auto 0 auto;
    background-color: #e8e8e8; 
    border-left: 4px solid #c4c3c3; 
    padding: 25px 30px;
    text-align: left;
    border-top: 1px solid #c4c3c3;    
    border-right: 1px solid #c4c3c3;  
    border-bottom: 1px solid #c4c3c3; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.dietary-info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.dietary-info-box p {
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.7;
}

.dietary-info-box p:last-child {
    margin-bottom: 0;
}

/* Slideshow Lightbox Structural Overlay System */
.lightbox-overlay {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.93);
    user-select: none;
}

.lightbox-scroll-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 80px; 
    overflow: hidden;
}

.lightbox-scroll-container.is-dragging {
    cursor: grabbing !important;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    display: block;
    object-fit: contain;
    transform-origin: center center;
    pointer-events: auto; 
    user-drag: none; 
    -webkit-user-drag: none;
}

.lightbox-content.pannable {
    cursor: grab;
}

.lightbox-content.pannable:active {
    cursor: grabbing;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 45px;
    font-weight: 200;
    cursor: pointer;
    z-index: 10002;
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
}

.lightbox-close:hover {
    color: #ff4a4a;
    opacity: 1;
}

/* Slide Navigation Action Arrows */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.5rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10005;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #111111;
    border-color: #ffffff;
}

.lightbox-arrow:active {
    transform: translateY(-50%) scale(0.92);
}

.arrow-left {
    left: 25px;
}

.arrow-right {
    right: 25px;
}

/* Menu Lightbox Zoom Slider UI Extensions */
.lightbox-zoom-container {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.85);
    padding: 12px 25px;
    border-radius: 30px;
    z-index: 10010;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-zoom-container i {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.7;
}

.zoom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 160px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: background 0.3s;
}

.zoom-slider:hover {
    background: rgba(255, 255, 255, 0.4);
}

.zoom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: transform 0.1s;
}

.zoom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.zoom-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: transform 0.1s;
}

.zoom-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.zoom-value-label {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

/* Contact Setup */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    color: #111111;
}

.contact-info p {
    color: #222222;
}

.contact-form h3 {
    text-align: center;
    color: #111111;
}

.reservation-subtitle {
    color: #222222;
    margin-bottom: 25px;
    text-align: center;
}

.widget-frame-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    width: 100%;
    margin: 0 auto;
}

.gallery-section {
    background-color: #989797;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Base structural gallery box configuration */
.gallery-item {
    position: relative; /* Essential context element for the overlay frame placement */
    overflow: hidden;
    height: 250px;
    border: 1px solid #c4c3c3; 
    cursor: pointer; 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
}

/* --- Dynamic Picture Descriptions Overlay System (Only loads if [data-desc] text exists) --- */
.gallery-page-only .gallery-item[data-desc]::after {
    content: attr(data-desc); /* Captures target caption data automatically from HTML layout markup[cite: 1, 2] */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.88); /* Elegant high-contrast matte dark backing translucent bar[cite: 1, 2] */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 10px;
    box-sizing: border-box;
    transform: translateY(100%); /* Stays perfectly out of visual grid space layout matrix frame bounds[cite: 1, 2] */
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 5;
}

/* Hover Interactivity Triggers (Only applied when description data layer exists)[cite: 1, 2] */
.gallery-page-only .gallery-item[data-desc]:hover::after {
    transform: translateY(0); /* Clean smooth slide-up effect into structural focus view layout bounding box[cite: 1, 2] */
}

.gallery-page-only .gallery-item[data-desc]:hover img {
    transform: scale(1.05);
    filter: brightness(0.75); /* Slight contrast background reduction context drop to elevate text visibility[cite: 1, 2] */
}

/* Centered Gallery Subsection Partition Accent Headers */
.gallery-subsection-header {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 20px;
    margin-bottom: 25px;
    margin-top: 40px;
}

.gallery-subsection-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #111111;
    font-weight: 600;
    white-space: nowrap;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-align: center;
}

.gallery-subsection-header::before,
.gallery-subsection-header .header-line {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #1a1a1a;
    opacity: 0.3;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border: none; 
    padding: 10px;
    background-color: #a6a5a5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

footer {
    background-color: #111; 
    text-align: center;
    padding: 40px 0;
    color: #888;
    border-top: 2px solid #1a1a1a; 
}

.socials-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-socials a,
.footer-socials a *,
.footer-socials .TA_socialButtonIcon,
.footer-socials .TA_socialButtonIcon * {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.footer-socials a {
    color: #666666;
    font-size: 1.3rem;
    transition: color 0.3s, transform 0.3s;
}

.footer-socials a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-socials .TA_socialButtonIcon {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.footer-socials .TA_socialButtonIcon ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
}

.footer-socials .TA_socialButtonIcon li {
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
}

.footer-socials .TA_socialButtonIcon img {
    width: 26px !important;
    height: 26px !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    filter: invert(44%) sepia(0%) saturate(0%) hue-rotate(135deg) brightness(92%) contrast(87%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials .TA_socialButtonIcon:hover img {
    transform: translateY(-2px);
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

footer p {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Centered Contact Form Framework */
.centered-form-container {
    max-width: 700px;
    margin: 40px auto 0 auto;
    text-align: center;
}

.centered-form-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #111111;
}

.form-instructions-subtitle {
    color: #222222;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.custom-contact-form {
    text-align: left;
    background-color: #e8e8e8; 
    padding: 35px;
    border: none; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555555;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    background-color: #ffffff; 
    border: none; 
    padding: 14px 18px;
    color: #464646;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #555555; 
}

.form-submit-btn {
    width: 100%;
    cursor: pointer;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    padding: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.contact-email-link, .contact-phone-link, .contact-address-link {
    color: #222222; 
    text-decoration: none; 
    font-weight: inherit;
    transition: color 0.3s ease;
}

.contact-email-link:hover, .contact-phone-link:hover, .contact-address-link:hover {
    color: #ffffff; 
}

@media(max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 20px;
        gap: 10px;
    }
    header nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    header nav a {
        margin-left: 0;
        font-size: 0.8rem;
        padding: 0 5px;
    }
    .menu-images-row {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    .vouchers-split-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Contact Form Responsive UI Patch */
    .form-row-double {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .custom-contact-form {
        padding: 20px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        -webkit-appearance: none;
        border-radius: 0;
    }
    
    .lightbox-scroll-container {
        padding: 20px 40px;
    }
    .lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .arrow-left { left: 10px; }
    .arrow-right { right: 10px; }
    .lightbox-zoom-container {
        width: 85%;
        bottom: 20px;
        padding: 10px 15px;
        gap: 10px;
    }
    .zoom-slider {
        flex: 1;
        width: auto;
    }
}