/* =================================================================
   ATLANTIC BEACON TOURS - ELEGANT CLASSIC DESIGN
   Timeless maritime elegance with refined coastal sophistication
   ================================================================= */

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

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

body {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #fdfcfb;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* =================================================================
   TYPOGRAPHY - ELEGANT CLASSIC SERIF FONTS
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1B4965;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 42px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

h4 {
  font-size: 22px;
  margin-bottom: 14px;
}

p {
  margin-bottom: 16px;
  color: #4a5568;
}

/* =================================================================
   LAYOUT CONTAINERS
   ================================================================= */

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

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

/* =================================================================
   HEADER & NAVIGATION - ELEGANT MARITIME STYLE
   ================================================================= */

header {
  background-color: #ffffff;
  border-bottom: 2px solid #e8dcc9;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(27, 73, 101, 0.08);
}

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

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

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

.main-nav a {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 15px;
  color: #1B4965;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

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

/* =================================================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ================================================================= */

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  color: #1B4965;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 18px;
  color: #1B4965;
  padding: 12px 0;
  border-bottom: 1px solid #e8dcc9;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #5FA8D3;
  padding-left: 10px;
}

/* =================================================================
   HERO SECTIONS - ELEGANT & REFINED
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #1B4965 0%, #5FA8D3 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 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: 800px;
  margin: 0 auto;
}

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

.hero-subheadline {
  font-size: 20px;
  color: #CAE9FF;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  font-size: 14px;
  color: #CAE9FF;
  font-style: italic;
  letter-spacing: 0.5px;
}

.page-hero {
  background-color: #1B4965;
  padding: 60px 20px;
  text-align: center;
}

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

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

/* =================================================================
   BUTTONS - CLASSIC REFINED STYLE
   ================================================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #5FA8D3;
  border-color: #5FA8D3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 73, 101, 0.3);
}

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

.btn-secondary:hover {
  background-color: #ffffff;
  color: #1B4965;
  transform: translateY(-2px);
}

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

section {
  margin-bottom: 60px;
  padding: 50px 20px;
}

.section-subheadline {
  font-size: 18px;
  color: #5FA8D3;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

/* =================================================================
   CARDS & GRIDS - FLEXBOX LAYOUTS ONLY
   ================================================================= */

/* Tour Cards */
.tour-grid,
.tour-detail-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.tour-card,
.tour-detail-card {
  background-color: #ffffff;
  border: 1px solid #e8dcc9;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 73, 101, 0.15);
  border-color: #5FA8D3;
}

.tour-card h3,
.tour-detail-card h2 {
  color: #1B4965;
  margin-bottom: 16px;
}

.tour-tagline {
  font-style: italic;
  color: #5FA8D3;
  font-size: 16px;
  margin-bottom: 12px;
}

.tour-meta {
  font-size: 14px;
  color: #718096;
  margin-bottom: 16px;
  font-weight: 500;
}

.tour-highlights {
  margin: 20px 0;
  padding-left: 20px;
}

.tour-highlights li {
  margin-bottom: 8px;
  color: #4a5568;
}

.tour-price {
  font-size: 24px;
  color: #1B4965;
  font-weight: 600;
  margin: 20px 0;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
}

.view-all-link {
  display: inline-block;
  margin-top: 32px;
  font-size: 18px;
  color: #5FA8D3;
  font-weight: 600;
  border-bottom: 2px solid #5FA8D3;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: #1B4965;
  border-bottom-color: #1B4965;
}

/* Features Grid */
.features-grid,
.info-grid,
.reasons-grid,
.stats-grid,
.tips-grid,
.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.feature,
.info-item,
.reason,
.stat,
.tip,
.season,
.tip-card {
  background-color: #ffffff;
  border: 1px solid #e8dcc9;
  border-radius: 8px;
  padding: 28px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  box-shadow: 0 2px 8px rgba(27, 73, 101, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature:hover,
.info-item:hover,
.reason:hover,
.tip-card:hover {
  box-shadow: 0 6px 16px rgba(27, 73, 101, 0.12);
  transform: translateY(-2px);
}

.stat {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 150px;
}

.stat-number {
  font-size: 36px;
  color: #1B4965;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
}

/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  background-color: #f8f6f3;
  border: 1px solid #e8dcc9;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: #2c3e50;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #1B4965;
  font-style: normal;
  margin-top: 12px;
}

.rating {
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 2px;
}

/* Lighthouse Cards */
.lighthouse-grid,
.province-grid,
.seafood-grid,
.experience-grid,
.dishes-grid,
.explore-grid,
.resources-grid,
.steps-grid,
.contact-cards,
.info-boxes,
.faq-grid,
.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.lighthouse-card,
.province-card,
.seafood-card,
.experience-card,
.dish,
.explore-card,
.resource,
.step,
.contact-card,
.info-box,
.faq-item,
.highlight-category {
  background-color: #ffffff;
  border: 1px solid #e8dcc9;
  border-radius: 8px;
  padding: 28px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  box-shadow: 0 2px 8px rgba(27, 73, 101, 0.05);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.lighthouse-card:hover,
.province-card:hover,
.experience-card:hover,
.explore-card:hover {
  box-shadow: 0 6px 16px rgba(27, 73, 101, 0.12);
  transform: translateY(-2px);
}

.location,
.province-capital,
.duration {
  font-size: 14px;
  color: #5FA8D3;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: #1B4965;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
}

/* =================================================================
   CTA BANNERS - ELEGANT MARITIME STYLE
   ================================================================= */

.cta-banner {
  background: linear-gradient(135deg, #1B4965 0%, #5FA8D3 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 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 {
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: #CAE9FF;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-elements,
.booking-note {
  font-size: 14px;
  color: #CAE9FF;
  margin-top: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.cta-text {
  color: #ffffff;
  margin-top: 24px;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

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

.legal-content {
  padding: 40px 20px;
  background-color: #ffffff;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0 16px 32px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #4a5568;
  line-height: 1.7;
}

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

.thank-you-hero {
  background-color: #f8f6f3;
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #48bb78;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.subheadline {
  font-size: 18px;
  color: #5FA8D3;
  margin-bottom: 16px;
}

/* =================================================================
   FOOTER - CLASSIC MARITIME DESIGN
   ================================================================= */

footer {
  background-color: #1B4965;
  color: #CAE9FF;
  padding: 50px 20px 30px;
  margin-top: 60px;
}

.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: 220px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

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

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

.footer-nav a {
  color: #CAE9FF;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(202, 233, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-legal a {
  color: #CAE9FF;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom p {
  color: #CAE9FF;
  font-size: 13px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e8dcc9;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #4a5568;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-weight: 600;
}

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

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

.cookie-btn-reject {
  background-color: transparent;
  color: #1B4965;
  border-color: #e8dcc9;
}

.cookie-btn-reject:hover {
  background-color: #f8f6f3;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #5FA8D3;
  border-color: #5FA8D3;
}

.cookie-btn-settings:hover {
  background-color: #5FA8D3;
  color: #ffffff;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal h3 {
  color: #1B4965;
  margin-bottom: 20px;
}

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

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h4 {
  color: #1B4965;
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

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

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Cards - Stack on mobile */
  .tour-card,
  .tour-detail-card,
  .feature,
  .info-item,
  .reason,
  .testimonial-card,
  .lighthouse-card,
  .province-card,
  .seafood-card,
  .experience-card,
  .dish,
  .explore-card,
  .resource,
  .step,
  .contact-card,
  .info-box,
  .faq-item,
  .highlight-category,
  .tip,
  .season,
  .tip-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* CTA Banner */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tour-card,
  .feature,
  .testimonial-card,
  .lighthouse-card,
  .province-card,
  .experience-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(25% - 24px);
  }
}

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

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

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

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

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

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

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

.btn:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #5FA8D3;
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1B4965;
  color: #ffffff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* =================================================================
   ANIMATIONS
   ================================================================= */

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth transitions for all interactive elements */
button,
a,
input,
textarea,
select {
  transition: all 0.3s ease;
}

/* =================================================================
   BROWSER COMPATIBILITY
   ================================================================= */

/* Ensure consistent box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Remove default margins and padding */
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li {
  margin: 0;
  padding: 0;
}

/* Consistent image rendering */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* End of Atlantic Beacon Tours CSS */
