@import url('https://fonts.googleapis.com/css2?family=Moon+Dance&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  /* 🌿 Primary Colors */
  --color-primary: #2f8100;       /* Olive Green */
  --color-primary-light: #77c24c; /* Lighter Olive */
  --color-primary-dark: #1e4706;  /* Darker Olive */

  /* 🤍 Neutral / Background */
  --color-bg: #fffeef;            /* Cream Background */
  --color-bg-transparent: #f5f1e89e;/* Cream Background Transparent*/
  --color-bg-soft: #EAE3D2;       /* Section Background */
  --color-white: #FFFFFF;

  /* 🌳 Earthy Accents */
  --color-brown: #7A5C3E;         /* Wood Brown */
  --color-brown-light: #A67C52;   /* Light Brown */

  /* 🌅 Optional Accent */
  --color-accent: #D6A85A;        /* Warm Gold */

  /* 🖤 Text Colors */
  --color-text: #1e1e1e;          /* Main Text */
  --color-text-light: #333333;    /* Secondary Text */
  --color-heading: #6f2d00;
  --nav-texts: #2f8100;
  

  /* 🔤 Font Family */
  --font-heading: "Open Sans", sans-serif;
  --font-body: 'Poppins', sans-serif;
  --special-font: 'Moon Dance', cursive;
  --sofisticated-font: "Open Sans", sans-serif;
  



  /* 🔠 Font Sizes */
  --fs-h1: 48px;
  --fs-h2: 38px;
  --fs-h3: 24px;
  --fs-body: 16px;
  --fs-small: 14px;

  /* 📏 Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 44px;
  --spacing-xl: 40px;

  /* 🔲 Border Radius */
  --radius-sm: 6px;
  --radius-md: 30px;
  --radius-lg: 16px;

  /* 🌫️ Shadows */
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 6px 18px rgba(0, 0, 0, 0.12);

  /* ⏱️ Transitions */
  --transition: all 0.3s ease;
}


/* 🌍 Global Reset + Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌐 HTML Setup */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* 🏡 Body Styling */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  letter-spacing: 0.2px;

  /* Smooth rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Better text rendering */
  text-rendering: optimizeLegibility;
}

/* 🖋️ Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sofisticated-font);
  color: var(--color-heading);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

/* 📄 Paragraph */
p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
}

/* 🔗 Links */
a {
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-light);
}

/* 🖼️ Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

/* 📋 Lists */
ul, ol {
  list-style: none;
}

/* 🧾 Buttons Reset */
button {
  border: none;
  outline: none;
  font-family: inherit;
  cursor: pointer;
}

/* 📦 Container (optional but useful) */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ✨ Section Spacing */
section {
  padding: var(--spacing-xl) 0;
}


.btn {
  padding: 11px 29px;
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: var(--transition);
}



/* 🏡 Rooms Hero */
.rooms-hero {
  position: relative;
  height: 100vh;
  background: url('/assets/images/homepage/dining.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 🌫️ Overlay */
.rooms-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(30, 71, 6, 0.6),
    rgba(0, 0, 0, 0.5)
  );
}

/* 📦 Content */
.rooms-hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  color: var(--color-white);
}

/* ✨ Eyebrow */
.rooms-eyebrow {
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-bg-soft);
  margin-bottom: var(--spacing-sm);
  display: inline-block;
}

/* 🏷️ Heading */
.rooms-hero h1 {
  font-size: 52px;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.rooms-hero h1 .highlight {
  color: var(--color-accent);
}

/* 📝 Text */
.rooms-hero p {
  font-size: 18px;
  color: #f1f1f1;
  margin-bottom: var(--spacing-lg);
}

/* 🔘 Button */
.rooms-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 500;
}

/* Hover */
.rooms-hero-btn:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
  transform: translateX(4px);
}





/* 🍽️ Section */
.menu-section {
  background: #f5f1e8;
  text-align: center;
}

.menu-eyebrow {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Header */
.menu-header h2 {
  font-family: var(--special-font);
  font-size: var(--fs-h2);
  margin-bottom: 10px;
}

.menu-header p {
  color: #666;
  margin-bottom: 30px;
}

/* Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 20px;
  background: #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #2f8100;
  color: #fff;
}

/* Menu Content */
.menu-content {
  max-width: 600px;
  margin: auto;
}

/* Hide by default */
.menu-box {
  display: none;
}

/* Active */
.menu-box.active {
  display: block;
}

/* Items */
.menu-item {
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.menu-item h4 {
  margin-bottom: 5px;
}

.menu-item p {
  font-size: 13px;
  color: #666;
}

/* CTA */
.menu-cta {
  margin-top: 30px;
}






/* 🌿 Section */
.faq-section {
  background: var(--color-bg-soft);
  padding: 80px 0;
}

/* 📝 Header */
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-eyebrow {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}

.faq-header h2{
  font-family: var(--special-font);
  font-size: var(--fs-h2);
}

/* 📦 Wrapper */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* 📄 Item */
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

/* ❓ Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 500;
}

/* 🔽 Icon */
.faq-question svg {
  transition: transform 0.3s ease;
}

/* 💬 Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.3s ease;
}

/* ✅ Active State */
.faq-item.active .faq-answer {
  max-height: 150px;
  padding: 10px 20px 20px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}