@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Brand Colors - Colorful & Contrasting */
  --brand-main: #0B7A75;        /* Deep Teal */
  --brand-accent: #D7816A;      /* Warm Coral */
  --ui-base-light: #F8F9FA;     /* Off White */
  --ui-base-dark: #2D3142;      /* Dark Slate */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0B7A75 0%, #119D97 100%);
  --gradient-dark: linear-gradient(135deg, #2D3142 0%, #1F222E 100%);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Inter', sans-serif;
}

body {
  font-family: var(--font-text);
  color: var(--ui-base-dark);
  background-color: var(--ui-base-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Custom Semantic Utility Classes */
.layout-wrapper-main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-brand-main { color: var(--brand-main); }
.text-brand-accent { color: var(--brand-accent); }
.bg-brand-main { background-color: var(--brand-main); }
.bg-brand-accent { background-color: var(--brand-accent); }
.bg-ui-dark { background-color: var(--ui-base-dark); }
.bg-ui-light { background-color: var(--ui-base-light); }

/* Navigation Styles */
.site-top-nav {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-links-row a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-links-row a:hover {
  color: var(--brand-accent);
}

#mobile-menu-layer {
  display: none;
}
#mobile-menu-layer.menu-active {
  display: block;
}

/* Custom List Styling for Reserve Page */
.method-list-items {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.method-list-items li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.method-list-items li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: -2px;
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--brand-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  font-family: var(--font-text);
}
.method-list-items {
  counter-reset: item;
}

/* Image formatting */
.visual-frame-rounded {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.visual-frame-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ui-base-dark);
  color: var(--ui-base-light);
  z-index: 9999;
  padding: 1.5rem;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
  display: none;
}
.cookie-content-flow {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-content-flow {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.cookie-btn-accept {
  background-color: var(--brand-accent);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: opacity 0.3s;
}
.cookie-btn-accept:hover { opacity: 0.9; }
.cookie-btn-decline {
  background-color: #4B5563;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: opacity 0.3s;
}
.cookie-btn-decline:hover { opacity: 0.9; }

/* Buttons */
.action-trigger-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
}
.action-trigger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Minimum Height for Legal Pages */
.legal-viewport-min {
  min-height: calc(100vh - 300px);
}