* {
  box-sizing: border-box;
}

:root {
  /* Brand Colors - Official Palette */
  --navy-blue: #002147;        /* Pantone 282 C - Primary brand color */
  --charcoal-grey: #3c3c3b;     /* Secondary color */
  --black: #000000;             /* Pure black */
  --blush-cream: #eee0cf;       /* Pantone 9185 C - Light background/accent */
  
  /* Color System Mapping */
  --primary: #002147;           /* Navy Blue - Main brand color */
  --secondary: #3c3c3b;         /* Charcoal Grey - Secondary elements */
  --accent: #eee0cf;            /* Blush Cream - Subtle accents (use carefully for contrast) */
  --dark: #000000;              /* Black - Text on light backgrounds */
  --light: #eee0cf;             /* Blush Cream - Light backgrounds */
  --white: #ffffff;             /* Pure white */
  --gray: #3c3c3b;              /* Charcoal Grey - Gray elements */
  
  /* Utility Colors (kept for functionality) */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  
  /* Typography - Brand Guidelines */
  --heading-font: 'Special Elite', cursive;  /* Secondary Header font - for headings only */
  --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: var(--blush-cream);
  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;
}

section:not(.hero):not(.parallax-section) {
  background: var(--blush-cream);
}

/* ====== 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: var(--blush-cream);
  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 - Terra Firma Style ===== */
.hero {
  position: relative;
  min-height: 120vh;
  background: url('assets/meatopia.jpg') center top;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  margin: -15vh auto 0 auto;
  align-self: center;
  padding-top: 8rem;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem 0;
  line-height: 1.2;
  letter-spacing: 2px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 100%;
}

.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: linear-gradient(135deg, var(--dark) 0%, var(--charcoal-grey) 50%, var(--primary) 100%);
  color: var(--white);
  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: var(--blush-cream);
  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: 3rem 0 2rem 0;
  position: relative;
}

.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(--heading-font);
  font-size: 3rem;
  text-align: center;
  margin: 0 0 1rem 0;
  color: var(--primary);
  font-weight: 400;
  letter-spacing: 1.5px;
}

/* Meet Joe Section */
.meet-joe-section {
  background: linear-gradient(135deg, var(--blush-cream) 0%, rgba(0, 33, 71, 0.03) 100%);
  padding: 2rem 0 4rem 0;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.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 {
  background: var(--blush-cream);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(60, 60, 59, 0.15); /* Charcoal Grey with opacity */
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-card h2 {
  margin: 0 0 1rem 0;
  font-size: 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: #3c3c3b url("assets/charcoal-background.png") center center / cover no-repeat !important;
  padding: 6rem 0;
  position: relative;
  color: var(--white);
  min-height: 600px;
  width: 100%;
  display: block;
}

.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(--white);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.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);
}

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

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--blush-cream);
}

.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);
}

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

.service-content p {
  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(--heading-font);
  color: var(--white);
  font-size: 3rem;
  font-weight: 400;
  margin: 0 0 2rem 0;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

/* ===== Contact Section ===== */
.contact-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal-grey) 50%, var(--primary) 100%);
  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: var(--blush-cream);
  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: linear-gradient(135deg, var(--blush-cream) 0%, rgba(0, 33, 71, 0.03) 100%);
  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: var(--blush-cream);
  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;
}
*/

/* ===== Gallery Section ===== */
.gallery-section {
  background: #3c3c3b url("assets/charcoal-background.png") center center / cover no-repeat !important;
  padding: 6rem 0;
  position: relative;
  color: var(--white);
  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(--white);
  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 {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .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;
    padding: 0 1rem;
    gap: 2rem;
  }
  
  .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;
  }
  
  .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-title {
    font-size: 2rem;
    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;
}

