/* ============================================
   RADIANCE & SHADOW - MONOCHROME SOPHISTICATED
   Comprehensive CSS Styles
   ============================================ */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - MONOCHROME SOPHISTICATED
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 36px;
  font-weight: 300;
}

h3 {
  font-size: 24px;
  font-weight: 400;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
}

a {
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333333;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #000000;
  border-bottom-color: #000000;
}

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #000000;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  width: 48px;
  height: 48px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: #000000;
  color: #ffffff;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333333;
  padding: 12px 24px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #000000;
  border-bottom-color: #000000;
}

/* ============================================
   BUTTONS - MONOCHROME SOPHISTICATED
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid #000000;
  background-color: transparent;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
}

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

.btn-secondary:hover {
  background-color: #f5f5f5;
}

/* ============================================
   HERO SECTION - DRAMATIC CONTRAST
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 120px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.tagline {
  font-size: 20px;
  margin-bottom: 32px;
  color: #e0e0e0;
  font-weight: 300;
  letter-spacing: 0.03em;
}

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

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  background-color: #f5f5f5;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SECTIONS - ELEGANT SPACING
   ============================================ */

.intro,
.featured-services,
.why-choose,
.testimonials,
.world-regions,
.food-stories,
.services,
.packages,
.gallery-intro,
.gallery-categories,
.featured-collections,
.photography-service,
.event-types,
.private-events,
.newsletter,
.our-story,
.our-mission,
.philosophy,
.why-location,
.contact-info,
.location,
.faq,
.cta-section,
.next-steps,
.suggestions,
.contact-reminder {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: left;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}

/* ============================================
   CARDS - SOPHISTICATED DESIGN
   ============================================ */

.services-grid,
.benefits-grid,
.regions-grid,
.collections-grid,
.packages-grid,
.events-grid,
.values-grid,
.contact-grid,
.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.service-card,
.benefit-card,
.region-card,
.collection-card,
.package-card,
.event-type-card,
.value-card,
.contact-card,
.step-card,
.suggestion-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.benefit-card:hover,
.region-card:hover,
.collection-card:hover,
.package-card:hover,
.event-type-card:hover,
.value-card:hover,
.contact-card:hover,
.step-card:hover,
.suggestion-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #000000;
}

.service-card h3,
.benefit-card h3,
.region-card h3,
.collection-card h3,
.package-card h3,
.event-type-card h3,
.value-card h3,
.contact-card h3,
.step-card h3,
.suggestion-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #000000;
}

.service-card p,
.benefit-card p,
.region-card p,
.collection-card p,
.package-card p,
.event-type-card p,
.value-card p,
.contact-card p,
.step-card p,
.suggestion-card p {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}

.price {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  margin: 16px 0;
  letter-spacing: 0.05em;
}

.specialties,
.count,
.frequency,
.discount {
  font-size: 14px;
  color: #999999;
  margin-top: 12px;
  font-style: italic;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.testimonial-card {
  background-color: #ffffff;
  border-left: 4px solid #000000;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

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

.author {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-align: right;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner,
.cta-section {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

/* ============================================
   GALLERY CATEGORIES
   ============================================ */

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.category-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* ============================================
   MISSION STATEMENT
   ============================================ */

.mission-statement {
  font-size: 28px;
  font-weight: 300;
  text-align: center;
  color: #000000;
  max-width: 800px;
  margin: 0 auto 48px;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* ============================================
   PHILOSOPHY LIST
   ============================================ */

.philosophy-list {
  max-width: 600px;
  margin: 32px auto;
}

.philosophy-list li {
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 18px;
  color: #333333;
  position: relative;
  padding-left: 24px;
}

.philosophy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 400;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 32px auto;
}

.faq-item {
  margin-bottom: 32px;
  padding: 24px;
  background-color: #f5f5f5;
  border-left: 3px solid #000000;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.faq-item p {
  color: #333333;
  line-height: 1.7;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background-color: #f5f5f5;
  padding: 120px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #000000;
}

.thank-you-content p {
  font-size: 20px;
  color: #666666;
  margin-bottom: 32px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-content .text-section {
  max-width: 900px;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #000000;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #333333;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #333333;
}

.legal-content strong {
  font-weight: 600;
  color: #000000;
}

/* ============================================
   FOOTER - SOPHISTICATED MONOCHROME
   ============================================ */

footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 20px 20px;
  border-top: 1px solid #333333;
}

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

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

.footer-section h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: #cccccc;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  display: inline-block;
}

.footer-nav a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  font-size: 14px;
  color: #999999;
  letter-spacing: 0.05em;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.cookie-btn-accept {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  display: flex;
  opacity: 1;
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 90%;
  padding: 40px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid #e0e0e0;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #000000;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: #666666;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid #e0e0e0;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #000000;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-size: 14px;
  color: #333333;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .tagline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Page hero */
  .page-hero {
    padding: 60px 20px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Cards - stack on mobile */
  .services-grid,
  .benefits-grid,
  .regions-grid,
  .collections-grid,
  .packages-grid,
  .events-grid,
  .values-grid,
  .contact-grid,
  .steps-grid,
  .suggestions-grid,
  .testimonials-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-card,
  .region-card,
  .collection-card,
  .package-card,
  .event-type-card,
  .value-card,
  .contact-card,
  .step-card,
  .suggestion-card,
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    width: 95%;
    padding: 24px;
  }
  
  /* Mission statement */
  .mission-statement {
    font-size: 22px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit-card,
  .region-card,
  .collection-card,
  .package-card,
  .event-type-card,
  .value-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

.service-card,
.benefit-card,
.region-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
    box-shadow: none;
  }
  
  .hero {
    background: #ffffff;
    color: #000000;
  }
  
  .hero h1 {
    color: #000000;
  }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

*:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000000;
  color: #ffffff;
  padding: 8px;
  z-index: 100;
}

.skip-to-main:focus {
  top: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* END OF STYLES */