/* =======================
   Modern Wedding Website
   Fresh Design with Smooth Transitions
======================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;700;900&display=swap');

:root {
  --primary-color: #d4a574;
  --secondary-color: #5c3a21;
  --accent-color: #8b5a3c;
  --text-light: #fdf7f0;
  --text-dark: #2c1810;
  --overlay-light: rgba(253, 247, 240, 0.85);
  --overlay-medium: rgba(253, 247, 240, 0.7);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.15);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--text-light);
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s var(--transition-smooth);
}

a:hover::after {
  width: 100%;
}

/* =======================
   Page Container
======================= */
#page-container {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow-y: auto;
  perspective: 1200px;
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  touch-action: pan-y;
}

/* =======================
   Modern Pages with Fixed Transitions
======================= */
.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: all 0.8s var(--transition-smooth);
  z-index: 1;
}

/* Dark overlay for background images */
.page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

.page.active {
  z-index: 10;
  opacity: 1;
}

.page.hidden {
  display: none;
}

/* Modern gradient overlay */
.page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(212, 165, 116, 0.3) 0%, 
    rgba(92, 58, 33, 0.4) 50%, 
    rgba(253, 247, 240, 0.6) 100%);
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(0px);
}

/* Enhanced page content with optional animations */
.page h1,
.page p,
.page img {
  position: relative;
  z-index: 3;
  margin: 0.5em 0;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s var(--transition-smooth);
}

.page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page p {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.page img {
  max-width: 80%;
  margin-top: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s var(--transition-smooth);
}

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

/* =======================
   Navigation Boxes Design
======================= */
.nav-boxes {
  position: fixed;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 100;
  padding: 20px;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  backdrop-filter: none;
  box-shadow: none;
  transition: all 0.3s var(--transition-smooth);
}

/* Navigation bar at top on welcome page */
.nav-boxes.welcome-top {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: row;
  gap: 15px;
  padding: 15px 25px;
}

/* Single home button positioning (bottom-left corner) */
.nav-boxes.single-home {
  bottom: 30px;
  left: 30px;
  top: auto;
  transform: translateY(0);
  padding: 15px;
  gap: 0;
  border: none;
  background: transparent;
}

/* Expanded navigation menu */
.nav-boxes.expanded {
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background: rgba(253, 247, 240, 0.95);
  backdrop-filter: blur(0px);
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  min-width: 200px;
}

.nav-boxes.expanded .nav-box {
  width: 160px;
  height: 50px;
  font-size: 0.9rem;
  border-radius: 12px;
}

/* Hide navigation by default on non-welcome pages */
.nav-boxes.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-20px);
}

/* Flight Search Widget */
.flight-search-widget {
  background: rgba(253, 247, 240, 0.98);
  backdrop-filter: blur(0px);
  border-radius: 20px;
  padding: 30px;
  margin-top: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--primary-color);
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 10;
  max-height: 80vh;
  overflow-y: auto;
}

.flight-search-widget h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  padding: 15px;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  transition: all 0.3s var(--transition-smooth);
  font-weight: 500;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(139, 90, 60, 0.2);
  background: rgba(255, 255, 255, 1);
}

.search-btn {
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search-btn:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.flight-results {
  margin-top: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  display: none;
  border: 2px solid var(--primary-color);
}

.flight-results.show {
  display: block;
}

.flight-results p {
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.flight-results a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.flight-results a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Custom scrollbar for flight search widget */
.flight-search-widget::-webkit-scrollbar {
  width: 8px;
}

.flight-search-widget::-webkit-scrollbar-track {
  background: rgba(253, 247, 240, 0.3);
  border-radius: 10px;
}

.flight-search-widget::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
  border: 2px solid rgba(253, 247, 240, 0.3);
}

.flight-search-widget::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.nav-box {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  background: rgba(253, 247, 240, 0.5);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.nav-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth);
  z-index: 1;
}

.nav-box span {
  position: relative;
  z-index: 2;
  transition: color 0.3s var(--transition-smooth);
}

.nav-box:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.8);
}

.nav-box:hover::before {
  opacity: 1;
}

.nav-box:hover span {
  color: var(--text-light);
}

.nav-box.active {
  background: rgba(253, 247, 240, 0.5);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.nav-box.active span {
  color: var(--text-dark);
}

.nav-box.active::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid var(--text-light);
  border-radius: 18px;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* =======================
   Enhanced links inside pages
======================= */
.page a {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(253, 247, 240, 0.9);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s var(--transition-smooth);
  display: inline-block;
  margin: 0.5rem;
}

.page a:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* =======================
   Loading Animation
======================= */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-light);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s var(--transition-smooth);
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--primary-color);
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* =======================
   Modern Responsive Design
======================= */
@media (max-width: 768px) {
  .page h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    letter-spacing: 0.05em;
  }
  
  .page p {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }
  
  .nav-boxes {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
    gap: 15px;
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: none;
  }
  
  .nav-box {
    width: 60px;
    height: 60px;
    font-size: 0.65rem;
  }
  
  .menu {
    width: 260px;
    left: -260px;
    padding: 5rem 1.2rem 1.5rem;
  }
  
  .menu a {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 1rem;
  }
  
  .page img {
    max-width: 95%;
  }
  
  .nav-boxes {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px;
    gap: 10px;
  }
  
  .nav-box {
    width: 50px;
    height: 50px;
    font-size: 0.6rem;
  }
  
  .menu {
    width: 240px;
    left: -240px;
  }
}

/* =======================
   Smooth Scroll Behavior
======================= */
html {
  scroll-behavior: smooth;
}

/* =======================
   Focus States for Accessibility
======================= */
.nav-box:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* =======================
   Signpost Layout
======================= */
.signpost-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  perspective: 1000px;
}

.signpost {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.signpost-pole {
  display: none;
}

.signpost-boards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.sign-board {
  background: transparent;
  border: 3px solid rgba(253, 247, 240, 0.6);
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  min-width: 250px;
  width: 100%;
  margin: 5px 0;
}

.sign-board::before {
  display: none;
}

.sign-board:nth-child(1) { transform: none; }
.sign-board:nth-child(1) .sign-text { transform: none; }
.sign-board:nth-child(2) { transform: none; }
.sign-board:nth-child(3) { transform: none; }
.sign-board:nth-child(3) .sign-text { transform: none; }
.sign-board:nth-child(4) { transform: none; }
.sign-board:nth-child(5) { transform: none; }
.sign-board:nth-child(5) .sign-text { transform: none; }
.sign-board:nth-child(6) { transform: none; }

.sign-board:hover {
  transform: scale(1.05);
  background: rgba(253, 247, 240, 0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sign-board:nth-child(1):hover {
  transform: scale(1.05);
  background: rgba(253, 247, 240, 0.1);
}

.sign-board:nth-child(2):hover {
  transform: scale(1.05);
  background: rgba(253, 247, 240, 0.1);
}

.sign-board:nth-child(3):hover {
  transform: scale(1.05);
  background: rgba(253, 247, 240, 0.1);
}

.sign-board:nth-child(4):hover {
  transform: scale(1.05);
  background: rgba(253, 247, 240, 0.1);
}

.sign-board:nth-child(5):hover {
  transform: scale(1.05);
  background: rgba(253, 247, 240, 0.1);
}

.sign-board:nth-child(6):hover {
  transform: scale(1.05);
  background: rgba(253, 247, 240, 0.1);
}

.sign-text {
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  white-space: normal;
  text-align: center;
}

.attractions-heading {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
  margin: 15px 0 10px 0;
  padding: 10px 0;
  border-bottom: 2px solid rgba(253, 247, 240, 0.3);
  border-top: 2px solid rgba(253, 247, 240, 0.3);
}

.share-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.share-links p {
  margin: 0;
}

.share-links a {
  display: block;
  background: rgba(253, 247, 240, 0.1);
  border: 2px solid rgba(253, 247, 240, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--transition-smooth);
  text-align: center;
}

.share-links a:hover {
  background: rgba(253, 247, 240, 0.2);
  border-color: rgba(253, 247, 240, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-button {
  display: block;
  background: var(--primary-color);
  border: 2px solid var(--text-light);
  border-radius: 12px;
  padding: 15px 30px;
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--transition-smooth);
  text-align: center;
  margin: 2rem auto;
  cursor: pointer;
}

.share-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.nav-link {
  display: block;
  background: rgba(253, 247, 240, 0.1);
  border: 2px solid rgba(253, 247, 240, 0.3);
  border-radius: 12px;
  padding: 12px 20px;
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--transition-smooth);
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.nav-link:hover {
  background: rgba(253, 247, 240, 0.2);
  border-color: rgba(253, 247, 240, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* =======================
   Modal Styles
======================= */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease-in-out;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #000000;
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: slideIn 0.3s ease-out;
  position: relative;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--text-light);
  padding: 20px 25px;
  border-radius: 17px 17px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-header h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close {
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s var(--transition-smooth);
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.modal-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.modal-body {
  padding: 25px;
  color: #ffffff;
}

.modal-body p {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 12px 0;
  font-weight: 400;
}

.modal-body p strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Modal Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Responsive Design for Signpost */
@media (max-width: 768px) {
  .signpost-container {
    margin-top: 1rem;
    padding: 0 20px;
  }
  
  .signpost {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .signpost-pole {
    display: none;
  }
  
  .signpost-boards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .sign-board {
    min-width: auto;
    width: 100%;
    padding: 8px 12px;
    font-size: 0.85rem;
    transform: none !important;
    margin: 5px 0;
  }
  
  .sign-board:nth-child(1) .sign-text { transform: none; }
  .sign-board:nth-child(3) .sign-text { transform: none; }
  .sign-board:nth-child(5) .sign-text { transform: none; }
  
  .sign-text {
    font-size: 0.8rem;
    white-space: normal;
    text-align: center;
  }
  
  .sign-board:hover {
    transform: none !important;
    background: rgba(253, 247, 240, 0.1);
  }
  
  .sign-board:nth-child(1):hover,
  .sign-board:nth-child(2):hover,
  .sign-board:nth-child(3):hover,
  .sign-board:nth-child(4):hover,
  .sign-board:nth-child(5):hover,
  .sign-board:nth-child(6):hover {
    transform: none !important;
    background: rgba(253, 247, 240, 0.1);
  }
  
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .modal-header {
    padding: 15px 20px;
  }
  
  .modal-header h3 {
    font-size: 1.2rem;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-body p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .signpost-container {
    margin-top: 0.5rem;
    padding: 0 15px;
  }
  
  .signpost {
    max-width: 320px;
  }
  
  .signpost-boards {
    gap: 8px;
  }
  
  .sign-board {
    padding: 6px 10px;
    font-size: 0.8rem;
    margin: 3px 0;
  }
  
  .sign-text {
    font-size: 0.75rem;
  }
  
  .modal-content {
    width: 98%;
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 12px 15px;
  }
  
  .modal-header h3 {
    font-size: 1rem;
  }
  
  .modal-body {
    padding: 15px;
  }
  
  .modal-body p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

@media (max-width: 360px) {
  .signpost-container {
    margin-top: 0.25rem;
    padding: 0 10px;
  }
  
  .signpost {
    max-width: 280px;
  }
  
  .signpost-boards {
    gap: 6px;
  }
  
  .sign-board {
    padding: 5px 8px;
    margin: 2px 0;
  }
  
  .sign-text {
    font-size: 0.7rem;
  }
}
.info-section {
  background: transparent;
  border: 2px solid rgba(253, 247, 240, 0.3);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s var(--transition-smooth);
}

.info-section:hover {
  background: rgba(253, 247, 240, 0.05);
  border-color: rgba(253, 247, 240, 0.4);
  box-shadow: none;
}

.section-header {
  background: transparent;
  color: var(--text-light);
  padding: 18px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s var(--transition-smooth);
}

.section-header:hover {
  background: rgba(253, 247, 240, 0.05);
}

.section-header h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.close-btn {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.8;
  transition: all 0.3s var(--transition-smooth);
}

.close-btn:hover {
  opacity: 1;
  transform: scale(1.2);
}

.section-content {
  background: transparent;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s var(--transition-smooth);
}

.section-content.show {
  padding: 25px;
  max-height: 1000px;
}

.section-content p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  margin: 10px 0;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.section-content p strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Subsection Styles */
.subsection {
  margin-bottom: 15px;
  border: 1px solid rgba(253, 247, 240, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s var(--transition-smooth);
}

.subsection:hover {
  background: transparent;
}

.subsection-header {
  background: transparent;
  color: var(--text-light);
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s var(--transition-smooth);
}

.subsection-header:hover {
  background: rgba(253, 247, 240, 0.05);
}

.subsection-header h5 {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subsection-content {
  background: transparent;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s var(--transition-smooth);
}

.subsection-content.show {
  padding: 20px;
  max-height: 500px;
}
