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

body {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f7f5f0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #2c3e50;
}

/* Navigation */
nav {
  background: linear-gradient(135deg, #2d5016, #3a5f1f);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #f7f5f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-links a:hover {
  color: #d4c4a8;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(139, 111, 71, 0.7), rgba(160, 132, 92, 0.7)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23a0845c" width="1200" height="600"/><path fill="%238b6f47" d="M0 400c200-50 400-100 600-75s400 75 600 25v250H0z"/><circle fill="%23f7f5f0" cx="100" cy="100" r="20" opacity="0.3"/><circle fill="%23f7f5f0" cx="300" cy="150" r="15" opacity="0.2"/><circle fill="%23f7f5f0" cx="500" cy="80" r="25" opacity="0.3"/></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 8rem 0;
  margin-bottom: 3rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f8f3e6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.hero p {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.4rem;
  color: #f8f3e6;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.cta-button {
  background: linear-gradient(135deg, #c17817, #d4941e);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background: linear-gradient(135deg, #d4941e, #e6a625);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid #d4c4a8;
}

.feature h3 {
  color: #8b6f47;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Content Cards */
.about-content,
.product-card,
.form-container {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid #d4c4a8;
}

.about-content h2,
.product-card h2,
.form-container h2 {
  color: #8b6f47;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-align: center;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Product Options */
.product-card {
  text-align: center;
}

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

.option {
  background: #f7f5f0;
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid #d4c4a8;
}

.option h3 {
  color: #8b6f47;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #8b6f47;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #d4c4a8;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2d5016, #3a5f1f);
  color: #f7f5f0;
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1rem;
  }
}
