/* ================= Root & Global ================= */
:root {
  --main-green: #28a745;
  --dark-bg: #fff;
  --light-text: #000;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--dark-bg);
  color: var(--light-text);
}
.section-divider {
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: #ddd;
  margin: 40px auto;
  opacity: 0;                /* start invisible */
  transform: translateY(20px); /* slide from below */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-divider.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= Header ================= */
.site-header {
  background: #fff;  /* 🤍 white background */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: visible;
}

.site-header.shrink {
  padding: 10px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Layout */
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 50px;
  transition: height 0.3s ease;
}
.site-header.shrink .logo img {
  height: 35px;
}

/* Navigation */
.main-nav {
  display: none;
  width: 100%;
  margin-top: 12px;
  text-align: center;
  background: var(--dark-bg);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.main-nav.is-open {
  display: block;
  max-height: 400px;
  opacity: 1;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 15px 0;
  margin: 0;
}

.main-nav a {
  color: #000;  /* 🖤 black text */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #119103; /* ✅ accent on hover */
}

/* CTA Button */
.cta-btn {
  background: var(--main-green);
  color: #000;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #32e012;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
  color: #000;
  z-index: 1000;
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .site-header .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .menu-toggle {
    display: block;
    margin: 0 auto;
  }

  .main-nav {
    width: 100%;
  }

  .cta-btn {
    display: block;
    margin: 15px auto 0;
  }
}

/* Desktop Navigation */
@media (min-width: 901px) {
  .main-nav {
    display: block !important;
    max-height: none;
    opacity: 1;
    background: transparent;
    width: auto;
    margin-top: 0;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 20px;
  }

  .menu-toggle {
    display: none !important;
  }
}

/* CTA Button mobile animation */
@media (max-width: 768px) {
  .cta-btn {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 15px auto 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    background: var(--main-green);
    color: #000;
    padding: 12px 20px;
    border-radius: 6px;
    position: relative;
    animation: cta-pulse 2s infinite;
  }
}

@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(57, 255, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}

/* ================= Hero Section ================= */
.hero {
  background: #3cbc00;
  color: #000;
  padding: 40px 20px;
   border-bottom: 1px solid #e0e0e0; /* ✅ clean gray line */
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;             /* ensures good mobile layout */
  max-width: 1600px;
  margin: auto;
  gap: 40px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
   justify-content: center;      /* Centers vertically inside this column */
   align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  
}

.cta-btn.large {
  background: var(--main-green);
  color: #000;
  padding: 15px 40px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #000;
}
.hero-slideshow-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;  /* ✅ forces caption under the image */
  align-items: center;     /* center horizontally */
  max-width: 600px;        /* match your desired max width */
}

.hero-slideshow {
  position: relative;
  aspect-ratio: 1 / 1; /* keeps it square */
  width: 100%;
  max-width: 600px; /* optional max size */
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slideshow img.active {
  opacity: 1;
}


@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-slideshow {
    height: 250px;
    width: 100%;
  }
}
/* ✨ Caption directly below slideshow */
.hero-caption {
  margin-top: 20px;
  text-align: center;
  font-size: 1.4rem !important;
  color: #333;
  font-weight: 600;
  width: 100%;
  max-width: 600px;
  line-height: 1.4;
}
.hero-slideshow-wrapper {
  width: 100%;
  max-width: 500px;
}
.slide-caption{
     margin-top: 20px;
  text-align: center;
  font-size: 1.4rem !important;
  color: #333;
  font-weight: 600;
  width: 100%;
  max-width: 600px;
  line-height: 1.4;
}
/* ================= Features Section ================= */
.features {
  background: #fff;  /* 🤍 white background */
  color: #000;       /* black text */
  padding: 60px 20px;
  text-align: center;
    border-bottom: 1px solid #e0e0e0; /* ✅ clean gray line */
}

.features h2 {
  color: var(--main-green);
  margin-bottom: 30px;
}

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

.feature-item i {
  font-size: 40px;
  color: var(--main-green);
  margin-bottom: 15px;
}

/* ================= Products ================= */
.products {
  background: #fff;  /* 🤍 white */
  color: #000;
  padding: 30px 20px;
  text-align: center;
}

.products h2 {
  color: var(--main-green);
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Grid */
.products .product-grid {
  display: flex !important;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Cards */
.product-card {
  background: #dbd9d9;  /* 🤍 card background */
  color: #000;
  border: 1px solid #ddd;  /* light border for definition */
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 1 300px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* softer on white */
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card p {
    color: #333;
  flex-grow: 1;
  margin-bottom: 15px;
}
.product-card h3 {
  color: var(--main-green);
}

.btn-outline {
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  border: 2px solid var(--main-green);
  color: var(--main-green);
  text-decoration: none;
  transition: 0.3s ease;
  border-radius: 4px;
}

.btn-outline:hover {
  background: var(--main-green);
  color: #000;
}

/* Product Responsive */
@media (max-width: 768px) {
  .product-card {
    flex: 0 1 90%;
    max-width: 350px;
  }
}
.see-more-sheds {
  background: #f8f8f8;         /* light background for contrast */
  padding: 60px 20px;
  text-align: center;
}

.see-more-sheds h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.see-more-sheds p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

.see-more-sheds .cta-btn {
  display: inline-block;
  background: var(--main-green);
  color: #000;
  padding: 12px 25px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.see-more-sheds .cta-btn:hover {
  background: #2cd10e;
}

/* ================= Quote CTA ================= */
.quote-cta {
  background: var(--main-green);
  color: #000;
  text-align: center;
  padding: 60px 20px;
}

.quote-cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.quote-cta p {
  margin-bottom: 40px;
}

.quote-cta .cta-btn.large {
  font-size: 1.3rem;
  padding: 15px 40px;
  border: 2px solid #000;   /* 👈 black border */
  border-radius: 6px;       /* optional: smooth corners */
}


/* ================= Footer ================= */
.site-footer {
  background: #fff;
  color: #000;
  padding: 60px 20px 30px;
  margin-top: 30px;
  border-top: 1px solid #eee; /* subtle separation */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-col h3 {
  color: var(--main-green);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--main-green);
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  color: #000;
  font-size: 1.3rem;
}

.social-links a:hover {
  color: var(--main-green);
}

.footer-bottom {
    color: #666;           /* softer footer bottom text */
  border-top: 1px solid #eee;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}

/* Footer responsive */
@media (max-width: 600px) {
  .footer-col {
    text-align: center;
  }
  .social-links a {
    margin: 0 10px;
  }
}

/* ================= Responsive General ================= */
@media (max-width: 600px) {
  .product-card img {
    height: 180px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/*==================QUOTES PAGE============================*/
/* ================= Quote Page ================= */
.quote-intro {
  background: #fff;
  text-align: center;
  padding: 50px 20px 20px;
}

.quote-intro h1 {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #000;
}

.quote-widget {
  background: #f9f9f9;
  padding: 40px 20px;
}

.custom-quote-intro {
  background: #fff;
  text-align: center;
  padding: 50px 20px 20px;
}

.custom-quote-intro h2 {
  color: #000;
  margin-bottom: 10px;
}

.custom-quote-intro p {
  color: #444;
}

/* ================= Form Styles ================= */
/* ================= Quote Form ================= */
/* ================= Quote Form ================= */
.quote-form {
  max-width: 600px;
  margin: 0 auto;
  display: block;              /* ✅ use block to stack elements normally */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;         /* 🟢 THIS ensures spacing between fields */
}

.form-group:last-child {
  margin-bottom: 0;            /* ✅ no extra space after last field */
}

.form-group label {
  font-weight: bold;
  color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--main-green);
  outline: none;
}

/* ✅ Address row styling */
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;         /* 🟢 adds space after address section */
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;            /* don't double space inside row */
}

/* 📱 Mobile fix for address row */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}
/* ================= Shed Type Image Select ================= */
/* ================= Shed Type Image Select ================= */
.shed-type-options {
  display: flex;                    /* 🟢 lay cards in a row */
  flex-wrap: wrap;                  /* ✅ wrap on smaller screens */
  justify-content: center;          /* center row */
  gap: 20px;                        /* space between cards */
  margin-top: 10px;
}

.shed-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;                     /* 🟢 fixed width for clean row layout */
  cursor: pointer;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
  background: #fff;
  text-align: center;
}

.shed-option img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

.shed-option span {
  font-size: 0.95rem;
  color: #000;
}

/* Hide the actual radio buttons */
.shed-option input[type="radio"] {
  display: none;
}

/* ✅ Selected state */
.shed-option input[type="radio"]:checked + img {
  outline: 3px solid var(--main-green);
  outline-offset: 2px;
}

.shed-option input[type="radio"]:checked ~ span {
  font-weight: bold;
  color: var(--main-green);
}

/* Hover effect */
.shed-option:hover {
  border-color: var(--main-green);
  transform: translateY(-3px);
}

/* 📱 Responsive layout */
@media (max-width: 768px) {
  .shed-option {
    width: 45%;                     /* 2 cards per row on tablets/phones */
  }
}

@media (max-width: 480px) {
  .shed-option {
    width: 100%;                    /* stack 1 per row on small screens */
  }
}
/* ================= Global Dropdown Style ================= */
select {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #000;
  appearance: none;                /* removes default arrow in some browsers */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}

select:focus {
  border-color: var(--main-green);
  outline: none;
  box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.2);
}

select option {
  color: #000;
  background: #fff;
}
@media (max-width: 600px) {
  select {
    font-size: 0.95rem;
    padding: 10px;
  }
}
/*===================LOGIN==========================*/
.login-btn {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.login-btn:hover {
  background: var(--main-green);
  color: #000;
  border-color: var(--main-green);
}

@media (max-width: 768px) {
  .login-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}
.login-section form {
  max-width: 300px;
  margin: 0 auto;
}

.login-section input[type="text"],
.login-section input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.login-section input:focus {
  border-color: var(--main-green);
  outline: none;
  box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.2);
}
/*===============ADMIN===========================*/
.admin-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.admin-btn {
  display: inline-block;
  padding: 12px 20px;
  background: var(--main-green);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.admin-btn:hover {
  background: #32e012;
}

.shed-spin-demo {
  text-align: center;
  padding: 60px 20px;
  background: #f8f8f8;
}

.shed-spin-demo h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

.shed-3d {
  width: 400px;              /* control image size */
  margin: 0 auto;
  perspective: 1000px;       /* gives it a 3D feel */
}

.shed-3d img {
  width: 100%;
  display: block;
  transform-style: preserve-3d;
  animation: shed-spin 8s linear infinite;
}

@keyframes shed-spin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
