
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  color: #1f2933;
  background: #ffffff;
  line-height: 1.6;
}


/* ===== SITE HEADER ===== */

.site-header {
  position: fixed;
  top: 0;
  width: 150px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 58px;
  width: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .main-nav {
    display: none; /* add menu later if needed */
  }
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

/* ===== GLASS HERO WITH VIDEO ===== */

.small-glassy-hero {
  height: 40vh;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video background */
.small-glassy-hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.small-glassy-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Glass card */
.hero-glass {
  position: relative;
  z-index: 2;
  padding: 32px 46px;
  border-radius: 18px;
  text-align: center;
  color: #fff;

  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 6px;
}

/* Text */
.hero-glass h1 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.hero-glass p {
  font-size: 1.05rem;
  margin-bottom: 22px;
}

/* CTA button */
.hero-cta {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: #ffffff;
  color: #0f3d2e;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-glass {
    padding: 24px 28px;
  }

  .hero-glass h1 {
    font-size: 1.9rem;
  }
}


/* INTRO */
.openfield-intro h2,
.openfield-video h2,
.openfield-products h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.openfield-intro p {
  max-width: 900px;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* VIDEO */
.video-wrapper {
  max-width: 900px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

/* PRODUCTS */
.section-note {
  margin-bottom: 30px;
  color: #555;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.product-card {
  background: #f8fafc;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card h3 {
  padding: 15px;
  font-size: 1.05rem;
}
/* ================= OPEN FIELD SERVICES ================= */

.openfield-services h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.openfield-services .section-note {
  max-width: 800px;
  margin-bottom: 40px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: #f8fafc;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #ddd; /* placeholder look */
}

.service-card h3 {
  font-size: 1.1rem;
  padding: 15px 15px 5px;
}

.service-card p {
  padding: 0 15px 20px;
  font-size: 0.95rem;
  color: #444;
}

/* FOOTER with BEE */
.footer {
  position: relative;
  padding: 15px 0 15px;
  background: linear-gradient(135deg, #1f3d22 0%, #254b28 40%, #e4b236 100%);
  color: #fff;
  overflow: hidden;
}

/* subtle honeycomb texture */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10px 10px, rgba(255,245,200,0.10) 15%, transparent 16%),
    radial-gradient(circle at 30px 30px, rgba(255,245,200,0.10) 15%, transparent 16%);
  background-size: 40px 40px;
  opacity: 0.15;
  pointer-events: none;
}

/* bee icon floating on right side */
.footer-bee {
  position: absolute;
  right: 30px;
  bottom: 70px;
  width: 55px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.25));
  animation: beeFloat 4s ease-in-out infinite;
}

@keyframes beeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* footer content */
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #fef9d3; /* pale honey color */
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #ffe38a;
}

.footer-note {
  max-width: 270px;
  line-height: 1.6;
}

/* bottom copyright */
.footer-bottom {
  margin-top: 25px;
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  opacity: 0.9;
  border-top: 1px solid rgba(255,255,255,0.15);
}
  
/* Responsive */
@media (max-width: 750px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bee {
    right: 20%;
    transform: translateX(50%);
    bottom: 85px;
    animation: none;
  }
}

@media (max-width: 768px) {
  .footer-col {
    text-align: center;
  }
}