/* ===================================
   BRAVECRADLE CATERING - MODERN BOLD DESIGN
   Complete CSS Styles for All Pages
   =================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - BOLD & MODERN */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

h1 {
  font-size: 56px;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

h2 {
  font-size: 42px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}

p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}

a {
  color: #2C5F4F;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

a:hover {
  color: #D4A574;
  transform: translateX(3px);
}

ul, ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

li {
  margin-bottom: 12px;
  font-size: 18px;
}

strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* HEADER - BOLD & GEOMETRIC */
header {
  background: linear-gradient(135deg, #2C5F4F 0%, #1a4538 100%);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(44, 95, 79, 0.3);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* NAVIGATION - BOLD LINKS */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 4px;
  background: #D4A574;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D4A574;
  transform: translateY(-2px);
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1100;
  background: #2C5F4F;
  color: #ffffff;
  border: none;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(44, 95, 79, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #D4A574;
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F4F 0%, #1a4538 100%);
  z-index: 1050;
  padding: 80px 32px 32px;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  color: #ffffff;
  border: none;
  font-size: 40px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #D4A574;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4A574;
  border-left-color: #D4A574;
  background: rgba(212, 165, 116, 0.1);
  transform: translateX(8px);
}

/* HERO SECTION - BOLD & IMPACTFUL */
.hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1a4538 100%);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  color: #ffffff;
  font-size: 64px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
  font-size: 24px;
  font-weight: 700;
  color: #D4A574;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-value {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-indicators span {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 20px;
  background: rgba(212, 165, 116, 0.2);
  border-radius: 4px;
  border-left: 4px solid #D4A574;
}

/* BUTTONS - BOLD & GEOMETRIC */
.btn {
  display: inline-block;
  padding: 18px 40px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #D4A574;
  color: #1a1a1a;
  border-color: #D4A574;
}

.btn-primary:hover {
  background: #c69563;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #2C5F4F;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn:active {
  transform: translateY(-1px);
}

/* SECTIONS - CONSISTENT SPACING */
.section,
section {
  padding: 80px 0;
  margin-bottom: 0;
}

.section-intro {
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  color: #444;
}

.section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C5F4F;
}

/* SERVICES OVERVIEW - FLEXBOX CARDS */
.services-overview {
  background: #F8F3ED;
  padding: 80px 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card {
  background: #ffffff;
  padding: 40px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 400px;
  border: 4px solid #2C5F4F;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 0;
  height: 4px;
  background: #D4A574;
  transition: width 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(44, 95, 79, 0.2);
}

.service-card:hover::before {
  width: calc(100% + 8px);
}

.service-card h3 {
  color: #2C5F4F;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 20px;
  color: #444;
  font-size: 16px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 800;
  color: #D4A574;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card .btn {
  width: 100%;
  background: #2C5F4F;
  color: #ffffff;
  border-color: #2C5F4F;
  font-size: 16px;
  padding: 16px 32px;
}

.service-card .btn:hover {
  background: #D4A574;
  border-color: #D4A574;
  color: #1a1a1a;
}

/* WHY CHOOSE US - FEATURES GRID */
.why-choose-us {
  background: #ffffff;
  padding: 80px 0;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.feature {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
  max-width: 500px;
  padding: 32px;
  background: #F8F3ED;
  border-left: 6px solid #2C5F4F;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateX(8px);
  border-left-color: #D4A574;
  box-shadow: 0 8px 24px rgba(44, 95, 79, 0.1);
}

.feature h3 {
  color: #2C5F4F;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature p {
  color: #444;
  font-size: 16px;
}

/* HOW IT WORKS - STEPS */
.how-it-works {
  background: #F8F3ED;
  padding: 80px 0;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  max-width: 300px;
  padding: 32px;
  background: #ffffff;
  border: 4px solid #2C5F4F;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(44, 95, 79, 0.2);
  border-color: #D4A574;
}

.step-number {
  display: inline-block;
  font-size: 48px;
  font-weight: 800;
  color: #D4A574;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  color: #2C5F4F;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.step p {
  color: #444;
  font-size: 16px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: #ffffff;
  padding: 80px 0;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.testimonial-card {
  background: #F8F3ED;
  padding: 40px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  border-left: 6px solid #D4A574;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(44, 95, 79, 0.15);
  border-left-color: #2C5F4F;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2C5F4F;
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.trust-badge {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #D4A574;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA SECTIONS - BOLD CALLS TO ACTION */
.cta-banner,
.cta-section,
.cta-consultation {
  background: linear-gradient(135deg, #2C5F4F 0%, #1a4538 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
  pointer-events: none;
}

.cta-banner h2,
.cta-section h2,
.cta-consultation h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-banner p,
.cta-section p,
.cta-consultation p {
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons,
.cta-center {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.availability-note,
.guarantee {
  margin-top: 24px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D4A574;
}

/* PAGE HERO - INTERNAL PAGES */
.page-hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1a4538 100%);
  color: #ffffff;
  padding: 60px 0 40px;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.breadcrumb a {
  color: #D4A574;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 20px;
}

.page-hero .note {
  font-size: 16px;
  font-weight: 600;
  color: #D4A574;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SERVICES DETAILED PAGE */
.services-detailed {
  padding: 80px 0;
}

.service-detail {
  margin-bottom: 60px;
  padding: 40px;
  background: #F8F3ED;
  border-left: 6px solid #2C5F4F;
}

.service-detail h2 {
  color: #2C5F4F;
  text-align: left;
  margin-bottom: 16px;
  font-size: 36px;
}

.service-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #D4A574;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-detail h3 {
  color: #2C5F4F;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-detail ul {
  list-style: none;
  padding-left: 0;
}

.service-detail li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
}

.service-detail li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #D4A574;
  font-size: 16px;
}

.service-detail .price {
  font-size: 28px;
  font-weight: 800;
  color: #D4A574;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* MENU PAGE */
.menu-section {
  padding: 60px 0;
  border-bottom: 4px solid #F8F3ED;
}

.menu-section:nth-child(even) {
  background: #F8F3ED;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.menu-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 550px;
  padding: 24px;
  background: #ffffff;
  border-left: 4px solid #D4A574;
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(44, 95, 79, 0.1);
  border-left-color: #2C5F4F;
}

.menu-item h3,
.menu-item h4 {
  color: #2C5F4F;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-item p {
  color: #444;
  font-size: 16px;
  margin-bottom: 12px;
}

.dietary,
.price-indicator {
  display: inline-block;
  padding: 6px 12px;
  background: #2C5F4F;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  border-radius: 2px;
}

.price-indicator {
  background: #D4A574;
  color: #1a1a1a;
}

/* BUFFET OPTIONS */
.buffet-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.buffet-option {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 400px;
  padding: 40px;
  background: #ffffff;
  border: 4px solid #2C5F4F;
  transition: all 0.3s ease;
}

.buffet-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(44, 95, 79, 0.2);
  border-color: #D4A574;
}

.buffet-option h3 {
  color: #2C5F4F;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.buffet-option .price {
  font-size: 24px;
  font-weight: 800;
  color: #D4A574;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.customization-note {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  color: #2C5F4F;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* EVENT TYPES PAGE */
.event-types {
  padding: 80px 0;
}

.event-detail {
  margin-bottom: 60px;
  padding: 40px;
  background: #F8F3ED;
  border-left: 6px solid #D4A574;
}

.event-detail h3 {
  color: #2C5F4F;
  font-size: 32px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.tagline {
  font-size: 20px;
  font-weight: 700;
  color: #D4A574;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-detail h4 {
  color: #2C5F4F;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.event-detail ul {
  list-style: none;
  padding-left: 0;
}

.event-detail li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
}

.event-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4A574;
  font-size: 20px;
  font-weight: 800;
}

.event-detail .btn {
  margin-top: 24px;
  background: #2C5F4F;
  color: #ffffff;
  border-color: #2C5F4F;
}

.event-detail .btn:hover {
  background: #D4A574;
  border-color: #D4A574;
  color: #1a1a1a;
}

/* EVENT PLANNING TIMELINE */
.event-planning {
  padding: 60px 0;
  background: #ffffff;
}

.event-planning h2,
.event-planning h3 {
  color: #2C5F4F;
  text-align: center;
  margin-bottom: 32px;
}

.event-planning ul {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}

.event-planning li {
  padding: 20px 20px 20px 60px;
  position: relative;
  margin-bottom: 20px;
  background: #F8F3ED;
  border-left: 6px solid #D4A574;
}

.event-planning li::before {
  content: '●';
  position: absolute;
  left: 20px;
  color: #2C5F4F;
  font-size: 24px;
}

/* ABOUT US PAGE */
.our-story,
.our-values,
.team,
.certifications {
  padding: 80px 0;
}

.our-story:nth-child(even),
.team:nth-child(even) {
  background: #F8F3ED;
}

.milestones ul {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 40px auto 0;
}

.milestones li {
  padding: 16px 20px;
  margin-bottom: 16px;
  background: #2C5F4F;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  border-left: 6px solid #D4A574;
  transition: all 0.3s ease;
}

.milestones li:hover {
  transform: translateX(8px);
  background: #1a4538;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  padding: 32px;
  background: #F8F3ED;
  border-top: 6px solid #D4A574;
  transition: all 0.3s ease;
}

.value:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(44, 95, 79, 0.15);
  border-top-color: #2C5F4F;
}

.value h3 {
  color: #2C5F4F;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}

.team-member {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
  max-width: 450px;
  padding: 32px;
  background: #ffffff;
  border: 4px solid #2C5F4F;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(44, 95, 79, 0.2);
  border-color: #D4A574;
}

.team-member h3 {
  color: #2C5F4F;
  font-size: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.role {
  font-weight: 700;
  color: #D4A574;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.certifications ul {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 0 auto;
}

.certifications li {
  padding: 16px 20px 16px 60px;
  position: relative;
  margin-bottom: 16px;
  background: #F8F3ED;
  border-left: 6px solid #2C5F4F;
  font-weight: 600;
  transition: all 0.3s ease;
}

.certifications li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #D4A574;
  font-size: 24px;
  font-weight: 800;
}

.certifications li:hover {
  transform: translateX(8px);
  border-left-color: #D4A574;
}

/* GALLERY PAGE */
.gallery-intro {
  padding: 60px 0;
  text-align: center;
}

.gallery-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
}

.gallery-categories {
  padding: 80px 0;
}

.category {
  margin-bottom: 60px;
  padding: 40px;
  background: #F8F3ED;
  border-left: 6px solid #D4A574;
}

.category h3 {
  color: #2C5F4F;
  font-size: 28px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.highlight {
  font-weight: 700;
  color: #2C5F4F;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

.event-showcase {
  padding: 80px 0;
  background: #ffffff;
}

.showcase {
  margin-bottom: 48px;
  padding: 40px;
  border: 4px solid #2C5F4F;
  background: #F8F3ED;
}

.showcase h3 {
  color: #2C5F4F;
  font-size: 28px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* CONTACT PAGE */
.contact-intro,
.contact-methods,
.location-info,
.contact-faq {
  padding: 60px 0;
}

.contact-intro:nth-child(even),
.location-info:nth-child(even) {
  background: #F8F3ED;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 350px;
  padding: 32px;
  background: #F8F3ED;
  border-top: 6px solid #2C5F4F;
  text-align: center;
  transition: all 0.3s ease;
}

.method:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(44, 95, 79, 0.15);
  border-top-color: #D4A574;
}

.method h3 {
  color: #2C5F4F;
  font-size: 22px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.contact-method {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 450px;
  padding: 32px;
  background: #F8F3ED;
  border-left: 6px solid #D4A574;
  text-align: center;
}

.urgent-note {
  text-align: center;
  font-weight: 700;
  color: #D4A574;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 32px;
}

.faq-item {
  margin-bottom: 32px;
  padding: 24px;
  background: #F8F3ED;
  border-left: 6px solid #2C5F4F;
}

.faq-item h3 {
  color: #2C5F4F;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1a4538 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.success-icon {
  font-size: 80px;
  color: #D4A574;
  margin-bottom: 24px;
  width: 120px;
  height: 120px;
  line-height: 120px;
  margin: 0 auto 24px;
  background: rgba(212, 165, 116, 0.2);
  border-radius: 50%;
  border: 6px solid #D4A574;
}

.thank-you-hero h1 {
  color: #ffffff;
}

.subheadline,
.confirmation {
  font-size: 20px;
  margin-bottom: 16px;
}

.confirmation {
  font-weight: 700;
  color: #D4A574;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.next-steps,
.contact-reminder,
.explore-more,
.social-proof,
.final-cta,
.thank-you-content {
  padding: 60px 0;
}

.next-steps:nth-child(even),
.explore-more:nth-child(even) {
  background: #F8F3ED;
}

.timeline-note {
  text-align: center;
  margin-top: 32px;
  font-weight: 700;
  color: #2C5F4F;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.link-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 350px;
  padding: 32px;
  background: #F8F3ED;
  border-left: 6px solid #D4A574;
  transition: all 0.3s ease;
}

.link-item:hover {
  transform: translateX(8px);
  border-left-color: #2C5F4F;
}

.link-item h3 {
  margin-bottom: 12px;
}

.link-item h3 a {
  color: #2C5F4F;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.stats span {
  padding: 16px 24px;
  background: #2C5F4F;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid #D4A574;
}

/* LEGAL PAGES */
.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  color: #2C5F4F;
  margin-bottom: 32px;
}

.legal-page h2 {
  color: #2C5F4F;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  text-transform: uppercase;
}

.legal-page h3 {
  color: #2C5F4F;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.legal-page p,
.legal-page li {
  color: #444;
  line-height: 1.8;
}

.legal-page a {
  color: #2C5F4F;
  text-decoration: underline;
}

.legal-page a:hover {
  color: #D4A574;
}

/* FOOTER - BOLD & STRUCTURED */
footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 24px;
  margin-top: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-section h4 {
  color: #D4A574;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #D4A574;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 2px solid rgba(212, 165, 116, 0.3);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #D4A574;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content {
  flex: 1 1 auto;
}

.cookie-content p {
  margin-bottom: 0;
  font-size: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 0;
  border: 4px solid #2C5F4F;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #2C5F4F;
  margin-bottom: 24px;
  font-size: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8F3ED;
  border-left: 4px solid #D4A574;
}

.cookie-category h3 {
  color: #2C5F4F;
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #2C5F4F;
}

.toggle-switch::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.toggle-switch.active::before {
  left: 33px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  header .container {
    justify-content: center;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 0;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Section spacing */
  .section,
  section {
    padding: 60px 0;
  }
  
  /* Grid adjustments */
  .services-grid,
  .features-grid,
  .steps-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .methods-grid,
  .menu-grid,
  .buffet-options {
    flex-direction: column;
  }
  
  .service-card,
  .feature,
  .step,
  .testimonial-card,
  .value,
  .team-member,
  .method,
  .menu-item,
  .buffet-option {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Button adjustments */
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .cta-buttons,
  .cta-center {
    flex-direction: column;
    width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner adjustments */
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Further mobile adjustments */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
*:focus {
  outline: 3px solid #D4A574;
  outline-offset: 2px;
}

button:focus,
.btn:focus,
a:focus {
  outline: 3px solid #D4A574;
  outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    color: #000000;
  }
  
  .btn-primary {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* END OF STYLESHEET */