/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #2d5016;
  --light-green: #4a7c2a;
  --cream: #f5f5e8;
  --light-cream: #fafaf5;
  --yellow: #f4d03f;
  --dark-yellow: #d4b02f;
  --white: #ffffff;
  --dark-gray: #333333;
  --light-gray: #f0f0f0;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --blue: #3498db;
  --red: #e74c3c;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo a {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-green);
  text-decoration: none;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: var(--primary-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-green);
  transition: all 0.3s;
  border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 70%;
  height: 100vh;
  background-color: var(--white);
  z-index: 1000;
  padding-top: 80px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  padding: 0 20px;
}

.mobile-nav li {
  margin-bottom: 20px;
}

.mobile-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: color 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary-green);
}

.mobile-nav-actions {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 20px;
  background-color: var(--blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 18px;
  transition: background-color 0.3s;
  border-bottom: none !important;
}

.mobile-phone-btn:hover {
  background-color: #2980b9;
  color: var(--white);
}

.mobile-btn-primary {
  display: block;
  padding: 15px 20px;
  background-color: var(--primary-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  transition: background-color 0.3s;
  border-bottom: none !important;
}

.mobile-btn-primary:hover {
  background-color: var(--light-green);
  color: var(--white);
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background-color: var(--blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.phone-btn:hover {
  background-color: #2980b9;
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background-color: #5ebb21;
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: var(--light-green);
}

/* Hero Section */
.hero {
  background: linear-gradient(
    180deg,
    var(--primary-green) 0%,
    var(--cream) 100%
  );
  /* padding: 100px 0; */
  text-align: center;
  color: var(--white);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--yellow);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.8;
  color: var(--white);
}

.hero-link {
  display: inline-block;
  margin-left: 10px;
  padding: 8px 20px;
  background-color: var(--yellow);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.hero-link:hover {
  background-color: var(--dark-yellow);
}

/* Cookie Banner */
.cookie-banner {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 20px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-accept,
.btn-reject {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s;
}

.btn-accept {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-reject {
  background-color: var(--red);
  color: var(--white);
}

.btn-accept:hover,
.btn-reject:hover {
  opacity: 0.8;
}

/* Featured Collections */
.featured-collections {
  background-color: var(--cream);
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: var(--primary-green);
  margin-bottom: 50px;
  font-weight: bold;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.collection-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.collection-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 24px;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.card-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.btn-card {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-card:hover {
  background-color: var(--light-green);
}

/* Why Choose Us */
.why-choose-us {
  background-color: var(--light-cream);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.feature-item {
  padding: 30px;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--text-light);
}

/* Testimonials */
.testimonials {
  background-color: var(--cream);
  padding: 80px 0;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 20px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  text-align: right;
  color: var(--text-light);
  font-weight: 600;
}

/* Our Story */
.our-story {
  padding: 80px 0;
  background-color: var(--light-cream);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-text {
  padding: 20px;
}

.story-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
}

.story-image {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Instagram Feed */
.instagram-feed {
  background-color: var(--cream);
  padding: 80px 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.instagram-item {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-cta {
  text-align: center;
}

/* Newsletter */
.newsletter {
  background-color: var(--blue);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.newsletter h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 15px 30px;
  background-color: var(--white);
  color: var(--blue);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: var(--light-gray);
}

/* Footer */
.footer {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-column p {
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-column a:hover {
  opacity: 0.8;
}

.footer-link {
  /* display: flex; */
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: nowrap;
  }

  .burger-menu {
    display: flex;
    order: 2;
  }

  .nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .story-content {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }
}
