/* ==========================
   GLOBAL STYLES
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #fdf5dc; /* Light honey/beige */
  color: #11222c;
  line-height: 1.6;
  text-align: center;
}

/* ==========================
   HEADER STYLING
========================== */
header {
  background: linear-gradient(to bottom, #11222c, #1c3a4a);
  padding: 20px 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 80px;
  width: auto;
  margin-right: 15px;
}

.logo-text {
  font-size: 36px;
  font-weight: bold;
  color: #f6c624;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* ==========================
   NAVIGATION STYLING
========================== */
nav {
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav ul li a {
  color: #f6c624;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f69000;
}

/* Underline effect */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #f6c624;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

nav ul li a:hover::after {
  transform: scaleX(1);
}

/* ==========================
   HERO SECTION
========================== */
.hero {
  position: relative;
  width: 100%;
  height: 450px;
  background: url('Images/hive-background.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  color: white;
  max-width: 800px;
  padding: 30px;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 25px;
}

.cta-button {
  background: #d62828;
  color: white;
  padding: 14px 30px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #ffcc00;
  color: #333;
}

/* ==========================
   SERVICES SECTION
========================== */
.services-container {
  background: #fdf5dc;
  padding: 60px 20px;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.service {
  background: #f6c624;
  padding: 30px;
  border-radius: 10px;
  width: calc(50% - 20px);
  font-weight: bold;
  color: #11222c;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.service:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  background: #f69000;
  color: white;
}

/* ==========================
   FOOTER STYLING
========================== */
footer {
  background: #11222c;
  color: #f6c624;
  text-align: center;
  padding: 15px;
}

/* ==========================
   RESPONSIVE DESIGN
========================== */
@media screen and (max-width: 1024px) {
  .service {
      width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .hero h1 {
      font-size: 38px;
  }

  .hero p {
      font-size: 18px;
  }

  .service {
      width: 90%;
  }
}

/* ==========================
   CONTACT PAGE GRID
========================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
}

.contact-box {
  background: #f6c624;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  color: #11222c;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Ensure grid layout on smaller screens */
@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================
   ADDITIONAL CONTACT BOX STYLES
========================== */
.contact-grid .contact-box:nth-child(1) {
  background: #ffcc00; /* Golden Yellow */
}

.contact-grid .contact-box:nth-child(2) {
  background: #f69000; /* Deep Amber */
}

.contact-grid .contact-box:nth-child(3) {
  background: #b5651d; /* Honey Brown */
}

.contact-grid .contact-box:nth-child(4) {
  background: #1c3a4a; /* Beehive Navy */
  color: white;
}

/* Restore all previous sections */
.cta-button {
  background: #b5651d; /* Honey Brown */
  color: white;
  padding: 14px 30px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #ffcc00; /* Golden Yellow */
  color: #333;
}

