/* ---- Header / Nav ---- */
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(20px);
  background:rgba(255, 255, 255, 0.9);
  border-bottom:1px solid var(--border);
  box-shadow:0 1px 3px rgba(0,0,0,.1);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:24px; height:90px;
}
.brand{ display:flex; align-items:center; gap:20px; font-weight:700; font-size:18px; margin-left:48px; }
.brand .logo{
  display:grid; place-items:center; 
}
.brand .logo img{
  object-fit:contain;
}
nav ul{ display:flex; align-items:center; gap:8px; list-style:none; margin:0; padding:0 }
nav a{ 
  padding:8px 16px; 
  border-radius:var(--radius); 
  font-weight:500; 
  font-size:14px;
  color:var(--ink);
  transition:all .2s ease;
}
nav a:hover,
nav a.active{ 
  background:var(--brand-light);
  color:var(--brand);
}
.nav .cta{ margin-left:16px }

/* ---- Burger Menu (hidden by default) ---- */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}

.burger-menu span {
  width: 24px;
  height: 3px;
  background: var(--ink);
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ---- Section Frames ---- */
section{ padding:100px 0 }
.section-head{
  text-align:center; margin-bottom:60px; max-width:700px; margin-left:auto; margin-right:auto;
}

/* ---- Grid System ---- */
.grid{ display:grid; gap:24px }
.grid.cols-3{ grid-template-columns: repeat(3, minmax(0,1fr)) }
.grid.cols-2{ grid-template-columns: repeat(2, minmax(0,1fr)) }

/* ---- Social Links ---- */
.social{ display:flex; justify-content:center; gap:16px; margin-bottom:24px }
.social a{ 
  display:grid; place-items:center; 
  width:44px; height:44px; 
  border-radius:var(--radius); 
  border:1px solid var(--border); 
  background:var(--paper);
  transition:all .2s ease;
}
.social a:hover{
  background:var(--brand-light);
  border-color:var(--brand);
  transform:translateY(-2px);
}

/* ---- Links ---- */
.links{ 
  display:flex; 
  justify-content:center; 
  gap:24px; 
  margin-top:16px; 
  flex-wrap:wrap;
}
.links a{
  font-size:14px;
  font-weight:500;
  transition:color .2s ease;
}
.links a:hover{
  color:var(--brand);
}

/* ---- Page Navigation (under hero) ---- */
.page-nav-section {
  padding: 40px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.page-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.page-nav a {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  transition: all .2s ease;
  border: 1px solid transparent;
}

.page-nav a:hover {
  background: var(--brand-light);
  color: var(--brand);
  border-color: rgba(5, 150, 105, 0.2);
}

/* Footer Contact Information */
.footer-contact {
  margin-bottom: 30px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--brand-light);
  border-radius: var(--radius);
  border: 1px solid rgba(5, 150, 105, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(5, 150, 105, 0.1);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.contact-item a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.contact-item a:hover {
  color: var(--brand-hover);
}

.contact-item svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .contact-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Footer Grid Layout */
.footer-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin: 40px 0 30px;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer-column h4 {
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Brand Mission Section */
.footer-mission {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 20px;
  padding: 30px 20px;
  background: linear-gradient(135deg, var(--brand-light) 0%, rgba(5, 150, 105, 0.05) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(5, 150, 105, 0.1);
}

.brand-signature {
  font-style: italic;
  color: var(--brand);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* Booking Section */
.footer-booking {
  background: var(--brand);
  color: white;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.footer-booking h4 {
  color: white;
  margin-bottom: 8px;
}

.booking-notice {
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.booking-link {
  display: inline-block;
  background: white;
  color: var(--brand);
  padding: 12px 24px;
  border-radius: calc(var(--radius) - 2px);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.booking-link:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Information Sections */
.footer-info-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.footer-info-item:last-child {
  border-bottom: none;
}

.footer-info-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.footer-info-item.partners p {
  color: var(--ink);
  font-weight: 500;
}

.footer-info-item.location p {
  color: var(--brand);
  font-style: italic;
  font-weight: 500;
}

/* Contact Item Styling within Footer */
.footer-info-item.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--brand-light);
  border-radius: var(--radius);
  border: 1px solid rgba(5, 150, 105, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.footer-info-item.contact-item:hover {
  background: rgba(5, 150, 105, 0.1);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.footer-info-item.contact-item a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.footer-info-item.contact-item a:hover {
  color: var(--brand-hover);
}

.footer-info-item.contact-item img {
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-info-item.contact-item:hover img {
  opacity: 1;
}

/* Privacy Links */
.footer-privacy {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.privacy-links {
  margin: 0;
  font-size: 12px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-link,
.terms-link,
.accessibility-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.privacy-link:hover,
.terms-link:hover,
.accessibility-link:hover {
  color: var(--brand);
  background: var(--brand-light);
}

/* Footer Social Section */
.footer-social-section {
  text-align: center;
  margin: 30px 0 20px;
  padding: 25px 0;
  border-top: 1px solid var(--border);
}

.footer-social-section h4 {
  color: var(--brand);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--brand-light);
  border-radius: 12px;
  border: 1px solid rgba(5, 150, 105, 0.2);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.footer-social a:hover img {
  filter: brightness(0) invert(1); /* Makes icons white on hover */
}

.footer-social img {
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
    margin: 30px 0 20px;
  }
  
  .footer-mission {
    padding: 24px 16px;
    margin-bottom: 16px;
  }
  
  .brand-signature {
    font-size: 16px;
  }
  
  .footer-booking {
    padding: 20px;
  }
  
  .booking-notice {
    font-size: 13px;
  }
  
  .booking-link {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .footer-column h4 {
    font-size: 13px;
  }
  
  .footer-info-item p {
    font-size: 12px;
  }
  
  .privacy-links {
    flex-direction: column;
    gap: 12px;
  }
}
