

.infobar {
  background: #333;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tagline {
  /* Made tagline bold and blue with more right margin for spacing */
  font-weight: bold;
  color: #4a90e2;
  margin-left: 20px;
  margin-right: 60px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.contact-item i {
  color: #2e7d32;
  width: 16px;
}
/* Default social icon styles */
.social-icons {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #4a90e2;
  border-radius: 50%;
  color: #fff;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #357abd;
}

/* Instagram Specific Styles */
.social-icons a.instagram {
  background: linear-gradient(135deg, #f58529, #d6006b, #8a3ab9, #3c4d91); /* Instagram gradient */
}

.social-icons a.instagram:hover {
  background: linear-gradient(135deg, #f58529, #d6006b, #8a3ab9, #3c4d91); /* Hover keeps Instagram colors */
}


/* Updated tablet responsive styles for better visibility and layout */
@media (max-width: 1200px) and (min-width: 769px) {

  .tagline {
    margin-right: 20px;
    font-size: 11px;
    flex-shrink: 0;
    display: block !important;
    white-space: nowrap;
  }

  .contact-info {
    gap: 15px;
    flex-wrap: nowrap;
    display: flex !important;
    overflow: hidden;
  }

  .contact-item {
    font-size: 10px;
    white-space: nowrap;
    display: flex !important;
    min-width: 0;
  }

  .contact-item i {
    width: 14px;
    font-size: 10px;
  }

  .social-icons {
    margin-left: 10px;
    flex-shrink: 0;
    display: flex !important;
    gap: 8px;
  }

  .social-icons a {
    width: 28px;
    height: 28px;
    display: flex !important;
  }
}

/* Added specific breakpoint for smaller tablets like iPad Air portrait mode */
@media (max-width: 900px) and (min-width: 769px) {
  .tagline {
    font-size: 10px;
    margin-right: 15px;
  }

  .contact-info {
    gap: 12px;
  }

  .contact-item {
    font-size: 9px;
  }

  .social-icons {
    gap: 6px;
  }

  .social-icons a {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 768px) {
   .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 0 15px;
  }

  .tagline {
    margin: 0;
    font-size: 12px;
  }

  .contact-info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .social-icons {
    margin: 0;
    justify-content: center;
  }
}
/* Call to Action Section */


.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible !important; /* critical — overflow hidden clips the dropdown */
}

/* Make sure all parent containers allow overflow and stacking */
header,
.header,
.header_right,
.navbar,
.nav__list,
.nav__item,
.container {
  overflow: visible !important;
  /* Remove position: relative and z-index: 1000 from here */
}



/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg:         #0a0a0a;
  --color-surface:    #141414;
  --color-surface-2:  #1c1c1c;
  --color-border:     #2a2a2a;
  --color-text:       #ffffff;
  --color-muted:      #888888;
  --color-accent:     #c8392b;
  --color-accent-2:   #e85d4a;
  --color-warning:    #e8a020;
  --color-safe:       #2a9d5c;
  --font-sans:        'Inter', system-ui, sans-serif;
  --font-serif:       'DM Serif Display', Georgia, serif;
  --max-w:            1120px;
  --radius:           10px;
}


/* ===== NAV ===== */

:root {
  --green:    #87cc46;
  --dark:     #1c1c1c;
  --nav-h:    65px;
  --skew:     40px;  /* controls the diagonal width */
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--green);   /* green shows between the two panels */
  display: flex;
  align-items: stretch;
}

/* ---------- Logo panel (white, diagonal right edge) ---------- */
.logo-wrap {
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 calc(16px + var(--skew)) 0 20px;  /* extra right padding covers the diagonal */
  /*clip-path: polygon(0 0, 100% 0,calc(100% - skew) 100%, 0 100%);*/
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #1c1c1c;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ---------- Nav panel (dark, diagonal left edge) ---------- */


.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.07em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
}

/* CTA buttons inside the nav */
.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 6px 13px;
  border-radius: 5px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: #79b83d !important;
  color: #fff !important;
}

.nav-cta--outline {
  background: transparent !important;
  border: 1.5px solid var(--green);
  color: var(--green) !important;
}

.nav-cta--outline:hover {
  background: var(--green) !important;
  color: #fff !important;
}

/* Styling for the nav buttons */
/* Styling for the nav buttons */
.nav-button {
  display: inline-flex;
  gap: 20px; /* Space between the buttons */
  padding: 10px 30px; /* Padding around the buttons */
  background-color: #2e7d32; /* Matched dark green background */
  border-radius: 5px; /* Rounded corners */
}

.nav-button .nav__item {
  display: inline-block;
}

.nav-button .nav__link {
  color: white; /* White text color */
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 20px;
  transition: background 0.3s ease;
}

.nav-button .nav__link:hover {
  background-color: #3e9d42; /* Slightly lighter green on hover */
  border-radius: 5px;
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  order: 2;            /* sits to the right of the nav inside .nav-main */
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile dropdown ---------- */
.mobile-menu {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--dark);
  display: none;
  z-index: 998;
  border-top: 2px solid var(--green);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 0 16px;
}

.mobile-menu li a {
  display: block;
  padding: 11px 24px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.mobile-menu li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 0;
  background: rgba(255,255,255,0.04); /* subtle background to group them */
  border-left: 3px solid var(--green); /* green accent line */
}

.mobile-dropdown li a {
  display: block;
  padding: 9px 24px 9px 36px !important;; /* adjust 36px until aligned how you want */
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #999;
  text-decoration: none;
  /* removed text-align: center */
  transition: color 0.2s, background 0.2s;
}
.mobile-dropdown li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.mobile-menu .mobile-btn {
  background: var(--green);
  color: #fff !important;
  border-radius: 5px;
  margin: 4px 16px;
  padding: 10px 20px !important;
  text-align: center !important;
}

.mobile-menu .mobile-btn:hover {
  background: #79b83d;
}

.mobile-menu .mobile-btn--outline {
  background: transparent !important;
  border: 2px solid var(--green);
  color: var(--green) !important;
}

.mobile-menu .mobile-btn--outline:hover {
  background: var(--green) !important;
  color: #fff !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links {
    display: none;   /* hide links, show hamburger instead */
  }

  .hamburger {
    display: flex;
  }

  /* On mobile, the dark right panel becomes transparent so the
     green header background fills that area — matching Image 2 */
  .nav-main {
    background: transparent;
    clip-path: polygon(var(--skew) 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* ---------- Logo panel (white, diagonal right edge) ---------- */
.logo-wrap {
  background: #fff;
  flex-shrink: 0;
  min-width: 320px;
  display: flex;
  align-items: center;
  padding: 0 20px 0 24px;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--skew)) 100%, 0 100%);
}
/* ---------- Nav panel (dark, diagonal left edge) ---------- */
.nav-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 28px 0 calc(20px + var(--skew));
  /*clip-path: polygon(var(--skew) 0, 100% 0, 100% 100%, 0 100%);*/
  gap: 0;
}
/* ---------- Tablet: hamburger kicks in at 1100px ---------- */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-main {
    background: transparent;

  }
}

/* ---------- Small phones: shrink logo panel so green area breathes ---------- */
@media (max-width: 480px) {
  .logo-wrap {
    min-width: 0;       /* remove the fixed minimum */
    width: 58%;         /* logo takes ~58%, leaving ~42% as green */
    padding-right: 12px;
  }

  .logo-text {
    font-size: 15px;
  }

  .logo-img {
    height: 34px;
  }
}
/* Desktop dropdown */


.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 9999; /* high number relative to page content */
}

.has-dropdown .dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.has-dropdown .dropdown li a:hover {
  background-color: #3a9e6f; /* match your green */
}

.has-dropdown:hover .dropdown {
  display: block;
}

/* Mobile dropdown */
.mobile-dropdown {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 5px 0 10px;
}

.mobile-dropdown li a {
  display: block;
  padding: 8px 0;
  color: #ccc;
  font-size: 0.9rem;
  text-decoration: none;
}

.mobile-dropdown li a:hover {
  color: #fff;
}
.social-icons a.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-icons a.instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  opacity: 0.85;
}
