* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  /* Pops Collective CIC Brand Colors - Extracted from Logo */
  --primary-blue: #003366;     /* Deep blue from logo background */
  --accent-blue: #004080;      /* Medium blue for accents */
  --light-blue: #0066cc;       /* Lighter blue for highlights */
  --navy-blue: #003366;        /* Primary brand color - mapped from logo */
  --charcoal-grey: #333333;     /* Dark gray for text */
  --black: #000000;             /* Pure black */
  --blush-cream: #f8f9fa;       /* Light background for contrast */
  
  /* Color System Mapping */
  --primary: #003366;           /* Primary Blue - Main brand color from logo */
  --secondary: #004080;         /* Accent Blue - Secondary elements */
  --accent: #0066cc;            /* Light Blue - Subtle accents and highlights */
  --dark: #333333;              /* Dark gray - Text on light backgrounds */
  --light: #f8f9fa;             /* Light gray - Light backgrounds */
  --white: #ffffff;             /* Pure white */
  --gray: #666666;              /* Medium gray - Gray elements */
  
  /* Utility Colors (kept for functionality) */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  
  /* Typography - Brand Guidelines */
  --heading-font: 'Raleway', sans-serif;      /* Premium sans-serif font for headings */
  --body-font: 'Raleway', sans-serif;         /* Primary font - Regular, Medium, Bold weights */
  
  /* Design Tokens */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* ====== Base & Reset ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Global link styles - no underlines by default */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  color: var(--dark);
  background: #ccbc9b;
  padding-top: 80px;
  overflow-x: hidden;
  line-height: 1.7;
  letter-spacing: 0.3px;
  font-weight: 400; /* Raleway Regular */
}

/* ====== Skip Link for Accessibility ====== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  text-decoration: none;
  border-radius: var(--border-radius);
  z-index: 10002;
  transition: var(--transition-smooth);
  font-weight: 500; /* Raleway Medium */
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus {
  top: 6px;
  opacity: 1;
  pointer-events: auto;
}

/* ====== Scroll Indicator ====== */

/* ====== Enhanced Section Spacing ====== */
section {
  padding: 6rem 0;
  position: relative;
  scroll-margin-top: 80px;
}

section:not(.hero):not(.parallax-section) {
  background: #ccbc9b;
  color: var(--dark);
}

/* ====== Loading Animations ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-logo {
  animation: fadeInScale 1s ease forwards;
}

.parallax-content {
  animation: fadeInUp 1.2s ease forwards;
}

/* ========== Header and Navigation ========== */
header {
  background: #e9ecef;
  backdrop-filter: blur(20px);
  color: var(--dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 10000;
  box-shadow: var(--shadow-subtle);
  border-bottom: 1px solid rgba(60, 60, 59, 0.2); /* Charcoal Grey with opacity */
}

.header-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 80px;
}

.header-logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

/* ===== Hamburger Toggle ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 28px;
  position: relative;
  z-index: 11001;
  padding: 0;
  flex-shrink: 0;
  margin-left: 0;
  z-index: 10000;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  position: absolute;
  left: 0;
  height: 3px;
  width: 32px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger { 
  top: 50%; 
  transform: translateY(-50%); 
}

.hamburger::before {
  content: "";
  top: -10px;
}

.hamburger::after {
  content: "";
  top: 10px;
}

.nav-toggle[aria-expanded="true"] .hamburger { 
  background-color: transparent; 
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
  background-color: var(--primary);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: var(--primary);
}

/* ===== Desktop Nav ===== */
.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  background: none;
  position: static;
  flex-direction: row;
}

.nav-link {
  color: var(--charcoal-grey);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link:focus {
  outline: none;
  color: var(--primary);
}

/* ===== Hero Section - Pops Collective CIC ===== */
.hero {
  position: relative;
  min-height: 85vh;
  background: #ccbc9b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--dark);
  padding: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
}

.hero-logo-section {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-logo {
  max-width: 450px;
  height: auto;
}

.hero-text-section {
  flex: 1 1 auto;
  text-align: left;
  max-width: 650px;
}

.hero-title {
  font-family: var(--body-font);
  font-size: 4.8rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  color: var(--dark);
  width: 100%;
}

.hero-tagline {
  font-family: var(--body-font);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.9;
  margin: 0;
}

.hero-quote {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin: 0 0 3rem 0;
  letter-spacing: 2px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-top: 20rem; /* Moved down double the previous distance */
}

/* Tablet breakpoint */
@media (min-width: 600px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .events-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 8rem; /* Double the spacing - Enquire button is ~50px wide, so 8rem gives plenty of space */
  }
}

.hero-cta {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 18px 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
  white-space: nowrap;
  border-radius: var(--border-radius);
}

.hero-cta:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* Enquire Advert */
.enquire-advert {
  position: relative;
  z-index: 3;
  text-align: center;
}

.enquire-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.enquire-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.enquire-subtitle {
  font-size: 1.1rem;
  margin: 0;
  color: var(--white);
  opacity: 0.9;
  font-weight: 400;
}

/* Feast by Fire Advert */
.feast-advert {
  position: relative;
  z-index: 3;
  text-align: center;
}

.feast-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.feast-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feast-subtitle {
  font-size: 1.1rem;
  margin: 0;
  color: var(--white);
  opacity: 0.9;
  font-weight: 400;
}

.feast-book-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 18px 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  border: 2px solid var(--white);
  white-space: nowrap;
}

.feast-book-btn:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Learn More Button (kept for other sections) */
.learn-more-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  min-height: 44px;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 2;
  letter-spacing: 0.5px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.learn-more-btn:hover {
  background: #003366;
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.learn-more-btn:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ===== Parallax Section ===== */
.parallax-section {
  position: relative;
  height: 100vh;
  background: url("assets/home-background.jpg") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(60, 60, 59, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.parallax-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 2rem;
  z-index: 2;
}

.parallax-header {
  font-family: var(--heading-font);
  font-size: 4rem;
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  letter-spacing: 3px;
}

.parallax-subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 3rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
  letter-spacing: 1px;
}

.parallax-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

.parallax-box p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

/* ====== Trust Indicators Section (now in footer) ====== */
.footer .trust-section {
  background: transparent;
  color: var(--white);
  padding: 4rem 0 3rem 0;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(60, 60, 59, 0.3);
  margin-bottom: 3rem;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: var(--blush-cream);
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
  border: 2px solid rgba(60, 60, 59, 0.1);
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--charcoal-grey));
  opacity: 0;
  transition: var(--transition-smooth);
}

.trust-badge:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(60, 60, 59, 0.2);
}

.trust-badge:hover::before {
  opacity: 1;
}

.trust-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 33, 71, 0.3);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

.trust-text {
  font-size: 1.1rem;
  font-weight: 700; /* Raleway Bold */
  letter-spacing: 0.3px;
  color: var(--primary);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

/* ===== Footer ===== */
.footer {
  background: #ccbc9b;
  color: var(--dark);
  padding: 0;
  position: relative;
}


.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
  align-items: start;
}

.footer-section h3 {
  font-family: var(--heading-font);
  color: var(--blush-cream);
  font-size: 1.6rem;
  margin: 0 0 1.5rem 0;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-section h4 {
  font-family: var(--heading-font);
  color: var(--blush-cream);
  font-size: 1.3rem;
  margin: 0 0 1.2rem 0;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.footer-section p {
  margin: 0.8rem 0;
  line-height: 1.7;
  opacity: 0.9;
  font-weight: 400;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-section ul li {
  margin-bottom: 0;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-weight: 500;
  opacity: 0.9;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--blush-cream);
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(60, 60, 59, 0.3);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(60, 60, 59, 0.5);
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: #ccbc9b;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.footer-copyright {
  margin: 0 0 1.5rem 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-branding p {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 0.95rem;
}

.oscol-link {
  display: inline-block;
  line-height: 0;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

.oscol-logo {
  width: 80px;
  height: auto;
  max-height: 40px;
  transition: var(--transition-smooth);
  display: block;
  object-fit: contain;
  filter: none;
  background: transparent;
  image-rendering: auto;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

.oscol-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===== About Section ===== */
.about-section {
  background: var(--white);
  padding: 5rem 0 2rem 0;
  position: relative;
  scroll-margin-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  background: transparent;
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 0;
}

.about-lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.8;
  margin: 0;
}

.section-title {
  font-family: var(--body-font);
  font-size: 3rem;
  text-align: center;
  margin: 0 0 1rem 0;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Meet Joe Section */
.meet-joe-section {
  background: #ccbc9b;
  padding: 2rem 0 4rem 0;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.about-image-wrapper {
  flex: 0 1 45%;
  display: flex;
  align-items: stretch;
}

.about-main-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  border: 4px solid var(--white);
  display: block;
  transition: var(--transition-smooth);
}

.about-main-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

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

.joe-portrait {
  max-width: 350px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  border: 4px solid var(--white);
  display: block;
}

.joe-portrait:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.about-card {
  flex: 1 1 55%;
  background: var(--white) !important;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(60, 60, 59, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.about-card h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 1.5rem 0;
  text-transform: lowercase;
  letter-spacing: 1.5px;
}

.about-text-content p {
  color: var(--charcoal-grey);
  font-size: 1.1rem;
  margin: 0 0 1.2rem 0;
  font-weight: 400;
  line-height: 1.7;
}

.about-text-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .about-image-wrapper {
    flex: 1 1 auto;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-main-image {
    height: auto;
    max-height: 450px;
  }
  
  .about-card {
    flex: 1 1 auto;
    padding: 2.5rem 2rem;
  }
}

.about-signature {
  color: var(--charcoal-grey);
  font-size: 1.1rem;
  margin-top: 0;
  text-align: left;
  font-weight: 400;
  line-height: 1.6;
}

/* ===== Services Section ===== */
.services-section {
  background: #ccbc9b;
  padding: 6rem 0 12rem 0;
  position: relative;
  color: var(--dark);
  min-height: 600px;
  width: 100%;
  display: block;
}

/* Slick Section Separator - Removed to keep pages completely clean */

@media (max-width: 768px) {
  .services-section {
    padding: 4rem 0 8rem 0;
  }
  
  .section-separator {
    margin: 4rem auto 0 auto;
    max-width: 80%;
  }
}

.services-section::before {
  display: none !important;
}

.services-section .container {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.services-section .section-title {
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  opacity: 1;
  margin: 1rem 0 0 0;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .business-services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    gap: 2.5rem;
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  border: 1px solid rgba(60, 60, 59, 0.1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.main-service {
  grid-column: span 1;
}

.service-cta {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition-smooth);
  margin-top: 1rem;
}

.service-cta:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
}

.service-content-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.section-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 50%;
}

.service-content-centered p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--dark);
}

.service-content-centered h3 {
  font-family: var(--body-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 2rem 0;
  line-height: 1.2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-medium);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.team-member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--light);
}

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

.team-member:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 2rem;
}

.team-member-info h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  color: var(--dark);
}

.team-member-role {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin: 0 0 1rem 0;
}

.team-member-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray);
  opacity: 1;
  margin: 0;
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #ccbc9b;
}

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

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

.service-content {
  padding: 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content .service-cta {
  margin-top: auto;
  align-self: flex-start;
}

.service-content h3 {
  font-family: var(--body-font);
  font-size: 2rem;
  margin: 0 0 1.5rem 0;
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-content p {
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal-grey);
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
}

.service-info-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  padding: 0.5rem 0.25rem;
  min-height: 44px;
  transition: all 0.3s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.service-info-link:hover {
  color: var(--charcoal-grey);
  transform: translateY(-2px);
}

.central-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-strong);
  position: relative;
  z-index: 2;
}

.central-card h2 {
  font-family: var(--body-font);
  color: var(--dark);
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
  letter-spacing: 0.5px;
}

/* ===== Contact Section ===== */
.contact-section {
  background: #ccbc9b;
  padding: 6rem 0;
  position: relative;
}

.contact-logo {
  max-width: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--border-radius);
  box-shadow: none;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.contact-logo:hover {
  transform: scale(1.05);
  box-shadow: none;
}

.contact-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ccbc9b;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(60, 60, 59, 0.15); /* Charcoal Grey with opacity */
}

.contact-card h2 {
  font-family: var(--heading-font);
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 2rem 0;
  text-align: center;
  letter-spacing: 2px;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--blush-cream);
  border-radius: var(--border-radius);
  flex-wrap: wrap;
}

.contact-items-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background: var(--primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-subtle);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon {
  background: var(--charcoal-grey);
  transform: scale(1.05);
}

.contact-item:hover .contact-details a {
  color: var(--charcoal-grey);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-details h4 {
  display: none; /* Hide labels on desktop */
}

.contact-details p {
  margin: 0;
  color: var(--primary);
  font-weight: 500;
  font-size: 1.1rem;
}

/* Contact Links - Remove underlines, add hover states */
.contact-details a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.contact-details a:hover {
  color: var(--charcoal-grey);
  transform: translateY(-2px);
}

.contact-details a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.contact-card form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  padding: 1rem 1.2rem;
  border: 2px solid rgba(60, 60, 59, 0.2); /* Charcoal Grey with opacity */
  border-radius: var(--border-radius);
  font-size: 16px; /* Prevents zoom on iOS */
  font-family: var(--body-font);
  background: var(--white);
  transition: var(--transition-smooth);
  -webkit-appearance: none;
  appearance: none;
}

.contact-card textarea { 
  min-height: 120px;
  resize: vertical;
}

.contact-card button[type="submit"] { 
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  min-height: 44px;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}

.contact-card select {
  cursor: pointer;
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  border-color: var(--charcoal-grey);
  box-shadow: 0 0 0 3px rgba(60, 60, 59, 0.1);
  transform: translateY(-1px);
  outline: none;
}

/* ====== Enhanced Form Styling ====== */
.contact-card input,
.contact-card textarea,
.contact-card select {
  transition: var(--transition-smooth);
}

.contact-card input:hover,
.contact-card textarea:hover,
.contact-card select:hover {
  border-color: var(--charcoal-grey);
  transform: translateY(-1px);
}

.contact-card button[type="submit"]:hover {
  background: #003366; /* Slightly lighter Navy Blue for hover */
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.contact-card button[type="submit"]:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.contact-card button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Newsletter Section */
.newsletter-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(60, 60, 59, 0.1);
  text-align: center;
}

.newsletter-section h3 {
  font-family: var(--heading-font);
  color: var(--primary);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
  letter-spacing: 1.5px;
}

.newsletter-text {
  font-size: 1.1rem;
  color: var(--charcoal-grey);
  margin: 0 0 1.5rem 0;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(60, 60, 59, 0.2);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--body-font);
}

.newsletter-submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: var(--charcoal-grey);
}

/* Booking Section */
.booking-section {
  background: #ccbc9b;
  padding: 6rem 0;
  position: relative;
}

.booking-section .section-title {
  color: var(--primary);
  margin-bottom: 3rem;
}

.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.booking-form {
  background: #ccbc9b;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.booking-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 500;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(60, 60, 59, 0.2);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--body-font);
  background: var(--white);
}

.booking-form textarea {
  resize: vertical;
}

.booking-submit-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1.2rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.booking-submit-btn:hover {
  background: var(--charcoal-grey);
}

/* ===== Modal Styles ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--blush-cream);
  margin: 15% auto;
  padding: 0;
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-strong);
  animation: modalSlideIn 0.3s ease-out;
  overflow: hidden;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  background: var(--primary);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.modal-header h3 {
  font-family: var(--heading-font);
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.modal-body {
  padding: 2.5rem;
  text-align: center;
}

.modal-body p {
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark);
  font-weight: 500;
}

/* Service Gallery Modal */
.service-gallery-modal {
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 2rem;
  padding-top: 82px;
  overflow-y: auto;
}

.service-gallery-modal .modal-content {
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background-color: var(--white);
}

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

.service-gallery-header {
  background: var(--primary);
  color: var(--white);
  padding: 2rem 3.5rem 2rem 2rem;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-gallery-header h3 {
  font-family: var(--heading-font);
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  flex: 1;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-close:active {
  transform: rotate(90deg) scale(0.9);
}

.service-gallery-body {
  padding: 2.5rem;
  background: var(--white);
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

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

.service-gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.service-gallery-grid img:hover {
  transform: scale(1.05);
}

.service-gallery-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--charcoal-grey);
  text-align: left;
  margin: 0;
  font-weight: 400;
}

.service-gallery-description p {
  margin: 0 0 1.2rem 0;
}

.service-gallery-description p:last-child {
  margin-bottom: 0;
}

.service-gallery-description strong {
  color: var(--primary);
  font-weight: 600;
}

/* Event Details Modal */
.event-details-modal {
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
  display: none !important;
  align-items: flex-start;
  justify-content: center;
  padding: 0 2rem;
  padding-top: 82px;
  overflow-y: auto;
}

.event-details-modal.show {
  display: flex !important;
}

.event-details-modal .modal-content {
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.event-details-header {
  background: var(--primary);
  color: var(--white);
  padding: 2rem 3.5rem 2rem 2rem;
  text-align: left;
  position: relative;
  flex-shrink: 0;
}

.event-details-header-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.event-details-header-text {
  flex: 1;
}

.event-details-header h3 {
  font-family: var(--heading-font);
  margin: 0 0 0.75rem 0;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.event-details-header .event-details-date {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.event-details-header .modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.event-details-header .modal-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.event-details-header .modal-close:active {
  transform: rotate(90deg) scale(0.9);
}

.event-details-body {
  padding: 0;
  background: var(--white);
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.event-details-image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  margin-bottom: 0;
}

.event-details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-details-info {
  padding: 2.5rem;
}

.event-details-info .event-details-date {
  display: none; /* Date is now in header */
}

.event-details-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--charcoal-grey);
  margin-bottom: 2rem;
  font-weight: 400;
}

.event-details-further-info {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--blush-cream);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary);
}

.event-details-further-info h4 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 0 1rem 0;
  font-weight: 400;
  letter-spacing: 1px;
}

.event-details-further-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal-grey);
  margin: 0;
}

.event-details-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--blush-cream);
  border-radius: var(--border-radius);
}

.event-details-cost,
.event-details-location {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--charcoal-grey);
}

.event-details-cost strong,
.event-details-location strong {
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-details-actions {
  text-align: center;
  margin-top: 2rem;
}

.event-book-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.event-book-btn:hover {
  background: var(--charcoal-grey);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.event-details-btn {
  background: var(--primary);
  color: var(--white) !important;
  border: none;
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  width: 100%;
  margin-top: 1rem;
  display: block;
  text-align: center;
  text-decoration: none !important;
  border-bottom: none !important;
  font-family: inherit;
}

.event-details-btn:hover {
  background: var(--charcoal-grey);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--white) !important;
  border-bottom: none !important;
}

/* Image Expansion Modal - SAVED FOR FUTURE USE
.image-expansion-modal .modal-content {
  max-width: 90vw;
  max-height: 90vh;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.image-expansion-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-expansion-content #expandedImage {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-strong);
}

.image-expansion-content .modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: var(--white);
  font-size: 3rem;
  z-index: 1;
}

.image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
}

.image-nav-btn {
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  padding: 1.5rem 1rem;
  font-size: 2.5rem;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: background 0.3s ease;
  pointer-events: auto;
}

.image-nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.image-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
*/

/* ===== Three Column Gallery Section ===== */
.three-column-gallery-section {
  background: #ccbc9b;
  padding: 6rem 0;
  position: relative;
  color: var(--dark);
}

.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
}

.gallery-column {
  background: #ccbc9b;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 2px solid rgba(60, 60, 59, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-column:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.gallery-column-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.gallery-column-image {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.gallery-column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-column:hover .gallery-column-image img {
  transform: scale(1.05);
}

.gallery-column-info {
  padding: 1.5rem;
  text-align: center;
  background: #ccbc9b;
}

/* Text-only gallery column styles */
.gallery-column-content.text-only {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.gallery-column-content.text-only .gallery-column-info {
  padding: 2rem;
  background: transparent;
  width: 100%;
}

.gallery-column-content.text-only h3 {
  font-family: var(--body-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 1rem 0;
}

.gallery-column-content.text-only p {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--dark);
  margin: 0;
  opacity: 0.8;
}

.gallery-column-content.text-only:hover h3 {
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.gallery-column-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  padding: 2rem;
}

.placeholder-icon {
  width: 80px;
  height: 80px;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.gallery-column h3 {
  font-family: var(--body-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 0.5rem 0;
}

.gallery-column p {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .three-column-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-column-content {
    min-height: 250px;
    padding: 1.5rem;
  }
  
  .placeholder-icon {
    width: 60px;
    height: 60px;
  }
  
  .gallery-column h3 {
    font-size: 1.3rem;
  }
}

/* ===== Four Column Gallery Section ===== */
.four-column-gallery-section {
  background: #ccbc9b;
  padding: 6rem 0;
  position: relative;
  color: var(--dark);
}

.four-column-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 0 auto;
}

/* Mobile Responsive for Four Column */
@media (max-width: 768px) {
  .four-column-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .four-column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ===== Professional Team Profile ===== */
.team-profile {
  max-width: 1200px;
  margin: 0 auto;
  background: #ccbc9b;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

/* ===== Team Member Cards ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
}

/* For 4-5 team members, create 3-2 layout with specific positions */
.team-grid:has(:nth-child(4)) {
  grid-template-columns: repeat(3, 1fr);
}

/* Position 4th team member (Lin) in grid position 4 */
.team-grid:has(:nth-child(4)) .team-member-card:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

/* Position 5th team member (Rich) in grid position 5 */
.team-grid:has(:nth-child(5)) .team-member-card:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.team-grid:has(:nth-child(5)) .team-member-card:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.team-member-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 2px solid rgba(60, 60, 59, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.team-member-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member-card[data-member="joe-roussel"] .team-member-image img {
  object-position: top;
}

/* Apply object-position: top to Lin and Rich's images */
.team-member-card[data-member="lin"] .team-member-image img {
  object-position: top;
}

.team-member-card[data-member="rich"] .team-member-image img {
  object-position: top;
}

.team-member-card:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(60, 60, 59, 0.1);
  color: var(--dark);
}

.team-member-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.5;
}

.team-member-info {
  padding: 1.5rem;
  text-align: center;
}

.team-member-info h3 {
  font-family: var(--body-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 0.5rem 0;
}

.team-member-info h4 {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.5rem 0;
}

.team-member-info p {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--dark);
  margin: 0;
  opacity: 0.8;
}

/* ===== Team Modal ===== */
.team-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.team-modal-content {
  background-color: #ccbc9b;
  margin: 5% auto;
  padding: 0;
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.team-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(60, 60, 59, 0.1);
}

.team-modal-header h2 {
  font-family: var(--body-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
}

.team-modal-close {
  color: var(--dark);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.team-modal-close:hover {
  color: var(--primary-blue);
}

.team-modal-body {
  padding: 2rem;
}

/* Profile Section Styles */
.qualifications-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.qualification-item {
  background: rgba(60, 60, 59, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(60, 60, 59, 0.1);
}

.qualification-item h4 {
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 1rem 0;
}

.qualification-item ul {
  margin: 0;
  padding: 0 0 0 1.5rem;
}

.qualification-item li {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.expertise-grid {
  margin-top: 1rem;
}

.expertise-category h4 {
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 1rem 0;
}

.expertise-category ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0 0 0 1.5rem;
}

.expertise-category li {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.4;
}

.methods-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.method-item {
  background: rgba(60, 60, 59, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(60, 60, 59, 0.1);
}

.method-item h4 {
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 1rem 0;
}

.method-item ul {
  margin: 0;
  padding: 0 0 0 1.5rem;
}

.method-item li {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Culinary Expertise Styles */
.expertise-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.expertise-item {
  background: rgba(60, 60, 59, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(60, 60, 59, 0.1);
}

.expertise-item h4 {
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 1rem 0;
}

.expertise-item ul {
  margin: 0;
  padding: 0 0 0 1.5rem;
}

.expertise-item li {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Techniques Grid Styles */
.techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.technique-item {
  background: rgba(60, 60, 59, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(60, 60, 59, 0.1);
  text-align: center;
}

.technique-item h4 {
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 1rem 0;
}

.technique-item p {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}

/* Award Highlight Styles */
.award-highlight {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(60, 60, 59, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(60, 60, 59, 0.1);
}

.award-highlight img {
  width: 200px;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.award-highlight .award-info {
  flex: 1;
}

.award-highlight h4 {
  font-family: var(--body-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 0.5rem 0;
}

.award-date {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 1rem 0;
  font-style: italic;
}

/* Back Button Styles */
.back-button-container {
  text-align: center;
  margin: 2rem 0;
}

.back-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
  background: #1a4d8f;
  transform: translateY(-2px);
}

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

/* Mobile Responsive for Team Grid */
@media (max-width: 768px) {
  .team-grid,
  .team-grid:has(:nth-child(4)),
  .team-grid:has(:nth-child(5)) {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .team-grid .team-member-card,
  .team-grid:has(:nth-child(4)) .team-member-card:nth-child(4),
  .team-grid:has(:nth-child(5)) .team-member-card:nth-child(4),
  .team-grid:has(:nth-child(5)) .team-member-card:nth-child(5) {
    grid-column: auto !important;
    grid-row: auto !important;
    grid-area: auto !important;
  }
  
  .team-member-info h3 {
    font-size: 1.1rem;
  }
  
  .team-member-info h4 {
    font-size: 0.9rem;
  }
  
  .team-member-info p {
    font-size: 0.8rem;
  }
  
  .qualifications-list,
  .methods-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .qualification-item,
  .method-item {
    padding: 1rem;
  }
  
  .expertise-category ul {
    grid-template-columns: 1fr;
  }
  
  .expertise-list,
  .techniques-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .expertise-item,
  .technique-item {
    padding: 1rem;
  }
  
  .award-highlight {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .award-highlight img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(135deg, #ccbc9b 0%, #d8ccb5 100%);
  border-bottom: 2px solid rgba(60, 60, 59, 0.1);
}

.profile-image {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.profile-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-blue);
  box-shadow: var(--shadow-medium);
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-family: var(--body-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 0.5rem 0;
}

.profile-title {
  font-family: var(--body-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.5rem 0;
}

.profile-role {
  font-family: var(--body-font);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-blue);
  margin: 0 0 1rem 0;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge {
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}


.profile-content {
  padding: 3rem;
}

.profile-section {
  margin-bottom: 3rem;
}

.section-heading {
  font-family: var(--body-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 1.5rem 0;
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: 0.5rem;
}

.profile-text {
  font-family: var(--body-font);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0 0 1rem 0;
}

.achievement-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.achievement-text p {
  font-family: var(--body-font);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.awards-grid-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.3);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(60, 60, 59, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.award-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-blue);
}

.award-info h4 {
  font-family: var(--body-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 0.5rem 0;
}

.award-info p {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
}

.media-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-item {
  background: rgba(255, 255, 255, 0.3);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(60, 60, 59, 0.1);
}

.video-item h4 {
  font-family: var(--body-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 1rem 0;
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  background: rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  width: 100%;
  height: 315px;
  border: none;
}

.video-placeholder {
  width: 100%;
  height: 315px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.video-placeholder-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.video-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-placeholder:hover .video-icon {
  background: var(--accent-blue);
}

.video-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.video-placeholder-content h5 {
  font-family: var(--body-font);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--white);
}

.video-placeholder-content p {
  font-family: var(--body-font);
  font-size: 1rem;
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.video-link {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-link:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .profile-image {
    gap: 1rem;
  }
  
  .profile-image img {
    width: 150px;
    height: 150px;
  }
  
  .profile-badges {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .profile-name {
    font-size: 2rem;
  }
  
  .profile-title {
    font-size: 1.3rem;
  }
  
  .profile-content {
    padding: 2rem;
  }
  
    
  .awards-grid {
    grid-template-columns: 1fr;
  }
  
  .awards-grid-two-column {
    grid-template-columns: 1fr;
  }
  
  .media-section {
    grid-template-columns: 1fr;
  }
  
  .video-container iframe {
    height: 250px;
  }
  
  .video-placeholder {
    height: 250px;
  }
  
  .video-icon {
    width: 60px;
    height: 60px;
  }
  
  .video-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .video-placeholder-content h5 {
    font-size: 1.2rem;
  }
  
  .video-placeholder-content p {
    font-size: 0.9rem;
  }
}

/* ===== Gallery Section ===== */
.gallery-section {
  background: #ccbc9b;
  padding: 6rem 0;
  position: relative;
  color: var(--dark);
  min-height: 600px;
  width: 100%;
  display: block;
}

.gallery-section::before {
  display: none !important;
  content: none;
}

.gallery-section .container {
  background: transparent !important;
  position: relative;
  z-index: 1;
  text-align: center;
}

.gallery-section .section-title {
  color: var(--dark);
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}

  .gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    aspect-ratio: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-medium);
    background: var(--white);
    height: 250px;
  }

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

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

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

.gallery-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-nav-btn {
  background: var(--blush-cream);
  color: var(--primary);
  border: none;
  padding: 1rem 2rem;
  min-width: 44px;
  min-height: 44px;
  font-size: 2rem;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: 700;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav-btn:hover:not(:disabled) {
  background: var(--white);
  color: var(--primary);
}

.gallery-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--blush-cream);
  color: var(--charcoal-grey);
}

/* ===== Calendar/Events Section ===== */
.calendar-section {
  background: var(--white);
  padding: 6rem 0;
  position: relative;
}

.calendar-section .section-title {
  color: var(--primary);
  margin-bottom: 3rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(60, 60, 59, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.event-date {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 0 1rem 0;
  font-weight: 400;
}

.event-title {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 0 1rem 0;
  font-weight: 400;
}

.event-description {
  color: var(--charcoal-grey);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.event-link {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.event-link:hover {
  color: var(--charcoal-grey);
  transform: translateY(-2px);
}

/* Full Calendar View */
.calendar-view-container {
  margin-top: 4rem;
  padding: 2rem;
  background: var(--blush-cream);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.calendar-view-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
  margin: 0 0 2rem 0;
  font-weight: 400;
  letter-spacing: 1px;
}

.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.calendar-nav-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--border-radius);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.calendar-nav-btn:hover {
  background: var(--charcoal-grey);
  transform: scale(1.1);
}

.calendar-month-year {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0;
  font-weight: 400;
  min-width: 200px;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.calendar-day-header {
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  padding: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.calendar-day.empty {
  visibility: hidden;
}

.calendar-day.available {
  background: var(--white);
  color: var(--primary);
  border-color: rgba(0, 33, 71, 0.2);
}

.calendar-day.available:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.calendar-day.unavailable {
  background: var(--charcoal-grey);
  color: var(--white);
  border-color: var(--charcoal-grey);
  opacity: 0.7;
  cursor: not-allowed;
}

.calendar-day.has-event {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  font-weight: 700;
}

.calendar-day.has-event:hover {
  background: var(--charcoal-grey);
  transform: scale(1.1);
}

.calendar-day.past {
  background: var(--blush-cream);
  color: var(--charcoal-grey);
  opacity: 0.5;
  cursor: default;
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid rgba(0, 33, 71, 0.2);
}

.legend-color.available {
  background: var(--white);
  border-color: rgba(0, 33, 71, 0.2);
}

.legend-color.unavailable {
  background: var(--charcoal-grey);
  border-color: var(--charcoal-grey);
}

.legend-color.event {
  background: var(--primary);
  border-color: var(--primary);
}

.no-events {
  text-align: center;
  color: var(--charcoal-grey);
  font-style: italic;
  padding: 2rem;
}

/* Loading state for button */
.btn-loading {
  display: none;
}

/* ===== Map Section ===== */
.map-section {
  background: var(--blush-cream);
  padding: 4rem 0;
  position: relative;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.map-container h3 {
  font-family: var(--heading-font);
  color: var(--primary);
  font-size: 3rem;
  font-weight: 400;
  margin: 0 0 2rem 0;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
  background: var(--blush-cream);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(60, 60, 59, 0.15); /* Charcoal Grey with opacity */
}

.map-info {
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
}

.map-info p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}

.map-info p strong {
  color: var(--blush-cream);
  font-weight: 700;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet and smaller desktop */
@media (max-width: 900px) {
  .header-logo {
    height: 45px;
  }
  
  .central-card {
    max-width: 98vw;
    padding: 1.2rem 0.6rem;
  }
}

/* Small tablets */
@media (max-width: 700px) {
  .header-logo {
    height: 40px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  /* Navigation */
  .nav-toggle {
    display: block;
    z-index: 10000;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .nav-menu {
    flex-direction: column;
    position: fixed;
    top: 80px;
    right: -280px;
    width: 250px;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding-top: 2rem;
    padding-left: 1.5rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-strong);
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu.nav-menu-visible { 
    right: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .nav-link {
    font-size: 1.2rem;
    width: 100%;
    padding: 1rem 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 50px;
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: 500; /* Raleway Medium */
  }
  
  .nav-link.active {
    color: var(--blush-cream) !important;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    color: var(--blush-cream);
  }
  
  body.nav-open {
    overflow: hidden;
  }
  
  .header-container {
    justify-content: space-between;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  
  .header-logo {
    height: 45px;
  }
  
  /* Hero */
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-quote {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    padding: 14px 35px;
    font-size: 1rem;
  }
  
  .feast-advert {
    padding: 1.5rem 2rem;
    max-width: 90%;
  }
  
  .feast-title {
    font-size: 1.5rem;
  }
  
  .feast-subtitle {
    font-size: 1rem;
  }
  
  .feast-book-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
  
  /* Parallax */
  .parallax-section {
    background-attachment: fixed;
    height: 80vh;
  }
  
  .parallax-header {
    font-size: 2.8rem;
  }
  
  .parallax-subtitle {
    font-size: 1.3rem;
  }
  
  .parallax-box {
    padding: 2rem;
  }
  
  .parallax-box p {
    font-size: 1.1rem;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .footer-section h4 {
    text-align: center;
  }
  
  .footer-section ul {
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-section ul li a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-branding {
    justify-content: center;
  }
  
  .footer-section p {
    text-align: center;
  }
  
  /* Contact */
  .contact-info {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .contact-logo {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .contact-items-group {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  
  .contact-item {
    gap: 0.75rem;
    justify-content: center;
  }
  
  .contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }
  
  .contact-details h4 {
    display: block; /* Show labels on mobile */
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }
  
  .contact-details p {
    font-size: 0.95rem;
  }
  
  /* Modal */
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }
  
  .modal-header {
    padding: 1rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  /* Service Gallery Modal - Mobile */
  .service-gallery-modal {
    padding: 0;
    padding-top: 80px;
    align-items: flex-start;
  }
  
  .service-gallery-modal .modal-content {
    max-width: 100%;
    width: 100%;
    max-height: calc(100vh - 80px);
    margin: 0;
    border-radius: 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  
  .service-gallery-header {
    padding: 1rem 3.5rem 1rem 1rem;
    position: relative;
  }
  
  .service-gallery-header h3 {
    font-size: 1.25rem;
    padding-right: 0.5rem;
  }
  
  .service-gallery-modal .modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
    z-index: 10;
  }
  
  .service-gallery-body {
    padding: 1rem;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
  }
  
  .service-gallery-description {
    font-size: 0.95rem;
  }
  
  /* Event Details Modal - Mobile */
  .event-details-modal {
    padding: 0;
    padding-top: 80px;
    align-items: flex-start;
  }
  
  .event-details-modal .modal-content {
    max-width: 100%;
    width: 100%;
    max-height: calc(100vh - 80px);
    margin: 0;
    border-radius: 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  
  .event-details-header {
    padding: 1rem 3.5rem 1rem 1rem;
    position: relative;
  }
  
  .event-details-modal .modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
    z-index: 10;
  }
  
  .event-details-body {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
  }
  
  .event-details-header-content {
    gap: 1rem;
  }
  
  .event-details-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .event-details-header .event-details-date {
    font-size: 0.85rem;
  }
  
  .event-details-header .modal-close {
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    font-size: 1.75rem;
  }
  
  .event-details-image {
    max-height: 250px;
  }
  
  .event-details-info {
    padding: 1.5rem;
  }
  
  .event-details-description {
    font-size: 1rem;
  }
  
  .event-details-further-info {
    padding: 1rem;
  }
  
  .event-details-further-info h4 {
    font-size: 1.1rem;
  }
  
  .event-details-further-info p {
    font-size: 1rem;
  }
  
  .event-details-meta {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }
  
  .event-details-cost,
  .event-details-location {
    font-size: 1rem;
  }
  
  .event-book-btn {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
  
  /* Map */
  .map-container {
    padding: 0 1rem;
  }
  
  .map-container h3 {
    font-size: 2rem;
  }
  
  /* About */
  .about-container {
    flex-direction: column !important;
    gap: 3rem;
    align-items: center;
  }
  
  .about-image-wrapper {
    flex: 1 1 auto;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .about-card {
    flex: 1 1 auto;
    width: 100%;
    padding: 2.5rem 2rem;
  }
  
  .joe-portrait {
    max-width: 250px;
    height: auto;
    object-fit: contain;
  }
  
  /* Services */
  .services-section {
    background-attachment: scroll;
    padding: 4rem 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .service-card {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .service-content h3 {
    font-size: 1.3rem;
  }
  
  .service-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .section-title {
    font-size: 2rem;
    padding: 0 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  /* Trust Indicators Mobile */
  .trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .trust-badge {
    padding: 2rem 1.5rem;
    gap: 1.2rem;
  }
  
  .trust-icon {
    width: 50px;
    height: 50px;
  }
  
  .trust-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .trust-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .trust-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .trust-badge {
    padding: 2rem 1.5rem;
  }
  
  .trust-icon {
    width: 50px;
    height: 50px;
  }
  
  .trust-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .trust-text {
    font-size: 1rem;
  }
}

/* Small mobile devices */
@media (max-width: 600px) {
  .central-card { 
    padding: 1rem 0.8rem; 
    max-width: 99vw; 
  }
  
  .contact-logo {
    max-width: 60vw;
    min-width: 60px;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .hero-quote {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .feast-advert {
    padding: 1.2rem 1.5rem;
  }
  
  .feast-title {
    font-size: 1.3rem;
  }
  
  .feast-subtitle {
    font-size: 0.9rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .service-card {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .service-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .service-info-link {
    min-height: 44px;
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
  }
  
  .services-section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
    padding: 0 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  /* About Section Mobile */
  .about-section {
    padding: 3rem 0 2rem 0;
  }
  
  .about-intro {
    padding: 0 1rem;
  }
  
  .about-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 0 1rem;
  }
  
  .meet-joe-section {
    padding: 2rem 0 3rem 0;
  }
  
  .about-container {
    flex-direction: column !important;
    padding: 0 1rem;
    gap: 2rem;
    align-items: center;
  }
  
  .about-image-wrapper {
    width: 100%;
    max-width: 100%;
  }
  
  .about-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .joe-portrait {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .about-card {
    padding: 2rem 1.5rem;
    width: 100%;
  }
  
  .about-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .about-signature {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  /* Gallery Mobile */
  .gallery-section {
    padding: 4rem 0;
  }
  
  .gallery-section .container {
    padding: 0 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .gallery-section .section-title {
    text-align: center !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .gallery-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 400px;
    width: 100%;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  
  .gallery-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: 4px solid var(--white) !important;
    box-shadow: var(--shadow-medium) !important;
    background: var(--white) !important;
    height: auto !important;
    aspect-ratio: 1;
  }
  
  .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .gallery-navigation {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 0 auto !important;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .gallery-nav-btn {
    padding: 0.8rem 1.5rem;
    min-width: 44px;
    min-height: 44px;
    font-size: 1.5rem;
    flex: 0 0 auto;
  }
  
  .calendar-nav-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  
  /* Calendar/Events Mobile */
  .calendar-section {
    padding: 4rem 0;
  }
  
  .calendar-section .container {
    padding: 0 1rem;
  }
  
  .calendar-controls {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
  }
  
  .calendar-month-year {
    font-size: 1.25rem;
    min-width: auto;
    padding: 0 0.5rem;
  }
  
  .calendar-grid {
    gap: 0.25rem;
    padding: 0 1rem;
  }
  
  .calendar-day {
    font-size: 0.85rem;
    padding: 0.25rem;
  }
  
  .calendar-day-header {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
  
  .events-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .event-card {
    padding: 1.5rem;
  }
  
  .event-title {
    font-size: 1.5rem;
  }
  
  .event-details-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  
  /* Hero Mobile */
  .hero {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .hero-layout {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-logo-section {
    order: 2;
  }
  
  .hero-text-section {
    order: 1;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-main-logo {
    max-width: 200px;
  }
  
  .hero-title {
    font-size: 2rem;
    padding: 0 1rem;
    text-align: center;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-quote {
    font-size: 2rem;
    padding: 0 1rem;
    letter-spacing: 1px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 2rem;
    margin-top: 15rem;
    padding: 0 1rem;
  }
  
  .enquire-advert,
  .feast-advert {
    width: 100%;
  }
  
  .enquire-title,
  .feast-title {
    font-size: 1.5rem;
  }
  
  /* Contact Mobile */
  .contact-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
  
  .contact-logo {
    max-width: 180px;
    margin: 0 auto;
  }
  
  .contact-items-group {
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
  }
  
  .contact-item {
    width: 100%;
    justify-content: center;
  }
  
  .contact-details h4 {
    display: block; /* Show labels on mobile */
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-submit-btn {
    width: 100%;
  }
  
  .parallax-header {
    font-size: 2rem;
  }
  
  .parallax-subtitle {
    font-size: 1rem;
  }
  
  .parallax-content {
    padding: 0 1rem;
  }
  
  .footer {
    padding: 2rem 0 0 0;
  }
  
  .footer-content {
    gap: 1rem;
  }
  
  .social-links {
    gap: 0.8rem;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
  }
}

/* ==== Global Adjustment ==== */
.central-card,
.contact-card,
.hero-logo {
  box-sizing: border-box;
  width: 100%;
}

.contact-logo {
  box-sizing: border-box;
  width: auto;
  height: auto;
}

