/* Import Google Fonts (Example: Playfair Display for headings, Lato for body) */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    /*FAF8F3 FAF7F0*/

    /* Candle Lit Romance Palette */
    --primary-color: #5E1914; /* Deep burgundy/wine red */
    --secondary-color: #FAF8F3; /* Off white */
    --accent-color-gold: #D4A76A; /* Deep gold */
    --text-color-dark: #5E1914; /* Deep burgundy text on light background */
    --text-color-light: #FAF8F3; /* ff white */
    --background-light: #FAF8F3; /* ff white */
    --background-dark: #5E1914; /* Deep burgundy background */
    --border-light: #E8A87C; /* Warm amber for subtle separation */

    /* Re-add original accent for reverted buttons */
    --original-accent-color: #5E1914; /* Dark Red from original */

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans-serif: 'Lato', sans-serif;

    /* Spacing & Borders */
    --section-padding: 80px 0; /* Increased padding */
    --container-padding: 0 25px;
    --border-radius: 3px; /* Subtle rounding */
}

/* --- Global Resets & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    /* Keep original font stack for reverted buttons */
    font-family: "neue-haas-grotesk-text", var(--font-sans-serif); /* Added fallback */
    color: var(--text-color-dark);
    background-color: var(--background-light);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 0.8em;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }

p {
    margin-bottom: 1em;
}

a {
    color: var(--accent-color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-color-dark);
}

/* --- Layout Containers --- */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* --- General Button Styles (Apply .button class) --- */
/* This style is available for NEW buttons, but not applied */
/* to the reverted hero/order buttons by default. */
.button {
    display: inline-block;
    background-color: var(--accent-color-gold);
    color: var(--text-color-light);
    padding: 12px 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    font-family: var(--font-sans-serif);
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.button:hover {
    background-color: #C09255; /* Darker gold */
    transform: translateY(-2px);
}

.button.button-light {
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
}

.button.button-light:hover {
    background-color: #F0E6D8; /* Slightly darker cream */
}

/* --- Navigation (.main-nav) --- */
/* Keeping the Grisette style for the nav itself */
.main-nav {
    position: fixed;
    width: 100%;
    padding: 10px 0;
    background: var(--background-light);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.3s ease, padding 0.3s ease;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

.main-nav.scrolled {
    background-color: rgba(249, 241, 230, 0.98); /* Soft cream with transparency */
    padding: 5px 20px;
    box-shadow: 0 2px 5px rgba(94, 25, 20, 0.05); /* Burgundy shadow */
}

.logo-container {
    display: flex;
    align-items: center;
    width: auto;
    justify-content: flex-start;
    margin: -5px 0;
}

.header-logo {
    height: 100px;
    width: auto;
    margin: -12px 0;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 200px 0 0; /* Added negative right margin to shift buttons left */
    flex-wrap: wrap;
    flex: 1;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 700;
    padding-bottom: 5px;
    position: relative;
    white-space: nowrap;
    /* Use original font for nav links if preferred */
    font-family: "neue-haas-grotesk-text", var(--font-sans-serif);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    display: block;
    margin-top: 4px;
    right: 0;
    background: var(--text-color-dark);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
    left: 0;
    background: var(--text-color-dark);
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center content vertically */
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                      url('images/baking_pizza.JPG');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--container-padding);
    position: relative; /* Needed for absolute positioning of the button */
    color: var(--text-color-light);
}

.hero-content {
     /* This div now acts as the container for positioning */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    position: relative; /* Make this the positioning context */
    padding-bottom: 80px; /* Add space for the button - adjust as needed */
    z-index: 1;
}

/* Keep original hero title SVG styling */
.hero-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: visible;
}

.subtitle-container {
    width: 100%;
    text-align: center;
    margin: 100px 0; /* Maintain similar spacing */
    position: relative;
}

.subtitle {
    font-family: var(--font-serif); /* Use Serif font */
    font-size: 70px; /* Same size as before */
    font-weight: 400; /* Normal weight */
    color: var(--text-color-light); /* Soft cream */
    margin: 0; /* Remove default margins */
    line-height: 1.2; /* Proper spacing between lines */
}


/* === REVERTED HERO CTA BUTTON STYLES === */
/* Positioning class for the hero button only */
.hero-button-position {
    position: absolute; /* Position relative to hero-content */
    /* Adjusted top value */
    top: 400px; /* Was 700px, increased by 50px */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    z-index: 2; /* Ensure button is visually on top of SVG potentially */
    transition: transform 0.2s ease; /* Add transition for transform property */
}

/* Visual styles for all CTA buttons */
.hero-cta-button {
    /* Original visual styles */
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--background-dark); /* Original Accent */
    color: white;
    text-decoration: none;
    font-size: 1rem; /* Original size */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Original spacing */
    border: none;
    border-radius: 4px; /* Original radius */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-family: "neue-haas-grotesk-text", sans-serif;
}

.hero-cta-button:hover {
    background-color: #6b0000;
    color: white;/* Original darker shade */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transform: translateY(-2px); /* Default transform for non-positioned buttons */
}
/* === END REVERTED HERO CTA BUTTON STYLES === */


/* --- Content Sections --- */
.content-section {
    padding: var(--section-padding);
}

.dark-section {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}
.dark-section h1, .dark-section h2, .dark-section h3 { color: var(--text-color-light); }
.dark-section a { color: var(--accent-color-gold); }
.dark-section a:hover { color: var(--text-color-light); }

.large-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.5;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 1em;
    /* Use original font if preferred */
    /* font-family: "neue-haas-grotesk-text", sans-serif; */
}

/* --- Menu Styling (Keeping Grisette Style) --- */
.menu-section {
    margin-top: 60px;
    margin-bottom: 60px;
}
.menu-section h2,
.menu-section h3 { /* Target section titles */
    text-align: center;
    margin-bottom: 1.5em;
    font-family: var(--font-serif); /* Ensure serif */
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
    gap: 15px;
}
/* Targeting specific menu item structure from HTML */
.menu-item > h3 { /* Direct child H3 is the item name */
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px; /* Reset margin */
    flex-grow: 1; /* Allow name to take space */
    text-align: left; /* Align left */
}
.menu-item > span { /* Direct child SPAN is the item name */
     font-family: var(--font-serif);
     font-weight: 400; /* Normal weight for simple items */
     font-size: 1.1rem;
     flex-grow: 1;
     text-align: left;
}
.menu-item .item-name { /* Container for name + note */
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
    text-align: left;
}
.menu-item .item-name h3 { /* Item name inside .item-name */
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0; /* Reset margin */
    text-align: left;
}

.menu-item .description {
    font-size: 0.95rem;
    color: #8C5E58; /* Muted burgundy */
    margin-bottom: 5px;
    font-family: var(--font-sans-serif); /* Sans-serif for description */
}

.dietary-note {
    font-size: 0.8rem;
    color: #A67F76; /* Warm gray */
    font-style: italic;
    margin-top: -2px; /* Adjust spacing */
    font-family: var(--font-sans-serif);
}
/* Price styling */
.price-group {
    display: flex;
    align-items: baseline;
    gap: 8px; /* Space around divider */
    white-space: nowrap;
}
.price {
    font-family: var(--font-sans-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color-dark);
}
.price-divider {
    font-size: 1rem;
    color: #C9B19A; /* Light gold */
}
.catering-note {
    font-family: var(--font-sans-serif);
    font-style: italic;
    color: #8C5E58; /* Muted burgundy */
    margin-top: 15px;
    text-align: center;
}


/* --- Event Details (Keeping Grisette Style) --- */
.event-details {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    font-family: var(--font-sans-serif); /* Use sans-serif for event details */
}
.event-details p { margin-bottom: 0.5em; } /* Less space between lines */
.date, .time, .location {
    font-weight: 700;
}

/* === REVERTED ORDER BUTTON STYLES === */
/* Applied to buttons with class="order-button" like in Events section */
.order-button {
    background-color: var(--background-dark); /* Match hero-cta-button */
    color: white;
    padding: 8px 16px; /* Original padding */
    text-transform: uppercase;
    letter-spacing: 1px; /* Original spacing */
    font-size: 14px; /* Original size */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    /* Use original font */
    font-family: "neue-haas-grotesk-text", sans-serif;
    border-radius: 0; /* Assuming original had no radius */
    display: inline-block; /* Ensure it behaves like a block */
    margin-top: 15px; /* Add space above button */
}

.order-button:hover {
    background-color: #6b0000; /* Original darker shade */
    color: white; /* Keep text white on hover for visibility */
}
/* Style the nav order button slightly differently if needed */
/* This rule is specific to the A tag inside the nav */
.main-nav a.order-button {
    /* Inherits general .order-button, add overrides if needed */
    padding: 8px 16px !important; /* Ensure padding overrides nav link padding */
    border-radius: 2px; /* Subtle radius for nav button */
    /* font-size: 13px; */ /* Optional smaller size for nav */
}
.main-nav a.order-button:hover {
     background-color: #6b0000; /* Hover consistent */
     color: white; /* Keep text white on hover for visibility */
}
.main-nav a.order-button::after {
    display: none; /* Remove underline effect from nav order button */
}

/* === END REVERTED ORDER BUTTON STYLES === */

/* --- Contact / Social (Keeping Grisette Style) --- */
.contact-section {
    text-align: center;
}
.contact-section p {
    font-family: var(--font-sans-serif);
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: var(--text-color-dark);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color-gold);
}

/* --- Full Width Image Section (Keeping Grisette Style) --- */
.image-break {
    width: 100%;
    padding: 0;
    margin: var(--section-padding) 0;
    background: transparent;
}

.full-width-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- No Events Page (Keeping Grisette Style) --- */
.no-events-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px var(--container-padding);
    background: var(--background-light);
    width: 100%;
}

.message-box {
    background: var(--background-light);
    padding: 50px 40px;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    border: 1px solid var(--border-light);
    max-width: 600px;
    width: 100%;
}

.message-box h1 { font-size: 1.8rem; margin-bottom: 0.8em; }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
    padding: 0;
}

.order-button {
    color: white;
}
/* And keep your existing hover state if needed */

/* Style buttons inside .cta-buttons using the REVERTED .order-button style */
.cta-buttons .button,
.cta-buttons .order-button { /* Target either class if used */
    /* Apply reverted style */
    background-color: var(--original-accent-color);
    color: #ffffff;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "neue-haas-grotesk-text", sans-serif;
    border-radius: 0;
    display: inline-block;
    margin: 5px 0; /* Add slight vertical margin when wrapped */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Match hero-cta-button */
}
.cta-buttons .button:hover,
.cta-buttons .order-button:hover {
    background-color: #6b0000; /* Original darker shade - consistent with other buttons */
    color: white; /* Keep text white on hover for visibility */
}

.main-nav .order-button {
    color: white !important;
    text-decoration: none;
}

.main-nav .order-button:hover {
    color: white !important;
}

#menu .pizza-size-note {
    font-family: var(--font-sans-serif); /* Use sans-serif for a note */
    font-size: 0.9rem; /* Roughly 50% of the base h3 size (1.8rem) */
    font-weight: 400; /* Normal weight, less emphasis */
    text-align: left; /* Center align */
    color: #8C5E58; /* Muted burgundy */
    margin-top: -0.5em; /* Pull closer to the h2 above */
    margin-bottom: 1.5em; /* Add space before menu items start */
    line-height: 1.4;
}


/* --- Font Loading (Keep if using local fonts) --- */

/* --- Responsive Adjustments --- */

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.0rem; }
    .large-text { font-size: 1.6rem; }

    /* Adjust subtitle text size */
    .subtitle { font-size: 50px; }
    /* Adjust button position */
    .hero-button-position { top: 350px; } /* *** Adjust this value *** */
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    :root { --section-padding: 60px 0; }
    .container { padding: 0 20px; }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .large-text { font-size: 1.4rem; }

    .main-nav { padding: 5px 10px; }
    .main-nav ul { gap: 20px; margin: 0 -45px 0 0; /* Maintain left shift with intermediate value */ }
    .main-nav a { font-size: 0.8rem; letter-spacing: 1px;}
    .header-logo { height: 90px; margin: -3px 0; }

    .hero { height: 85vh; background-attachment: scroll; }

    /* Adjust subtitle text size */
    .subtitle-container { margin: 80px 0; }
    .subtitle { font-size: 45px; }
    /* Adjust button position */
    .hero-cta-button {
        padding: 10px 22px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    /* Adjust positioned button */
    .hero-button-position {
        top: 300px; /* Was 580px, increased by 50px */
    }

    /* Reverted Order Button Responsive */
    .order-button {
        padding: 6px 12px;
        font-size: 13px;
    }
    /* Reverted Nav Order Button Responsive */
     .main-nav a.order-button {
        padding: 6px 12px !important;
        font-size: 13px; /* Match general responsive */
    }

    .menu-item { flex-direction: column; align-items: flex-start; }
    .menu-item > h3, .menu-item > span, .menu-item .item-name { text-align: left; width: 100%; } /* Ensure full width */
    .price-group { margin-top: 8px; justify-content: flex-start; } /* Align left */

    .message-box { padding: 40px 25px; }
    .cta-buttons { flex-direction: column; gap: 15px; align-items: center;}
    .cta-buttons .button,
    .cta-buttons .order-button { /* Stacked buttons */
        width: 100%;
        max-width: 300px;
        /* Apply reverted responsive style */
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    body { font-size: 14px; }
    :root { --section-padding: 50px 0; }
    .container { padding: 0 15px; }

    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.6rem; }
    .large-text { font-size: 1.2rem; }

    .main-nav { flex-direction: row; padding: 3px 8px; }
    .main-nav ul { gap: 12px; justify-content: center; margin: 0 -30px 0 0; /* Maintain left shift but with smaller value */ }
    .main-nav a { font-size: 0.7rem; letter-spacing: 0.8px; }
    .main-nav a::after { margin-top: 2px; }
    .header-logo { height: 70px; margin: -2px 0; }

    .hero { height: 75vh; }

    /* Adjust subtitle text size */
    .subtitle-container { margin: 60px 0; } /* Adjust margins */
    .subtitle { font-size: 35px; } /* Smaller text */
    /* Adjust button position */
    .hero-cta-button {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    /* Adjust positioned button */
    .hero-button-position {
        top: 250px; /* Was 480px, increased by 50px */
    }

    /* Reverted Order Button Responsive */
    .order-button {
        padding: 5px 10px;
        font-size: 12px;
    }
    /* Reverted Nav Order Button Responsive */
     .main-nav a.order-button {
        padding: 5px 10px !important;
        font-size: 12px; /* Match general responsive */
    }

    .cta-buttons .button,
    .cta-buttons .order-button {
        padding: 5px 10px;
        font-size: 12px;
    }

    .message-box { padding: 30px 15px; }
    .social-links a { font-size: 1.3rem; }

     /* Adjust menu price font size */
    .price { font-size: 1rem; }
    .price-group { gap: 5px; }
}

/* Original specific responsive styles for reverted buttons */
@media (max-width: 360px) {
    /* Reverted Nav Order Button Responsive */
     .main-nav a.order-button {
        padding: 3px 6px !important;
        font-size: 10px;
    }
}

/* Masonry Gallery with Parallax Effect */
.masonry-gallery {
    width: 100%;
    padding: 40px 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 15px;
    padding: 0 20px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.4s ease;
    transform-origin: center;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.masonry-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(94, 25, 20, 0.8)); /* Burgundy gradient */
    color: var(--text-color-light); /* Soft cream */
    padding: 20px 15px 15px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.masonry-item:hover .caption {
    opacity: 1;
    transform: translateY(0);
}

/* Item sizes and positions based on the new layout */
.masonry-item.large {
    grid-column: 1 / span 6;
    grid-row: 1 / span 4;
}

.masonry-item.vertical-half:nth-of-type(2) {
    grid-column: 7 / span 6;
    grid-row: 1 / span 2;
}

.masonry-item.vertical-half:nth-of-type(3) {
    grid-column: 7 / span 6;
    grid-row: 3 / span 2;
}

.masonry-item.wide-medium {
    grid-column: 1 / span 6;
    grid-row: 5 / span 3;
}

.masonry-item.wide-event {
    grid-column: 7 / span 6;
    grid-row: 5 / span 3;
}

.masonry-item.medium {
    grid-column: 1 / span 6; 
    grid-row: 8 / span 3;
}

/* Parallax scroll effect */
.masonry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.masonry-item:hover::before {
    background: rgba(94, 25, 20, 0.1); /* Burgundy overlay */
}

/* Add subtle grain texture overlay */
.masonry-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,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');
    opacity: 0.05;
    pointer-events: none;
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
    }

    .masonry-item.large {
        grid-column: 1 / span 6;
        grid-row: span 4;
    }

    .masonry-item.vertical-half:nth-of-type(2),
    .masonry-item.vertical-half:nth-of-type(3) {
        grid-column: 1 / span 3;
        grid-row: span 3;
    }

    .masonry-item.vertical-half:nth-of-type(2) {
        grid-column: 1 / span 3;
    }

    .masonry-item.vertical-half:nth-of-type(3) {
        grid-column: 4 / span 3;
    }

    .masonry-item.wide-medium,
    .masonry-item.wide-event,
    .masonry-item.medium {
        grid-column: 1 / span 6;
        grid-row: span 3;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .masonry-item.large,
    .masonry-item.vertical-half:nth-of-type(2),
    .masonry-item.vertical-half:nth-of-type(3),
    .masonry-item.wide-medium,
    .masonry-item.wide-event,
    .masonry-item.medium {
        grid-column: 1 / span 1;
        grid-row: auto;
        height: 300px;
    }
}

/* Full-height contact section styles */
.full-height-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    background-color: var(--background-light);
    z-index: 1;
}

/* Add subtle grain background to contact section */
.full-height-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,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');
    opacity: 0.03;
    z-index: -1;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.contact-heading {
    font-size: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: var(--font-serif);
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-card h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    border-bottom: 2px solid var(--accent-color-gold);
    padding-bottom: 10px;
    text-align: center;
}

.contact-card p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-card i {
    color: var(--accent-color-gold);
    margin-right: 10px;
}

.social-links-container {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.social-links-container h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    color: var(--text-color-dark);
    font-size: 2rem;
    transition: all 0.3s ease;
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-links a:hover {
    color: var(--accent-color-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Media queries for responsive contact section */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 2rem;
    }

    .contact-card {
        min-width: 100%;
    }

    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
}
