/* Global Styles */
:root {
  --primary-color: #ffae00;
  --primary-dark: #ff9203;
  --secondary-color: #ffbc03;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --off-white: #f9fafb;
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 50px;
  background-image: url(/images/cielo9.webp); /* Update path to your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Dark overlay for better text readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  color: rgb(247, 133, 3);
  z-index: 2; /* Place content above the overlay */
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s backwards;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  color: wheat;
}
.about-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: block;
  color: #ff9100;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin: 0;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: #ff9100;
  margin: 1rem auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ff9100;
  color: white;
  padding: 1.5rem;
  border-radius: 50%;
  text-align: center;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(255, 145, 0, 0.3);
}

.experience-badge .years {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.about-text {
  padding-right: 2rem;
}

.about-text h3 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.highlight-text {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1.5rem;
  border-left: 3px solid #ff9100;
  padding-left: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature {
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: #ff9100;
  margin-bottom: 0.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #ff9100;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #ff7b00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 145, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text {
    padding-right: 0;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: -15px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .highlight-text {
    font-size: 1.1rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: black;
  color: var(--primary-color);
  border: 1px solid #ff9203;
}

.btn-primary:hover {
  background: rgb(36, 36, 36);
  transform: translateY(-2px);
  color: white;
}

/* Sections */
section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Produce Grid */
.produce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.produce-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.produce-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.produce-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.produce-content {
  padding: 1.5rem;
}

.produce-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.produce-item p {
  color: var(--text-light);
}

/* Contact Section */
.contact {
  background: var(--off-white);
  text-align: center;
}

/* Footer Styles */
.footer {
  text-align: center;
  padding: 10px;
  background: #f4f4f4;
  color: #555;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll; /* Better mobile performance */
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 3rem 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
