/*
Theme Name: Sands Point Preserve
Theme URI: https://sandspointpreserve.com
Author: Culinart Group
Author URI: https://culinartcateringcollection.com
Description: A modern, elegant WordPress theme for Sands Point Preserve venue website
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sands-point
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --primary-gold: #c9a961;
    --dark-green: #2c3e3a;
    --soft-cream: #f8f6f2;
    --deep-navy: #1a2634;
    --accent-copper: #b87333;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--deep-navy);
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   NAVIGATION
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* Updated: White gradient background (semi-transparent) */
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 255, 255, 0.92) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    flex-shrink: 0;
}

/* Updated: Bigger logo with 100% width */
.site-logo img,
.custom-logo-link img {
    width: 100% !important;
    height: auto !important;
    max-width: 180px;
    border-radius: 4px;
    object-fit: contain;
}

/* Center navigation */
.primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.main-navigation {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.main-navigation a {
    color: var(--dark-green);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--primary-gold);
}

/* Underline hover effect */
.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* NEW: Gold Contact Button (Far Right) */
.header-cta {
    flex-shrink: 0;
    margin-left: 1rem;
}

.contact-button {
    background: var(--primary-gold);
    color: white;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.contact-button:hover {
    background: #b8925a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    color: white;
}

.contact-button:active {
    transform: translateY(0);
}

/* Dropdown Menu */
.main-navigation {
    position: relative;
}

/* NEW: Gold Contact Button (Far Right) */
.header-cta {
    flex-shrink: 0;
    margin-left: 1rem;
}

.main-navigation li {
    position: relative;
}

.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1000;
}

.main-navigation li:hover > .sub-menu {
    display: block;
}

.main-navigation .sub-menu li {
    display: block;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-green);
    transition: all 0.3s ease;
}

.main-navigation .sub-menu a:hover {
    background: var(--soft-cream);
    color: var(--primary-gold);
    padding-left: 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 999;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    padding-top: 80px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-navigation {
    list-style: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-navigation li {
    border-bottom: 1px solid rgba(44, 62, 58, 0.1);
}

.mobile-navigation a {
    display: block;
    padding: 1.25rem 0;
    color: var(--dark-green);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-navigation a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    background: var(--primary-gold);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 2px;
    border: none;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-copper);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-green);
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--dark-green);
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--dark-green);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--dark-green);
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-light:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 58, 0.4), rgba(26, 38, 52, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.2);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero .hero-background::before {
    background: linear-gradient(135deg, rgba(44, 62, 58, 0.7), rgba(26, 38, 52, 0.6));
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.95;
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    z-index: 3;
    animation: slideUp 1s ease-out 1.1s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--dark-green);
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
    padding: 5rem 3rem;
}

.content-section.bg-cream {
    background: var(--soft-cream);
}

.content-section.bg-white {
    background: white;
}

.content-section.bg-dark {
    background: var(--dark-green);
    color: white;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-gold);
    font-weight: 500;
}

/* ========================================
   FEATURE CARDS
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* ========================================
   VENUE SECTIONS
   ======================================== */
.venue-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.venue-layout.reverse {
    direction: rtl;
}

.venue-layout.reverse > * {
    direction: ltr;
}

/* Food Service Layout (reuses venue layout structure) */
.food-service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.food-image-wrapper {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.food-image-wrapper:hover .food-image {
    transform: scale(1.05);
}

.food-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.food-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 1.25rem;
}

/* Catering Brands */
.catering-brands {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.brand-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.brand-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.brand-logo {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.caterer-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.brand-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.brand-link {
    color: var(--primary-gold);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-gold);
    transition: opacity 0.3s ease;
}

.brand-link:hover {
    opacity: 0.7;
}

.venue-image-wrapper {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.venue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.venue-image-wrapper:hover .venue-image {
    transform: scale(1.05);
}

.venue-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--primary-gold);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 2px;
    z-index: 2;
}

.venue-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.venue-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 1.25rem;
}

.venue-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(201, 169, 97, 0.08);
    border-radius: 4px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.spec-icon svg {
    width: 20px;
    height: 20px;
}

.spec-text {
    font-size: 0.95rem;
    color: var(--dark-green);
    font-weight: 500;
}

.venue-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-section {
    padding: 6rem 3rem;
    background: var(--dark-green);
    color: white;
    text-align: center;
}

.testimonial-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.stars {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* ========================================
   WEDDING & EVENTS PAGES
   ======================================== */
.wedding-gallery {
    width: 100%;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.gallery-item img,
.gallery-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.content-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.corporate-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.celebration-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.celebration-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--soft-cream);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.celebration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.celebration-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.celebration-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--dark-green);
}

/* ========================================
   EVENT PARTNERS PAGE
   ======================================== */
.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.category-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--dark-green);
    margin: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.partner-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.content-section.bg-cream .partner-card {
    background: white;
}

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

.partner-logo-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--soft-cream);
    border-radius: 4px;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.partner-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--deep-navy);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.partner-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 62, 58, 0.1);
}

.partner-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.partner-link:hover {
    color: var(--accent-copper);
    gap: 0.75rem;
}

.partner-link svg {
    flex-shrink: 0;
}

/* ========================================
   PHOTO GALLERY
   ======================================== */
.gallery-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.gallery-category-card {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.gallery-category-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-category-image img,
.gallery-category-image .gallery-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-category-card:hover .gallery-category-image img {
    transform: scale(1.1);
}

.gallery-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.9), rgba(184, 115, 51, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-category-card:hover .gallery-category-overlay {
    opacity: 1;
}

.gallery-category-icon {
    color: white;
}

.gallery-category-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--dark-green);
    padding: 1.5rem;
    margin: 0;
    background: white;
    text-align: center;
}

/* Gallery Masonry Layout */
.gallery-masonry {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-masonry-item img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-masonry-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 169, 97, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.gallery-masonry-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay svg {
    color: white;
}

/* Gallery Navigation Grid */
.gallery-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.gallery-nav-card {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.gallery-nav-card img,
.gallery-nav-card .gallery-placeholder {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-nav-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--dark-green);
    padding: 1rem;
    margin: 0;
    text-align: center;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 97, 0.8);
    color: white;
    border: none;
    font-size: 30px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-gold);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--soft-cream);
}

.footer-venues {
    padding: 4rem 0 3rem;
    background: white;
}

.footer-venues h3 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--dark-green);
    margin-bottom: 2.5rem;
}

.venues-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--dark-green);
}

.carousel-arrow:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-arrow-prev {
    left: 20px;
}

.carousel-arrow-next {
    right: 20px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-arrow-prev {
        left: 10px;
    }
    
    .carousel-arrow-next {
        right: 10px;
    }
}

.venues-carousel {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: 0 2rem;
    transition: transform 0.5s ease-in-out;
}


.venue-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
	padding: 50px;
}

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

.venue-card-image {
    width: 100%;
    height: 200px;
    object-fit: scale-down;
}

.venue-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark-green);
    padding: 1.25rem 1.5rem 0.5rem;
    margin: 0;
}

.venue-card p {
    font-size: 0.9rem;
    color: var(--deep-navy);
    opacity: 0.7;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.5;
}

.footer-main {
    background: linear-gradient(135deg, #c9a961 0%, #b89554 100%);
    padding: 3rem 3rem 2rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.footer-logo img {
    width: 120px;
    height: auto;
    max-height: 120px;
}

.footer-logo svg {
    width: 120px;
    height: 120px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.footer-logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: white;
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-info {
    text-align: right;
    color: white;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-address {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-address a {
    color: white;
    transition: opacity 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-address a:hover {
    opacity: 0.8;
}

.footer-phone {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-phone a {
    color: white;
    transition: opacity 0.3s ease;
}

.footer-phone a:hover {
    opacity: 0.8;
}

.footer-credit {
    font-size: 0.8rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.footer-credit a {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.footer-credit a:hover {
    border-color: white;
}

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .venue-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .venue-layout.reverse {
        direction: ltr;
    }

    .venue-image-wrapper {
        height: 400px;
    }

    .venue-specs {
        grid-template-columns: 1fr;
    }

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

    .food-service-layout,
    .catering-brands {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .food-image-wrapper {
        height: 400px;
    }

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

    .content-columns,
    .corporate-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .venues-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

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

    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 1.5rem;
    }

    .site-logo img,
    .custom-logo-link img {
        max-width: 60px !important;
    }

    .site-logo {
        font-size: 1.2rem;
    }

    .primary-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-hero {
        height: 50vh;
        min-height: 350px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .trust-bar {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

    .venue-content h2 {
        font-size: 2.2rem;
    }

    .venue-ctas {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-brand {
        align-items: center;
    }

    .venue-card {
        flex: 0 0 250px;
    }

    .footer-main {
        padding: 2rem 1.5rem;
    }

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

    .celebration-types {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-header h2 {
        font-size: 2rem;
    }

    .gallery-categories-grid,
    .gallery-nav-grid {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        column-count: 1;
    }

    .lightbox-prev,
    .lightbox-next {
        left: 10px;
        right: auto;
    }

    .lightbox-next {
        left: auto;
        right: 10px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}