/* 1. RESET & VARIABLES
* {
  box-sizing: border-box;
}

:root {
  color-scheme: light dark;
  --gh-green: #7a9c78;
  --gh-terracotta: #;
  --gh-bg: #fdfdfd;
  --gh-card-bg: #ffffff;
  --gh-nav-bg: rgba(255, 255, 255, 0.7);
  --gh-text-main: #333333;
  --gh-text-muted: #555555;
  --gh-shadow: rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --gh-bg: #121212;
    --gh-card-bg: #1e1e1e;
    --gh-nav-bg: rgba(30, 30, 30, 0.7);
    --gh-text-main: #e0e0e0;
    --gh-text-muted: #a0a0a0;
    --gh-shadow: rgba(0, 0, 0, 0.5);
  }
}

/* 2. BASE STYLES */
/* html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* Prevent side-scroll only */
/* background-color: var(--gh-bg);
  color: var(--gh-text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
} */

/* h1,
h2,
h3 {
  margin-top: 0;
} */

/* 3. NAVIGATION (Glassmorphism) */
/* nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--gh-nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  border-bottom: 4px solid var(--gh-green);
  transition: all 0.3s ease;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
}

nav a {
  text-decoration: none;
  color: var(--gh-text-main);
  margin-left: 1.5rem;
  font-weight: 600;
}

nav a:hover {
  color: var(--gh-green);
} */

/* Theme-Specific Nav Overrides
.cafe-theme nav {
  border-bottom-color: var(--gh-terracotta);
}

.cafe-theme nav a.active {
  color: var(--gh-terracotta);
  border-bottom: 2px solid var(--gh-terracotta);
} */

/* 4. HERO & CAROUSEL */
/* .hero {
  padding: 80px 2rem 2rem;
  /* Adjusted for nav height */
/* text-align: center;
  background: var(--gh-bg);
  min-height: 30vh; */
/* Gives it some breathing room */
/* display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide-content {
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end; */
/* Keeps caption to the right */
/* }

.slide-caption {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 1.5rem 2rem;
  margin: 0 2rem 4rem 0;
  border-right: 5px solid var(--gh-terracotta);
  max-width: 400px;
  text-align: right;
}

.slide-caption h2 {
  color: white;
  margin-bottom: 5px;
}

.slide-caption p {
  font-style: italic;
  font-size: 0.9rem;
} */

/* 5. COMPONENTS (Cards & Grids) */
/* .info-grid,
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem; */
/* Reduced from 4rem to stop it feeling so 'distant' */
/* max-width: 1200px;
  margin: 0 auto;
}

.card,
.room-card,
.cafe-card {
  padding: 2rem;
  /* Increased inner padding for a 'premium' feel */
/* background: var(--gh-card-bg);
border-radius: 12px;
border-top: 4px solid var(--gh-green);
box-shadow: 0 4px 15px var(--gh-shadow);
display: flex;
flex-direction: column;
gap: 1rem;
*/
/* Adds consistent space between the H3 and the P */
/* }

.card,
.room-card {
  border-top: 4px solid var(--gh-green);
}

.cafe-card,
.room-card:hover {
  transform: translateY(-5px);
} */

/* Cafe specific border */
/* .cafe-theme .card,
.cafe-card {
  border-top-color: var(--gh-terracotta);
}

/* Room Card specific content */
/* .room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
} */

/* .room-card-content {
  padding: 1.5rem;
}

.room-card h3 {
  color: var(--gh-green);
  margin-bottom: 10px;
} */

/* 6. CAFE MENU STYLES */
/* .menu-list {
  list-style: none;
  padding: 0;
}

.menu-item {
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--gh-terracotta);
  padding-bottom: 0.5rem;
}

.menu-item strong {
  color: var(--gh-terracotta);
  font-size: 1.1rem;
}

.cafe-accent {
  color: var(--gh-terracotta);
  font-weight: bold;
} */

/* 7. INTERACTIVE & UTILITY */
/* .btn-terracotta {
  background-color: var(--gh-terracotta);
  color: #ffffff !important;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn-terracotta:hover {
  filter: brightness(1.1);
} */

/* Splide Pagination Colors */
/* .splide__pagination__page.is-active {
  background: var(--gh-terracotta) !important;
} */

/* * {
  outline: 1px solid red !important;
} */

/* When the 'group' is hovered, find the 'dropdown-menu' and show it */
.group:hover .dropdown-menu {
  display: block !important;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f7fbf0;
}

h1,
h2,
h3,
h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}