:root {
  --primary-color-1: #8C634A; /* Earthy brown - mountain theme */
  --primary-color-2: #546A76; /* Slate blue - sky/lake */
  --primary-color-3: #88A09E; /* Sage green - forest */
  --primary-color-4: #D8B39C; /* Warm beige - wood */
  --primary-color-5: #E7D7C9; /* Soft cream - snow */
  
  --light-color-1: #F5F1ED;
  --light-color-2: #F8F5F2;
  --dark-color-1: #2A2926;
  --dark-color-2: #413F3D;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-color-1);
  background-color: var(--light-color-1);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--dark-color-1);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color-1);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-2);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color-1);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--primary-color-2);
  color: white;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.navbar-nav {
  flex-direction: row;
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  color: var(--dark-color-1);
  font-weight: 600;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color-1);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 600px;
}

.hero-title-1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-desc-1 {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Section Styling */
section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color-1);
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-name {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-price {
  font-size: 1.2rem;
  color: var(--primary-color-1);
  font-weight: bold;
  margin-bottom: 15px;
}

.service-desc {
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* About */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: auto;
}

.about-text {
  flex: 1;
}

.about-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-feature {
  padding: 15px;
  background-color: rgba(var(--primary-color-5-rgb), 0.1);
  border-radius: 8px;
}

.about-feature-name {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-color-1);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
}

.team-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-member-role {
  color: var(--primary-color-1);
  font-style: italic;
}

/* Reviews Slider */
.reviews-slider {
  position: relative;
  overflow: hidden;
}

.reviews-slide {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.reviews-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.reviews-text:before,
.reviews-text:after {
  content: '"';
  font-size: 50px;
  color: var(--primary-color-3);
  opacity: 0.2;
  position: absolute;
}

.reviews-text:before {
  top: -20px;
  left: -10px;
}

.reviews-text:after {
  bottom: -40px;
  right: -10px;
}

.reviews-author {
  font-weight: bold;
  color: var(--primary-color-1);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  outline: none;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-check-input {
  margin-right: 10px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: white;
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question:after {
  transform: rotate(180deg);
}

.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: 20px;
  max-height: 1000px;
}

/* Footer */
footer {
  background-color: var(--dark-color-1);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.footer-desc {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--primary-color-1);
  bottom: -10px;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 10px;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-link a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 15px;
  color: var(--primary-color-1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .navbar-nav {
  flex-direction: row;
    display: none;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.2rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .team-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 576px) {
  .hero-title-1 {
    font-size: 1.8rem;
  }
  
  .team-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 20px;
  }
} 