/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

body.loaded {
  opacity: 1;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #222;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Navigation */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 2rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #e67e22;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-1 {
  background-image: url('images/mandolin.jpg');
}

.hero-slide-2 {
  background-image: url('images/rainier.jpg');
}

.hero-slide-3 {
  background-image: url('images/strawberries.jpg');
}

.hero-slide-4 {
  background-image: url('images/seabeck.jpg');
}

.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 0 2rem;

}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-cta .cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #e67e22;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin: 0 0.5rem;
  transition: background-color 0.3s ease;
}

.hero-cta .cta-button:hover {
  background-color: #d35400;
}

.hero-cta .cta-button.secondary {
  background-color: transparent;
  border: 2px solid #fff;
}

.hero-cta .cta-button.secondary:hover {
  background-color: #fff;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: #fff;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-logo {
  flex: 0 0 auto;
}

.about-content {
  flex: 1;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: #f8f8f8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-item {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background-color: #fff;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-item {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-item .price {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 1rem;
  font-weight: 600;
}

.pricing-item ul {
  list-style: none;
  margin-bottom: 1rem;
}

.pricing-item ul li {
  margin-bottom: 0.5rem;
}

/* Recommendations Section */
.recommendations {
  padding: 5rem 0;
  background-color: #f8f8f8;
}

.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-style: italic;
}

.client-name {
  font-weight: 600;
  color: #e67e22;
  text-align: right;
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}


/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  color: #fff;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #e67e22;
}

/* Scroll Animations */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    margin: 0.5rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .services-grid,
  .pricing-table {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}