/* Updated color scheme to use #9ddcca as primary and #597877 as secondary */
:root {
  --primary: #9ddcca;
  --secondary: #597877;
  --background: #ffffff;
  --foreground: #4b5563;
  --card: #f9fafb;
  --muted: #f3f4f6;
  --border: #e5e7eb;
  --accent: #9ddcca;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Source Sans Pro", sans-serif;

  /* Spacing */
  --container-padding: 1rem;
  --section-padding: 5rem 0;
  --border-radius: 0.5rem;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 1rem 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Added logo styling */
.brand-logo {
  margin-top: 5px;
  height: 60px;
  width: auto;
}

.brand-text {
  text-align: left;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0px;
}

.brand-subtitle {
  font-size: 0.875rem;
  color: var(--secondary);
  font-style: italic;
  margin-top:-10px;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--foreground);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 12rem 0 10rem;
  text-align: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Added background image and overlay for more appealing hero */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/placeholder.svg?height=800&width=1200");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) / 8, var(--secondary) / 8);
  z-index: 0;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--secondary);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.375rem;
  color: var(--foreground);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: color-mix(in srgb, var(--primary) 90%, black);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: color-mix(in srgb, var(--secondary) 90%, black);
  transform: translateY(-2px);
}

/* Enhanced freebie button styling with larger text */
.btn-freebie {
  padding: 1.25rem 2rem !important;
  width: 100%;
  justify-content: center;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-title-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-icon {
  font-size: 3rem;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--secondary);
  font-style: italic;
}

/* Products Section */
.products {
  padding: var(--section-padding);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--foreground);
  line-height: 1.6;
}

/* Story Section */
.story {
  padding: var(--section-padding);
  background: var(--muted);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-text p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

/* About Section */
.about {
  padding: var(--section-padding);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Shops Section */
.shops {
  padding: var(--section-padding);
  background: var(--muted);
}

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

.shop-card {
  background: var(--background);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.shop-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.shop-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.shop-description {
  color: var(--secondary);
}

/* Freebies Section */
.freebies {
  padding: var(--section-padding);
}

/* Updated freebies grid to display all 4 in one row */
.freebies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.freebie-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.freebie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Removed freebie icon styling since icons are removed */
.freebie-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.freebie-type {
  color: var(--secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.freebie-description {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-icon {
  margin-left: 0.5rem;
}

/* Newsletter Section */
.newsletter {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary) / 5, var(--secondary) / 5);
}

.newsletter-content {
  max-width: 1000px;
  margin: 0 auto;
}

.newsletter-header {
  text-align: center;
  margin-bottom: 3rem;
}

.newsletter-card {
  background: var(--card);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.newsletter-card-header {
  text-align: center;
  margin-bottom: 3rem;
}

.newsletter-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.newsletter-description {
  font-size: 1.125rem;
  color: var(--secondary);
  line-height: 1.6;
}

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

.benefit {
  text-align: center;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--secondary);
  font-size: 0.875rem;
}

.newsletter-signup {
  background: var(--muted);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.newsletter-text {
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Added placeholder for external newsletter integration */
.newsletter-placeholder {
  background: var(--background);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 2px dashed var(--border);
}

.newsletter-integration-note {
  color: var(--secondary);
  font-style: italic;
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background: var(--secondary);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  line-height: 1.6;
}

.social-links,
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link,
.legal-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover,
.legal-link:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .freebies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .brand-logo {
    height: 50px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .freebies-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-card {
    padding: 2rem;
  }

  .newsletter-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }

  .hero {
    padding: 8rem 0 6rem;
    min-height: 70vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .brand-logo {
    height: 40px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card,
.shop-card,
.freebie-card {
  animation: fadeInUp 0.6s ease-out;
}
