/* Base Styles */
:root {
  --primary-color: #4a7c59;
  --primary-light: #6b9e76;
  --primary-dark: #345c40;
  --secondary-color: #f4a259;
  --secondary-light: #f6b77d;
  --secondary-dark: #e88c2c;
  --text-color: #333333;
  --light-text: #666666;
  --lighter-text: #999999;
  --background-color: #ffffff;
  --light-background: #f9f9f9;
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}
.hidden-h1 {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

ul {
  list-style-type: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--primary-color);
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-menu li a:hover, .nav-menu li a.active {
  color: var(--primary-color);
  background-color: rgba(74, 124, 89, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/slide02.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}


.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-background);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.feature-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.feature-card p {
  padding: 0 20px 20px;
  color: var(--light-text);
}

/* About Preview Section */
.about-preview {
  padding: 80px 0;
}

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--light-text);
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow-color);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--light-background);
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow-color);
  text-align: left;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  color: var(--primary-color);
  font-weight: 500;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.cta p {
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.cta .btn-primary:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3, .footer-links h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-info p {
  margin-bottom: 10px;
}

.footer-info a, .footer-links a {
  color: #ccc;
}

.footer-info a:hover, .footer-links a:hover {
  color: white;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h2 {
  color: white;
  font-size: 2.5rem;
  margin: 0;
}

/* About Page Styles */
.about-section, .experience-section, .alpaca-info, .location-section {
  padding: 60px 0;
}

.about-section {
  background-color: var(--light-background);
}

.about-content, .alpaca-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.experience-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.experience-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.experience-card h4 {
  padding: 20px 20px 10px;
}

.experience-card p {
  padding: 0 20px 20px;
  color: var(--light-text);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

/* Booking Page Styles */
.booking-intro, .booking-system, .booking-info {
  padding: 60px 0;
}

.booking-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
}

.booking-text ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.booking-widget {
  margin-top: 30px;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.info-card {
  background-color: var(--light-background);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.info-card h4 {
  margin-bottom: 15px;
}

.info-card p {
  margin-bottom: 20px;
}

/* FAQ Page Styles */
.faq-section {
  padding: 60px 0;
}

.faq-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Contact Page Styles */
.contact-section, .map-section {
  padding: 60px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-form-container {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.map-container {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-preview .container, .about-content, .alpaca-content, .location-content, .booking-content, .contact-content {
    grid-template-columns: 1fr;
  }
  
  .about-image, .alpaca-image, .booking-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px var(--shadow-color);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .page-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 80px 20px;
  }
  
  .features, .about-preview, .testimonials, .cta, .about-section, .experience-section, .alpaca-info, .location-section, .booking-intro, .booking-system, .booking-info, .faq-section, .contact-section, .map-section {
    padding: 40px 0;
  }
  
  .feature-card, .testimonial-card, .experience-card, .info-card {
    margin-bottom: 20px;
  }
}