/* ===== BASE STYLES ===== */
:root {
  --primary: #4a7c59;
  --primary-light: #8fa68e;
  --primary-dark: #2d5a3d;
  --secondary: #c4a484;
  --secondary-light: #d4b894;
  --background: #f8f4e8;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --border: #e0d7c7;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header, footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 20px 0;
}

main {
  padding: 20px 0;
}

/* ===== HEADER ===== */
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  opacity: 0.9;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(74, 124, 89, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.key-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
  font-size: 1.1rem;
}

.key-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.key-info-item::before {
  content: "✓";
  color: var(--white);
  font-weight: bold;
}

/* ===== BOOK A VISIT BUTTON ===== */
.btn {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 2px solid var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

/* ===== NAVIGATION ===== */
.nav-menu {
  background-color: var(--primary-light);
  padding: 15px 0;
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-list a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.nav-list a:hover {
  background-color: var(--primary);
}

.nav-list a.active {
  background-color: var(--secondary);
}

/* ===== MAIN CONTENT ===== */
.content-section {
  margin-bottom: 50px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
}

.content-section h1,
.content-section h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.content-section h1 {
  font-size: 2rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
}

.content-section h2 {
  font-size: 1.5rem;
  margin-top: 30px;
}

.content-section p {
  margin-bottom: 18px;
}

.content-section ul,
.content-section ol {
  margin: 20px 0;
  padding-left: 25px;
}

.content-section li {
  margin-bottom: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  background-color: #f0f8f0;
  padding: 25px;
  margin: 25px 0;
  border-left: 4px solid var(--primary);
  border-radius: 5px;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary);
  margin-top: 15px;
  font-style: italic;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  background-color: #f0f0f0;
  padding: 25px;
  border-radius: 8px;
  margin: 20px 0;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info strong {
  color: var(--primary);
}

/* ===== VIDEO EMBED ===== */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 30px 0;
  border-radius: 8px;
  background-color: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-list {
    gap: 15px;
  }
  
  .nav-list a {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
  
  .content-section {
    padding: 20px;
  }
  
  .logo {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .key-info {
    font-size: 1rem;
    gap: 15px;
  }
  
  .btn-large {
    padding: 15px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-list {
    flex-direction: column;
    align-items: center;
  }
  
  .header-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .key-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  body {
    background-color: white;
    color: black;
  }
  
  header, .nav-menu, footer {
    display: none;
  }
  
  .content-section {
    box-shadow: none;
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
}