:root {
  --rust-orange: #d35400;
  --brand-green: #27ae60;
  --text-dark: #99973c;
  --bg-cream: #fffdf9;
  --card-border: #edd415;
  --shadow-soft: 0 6px 18px rgba(181, 124, 38,0.8);
}

/* =========================
   Reset & Base
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

/* General list reset */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul li {
  margin: 5px 0;
}

/* =========================
   Navigation
========================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: #4f321e;
  border-bottom: 2px solid var(--rust-orange);
  box-shadow: var(--shadow-soft);
}

.site-nav ul,
.site-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.site-nav a,
.site-nav .nav-links a {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.site-nav a {
  color: var(--text-dark);
}

.site-nav .nav-links a {
  color: #fff;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav .nav-links a:hover {
  color: var(--rust-orange);
}

/* =========================
   Hero Section
========================= */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--rust-orange), var(--brand-green));
  color: #fff;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center; /* vertically centers logo + text */
  gap: 8px; /* optional spacing between logo and text */
  text-decoration: none; /* optional */
}

.brand-logo {
  display: block; /* removes extra inline spacing */
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--rust-orange);
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* =========================
   About Section
========================= */
.about-hero {
  padding: 80px 20px;
}

.about-hero__container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  box-shadow: var(--shadow-soft);
}

.about-hero__text {
  padding: 48px 40px;
}

.about-hero__text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-lead {
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.about-meta {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--brand-green);
  background: #f7fbf8;
  border-radius: 12px;
}

.about-list {
  margin: 18px 0 22px;
  padding-left: 20px;
}

.about-list li {
  margin: 10px 0;
  list-style: disc;
}

/* =========================
   About Media / Images
========================= */
.about-hero__media {
  position: relative;
  min-height: 320px;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

/* =========================
   Map Link
========================= */
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand-green);
  transition: all 0.3s ease;
}

.map-link:hover {
  transform: rotate(12deg) scale(1.2);
  background: var(--brand-green);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.map-link:hover img {
  filter: brightness(0) invert(1);
}

/* =========================
   Services / Products Grid
========================= */
#services {
  padding: 80px 20px;
  text-align: center;
}

#services h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.products .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.products .card img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 6px;
}

/* =========================
   Cards
========================= */
.card {
  background: #fff;
  padding: 24px;
  border: 2px solid var(--card-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s ease;
}

.card:hover {
  background: var(--rust-orange);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =========================
   Contact Section
========================= */
#contact {
  padding: 80px 20px;
  background: #fff;
}

#contact h2 {
  text-align: center;
  margin-bottom: 24px;
}
/* Contact section styling */
#contact {
  padding: 3rem 1rem;
  background: #f9f9f9; /* light background for contrast */
  text-align: center;
}

/* Heading */
#contact h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #333;
}

/* Responsive iframe container */
.contact-form-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* keeps it from stretching too wide */
  margin: 0 auto; /* centers it */
  overflow: hidden;
  padding-top: 75%; /* aspect ratio (4:3 here, adjust as needed) */
}

/* Make iframe fill the container */
.contact-form-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form input,
form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form button {
  background: var(--brand-green);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: var(--rust-orange);
}

/* =========================
   Delivery Section
========================= */
.delivery-hero {
  background: linear-gradient(135deg, #ffcc00, #ff8800);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.delivery-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.option-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 280px;
}

.option-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.option-card h2 {
  margin-bottom: 10px;
}

.option-card .cta-btn {
  display: inline-block;
  margin-top: 15px;
  background: #ffcc00;
  color: #222;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* =========================
   Floating WhatsApp
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--brand-green);
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 42px;
  height: 42px;
}

.whatsapp-float:hover {
  transform: scale(1.2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

/* =========================
   Back to Top Button
========================= */
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffcc00;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

/* =========================
   Footer
========================= */
.site-footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.site-footer a {
  color: #ffcc00;
  text-decoration: none;
}
/* =========================
   Footer Logo (Clean & Visible)
========================= */
.footer-logo {
  position: fixed; /* stays floating */
  bottom: 15px; /* neat spacing from bottom */
  left: 15px; /* neat spacing from left */
  z-index: 1000; /* stays above other elements */
  text-align: center;
}

.footer-logo img {
  max-width: 45px; /* smaller, clean size */
  height: auto;
  vertical-align: middle;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  cursor: pointer;
}

.footer-logo img:hover {
  transform: scale(1.15); /* subtle zoom on hover */
  opacity: 0.9; /* slight fade for effect */
}

.footer-logo p {
  font-size: 11px; /* neat, readable text */
  line-height: 1.3;
  margin-top: 4px;
  color: #ccc; /* softer text color for contrast */
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .footer-logo {
    bottom: 10px;
    left: 10px;
  }

  .footer-logo img {
    max-width: 38px; /* even smaller for mobile */
  }

  .footer-logo p {
    font-size: 9px;
    color: #aaa;
  }
}

@media (max-width: 600px) {
  .footer-logo {
    bottom: 8px; /* closer to bottom edge */
    left: 8px; /* tighter to the side */
  }

  .footer-logo img {
    max-width: 50px; /* smaller logo for mobile */
  }

  .footer-logo p {
    display: block;
    text-align: center;
    font-size: 9px; /* neat, compact text */
    line-height: 1.2;
    margin-top: 3px; /* minimal spacing */
    color: #666; /* softer tone for readability */
  }
}

/* =========================
   Responsive Design
========================= */
@media (max-width: 900px) {
  .about-hero__container {
    grid-template-columns: 1fr;
  }

  .about-hero__media {
    min-height: 260px;
    order: -1;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-nav ul,
  .site-nav .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 16px;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-hero__text {
    padding: 30px 20px;
  }

  #services,
  #contact,
  .about-hero {
    padding: 60px 16px;
  }

  .delivery-options {
    gap: 20px;
  }

  .option-card {
    width: 100%;
    max-width: 320px;
  }

  #back-to-top,
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }
}
