/* ===== Reset & Container ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Clean white background with some contrast sections */
body {
  background: #ffffff !important;
}

.bg-darker {
  background: #f8f9fa !important; /* Light gray for contrast */
}

.bg-dark {
  background: #ffffff !important; /* Pure white */
}

/* Specific sections that should have light gray */
.features,
.divisions {
  background: #f8f9fa !important;
}

/* Remove all white backgrounds from sections so gradients show properly */
.about,
.features,
.divisions,
.info-tabs,
.info-subtabs {
  background: transparent;
  position: relative;
  z-index: 1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Slideshow ===== */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Show first slide initially */
.slide.active {
  opacity: 1;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* ===== Welcome Text Overlay ===== */
.welcome-text {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.welcome-text .small-text {
  display: block;
  font-size: 1.5rem;
  color: white;
  font-family: "Times New Roman", serif;
  font-weight: normal;
  margin-bottom: 2px;
}

.welcome-text .big-text {
  display: block;
  font-size: 3.5rem;
  color: #ffd700;
  font-family: "Times New Roman", serif;
  font-weight: bold;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

  /* initial animation state */
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Animate on page load */
.welcome-text.animate .big-text {
  transform: translateY(0);
  opacity: 1;
}

/* ===== About, Features, Divisions ===== */
.about {
  padding: 60px 0;
  font-family: "Times New Roman", serif;
}

/* Features Section with Blue-Gold Ombre */
.features {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.features .feature {
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 75, 140, 0.9) 0%,
    rgba(26, 75, 140, 0.7) 50%,
    rgba(249, 168, 38, 0.8) 100%
  );
  color: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  font-family: "Times New Roman", serif;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(26, 75, 140, 0.3);
  position: relative;
  overflow: hidden;
}

/* Optional: Add a subtle shine effect */
.features .feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.features .feature:hover::before {
  left: 100%;
}

.features .feature h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.features .feature p {
  font-size: 1rem;
  line-height: 1.6;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

/* Hover effects */
.features .feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(26, 75, 140, 0.4);
}

/* Optional: Different gradient directions for each card */
.features .feature:nth-child(1) {
  background: linear-gradient(
    135deg,
    rgba(26, 75, 140, 0.9) 0%,
    rgba(249, 168, 38, 0.8) 100%
  );
}

.features .feature:nth-child(2) {
  background: linear-gradient(
    45deg,
    rgba(26, 75, 140, 0.9) 0%,
    rgba(249, 168, 38, 0.8) 100%
  );
}

.features .feature:nth-child(3) {
  background: linear-gradient(
    225deg,
    rgba(26, 75, 140, 0.9) 0%,
    rgba(249, 168, 38, 0.8) 100%
  );
}

/* Simple Brown Ombre Divisions */
.divisions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.divisions .division-card {
  flex: 1;
  background: linear-gradient(135deg, #6d4c41 0%, #8d6e63 50%, #bcaaa4 100%);
  color: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  font-family: "Times New Roman", serif;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(109, 76, 65, 0.3);
}

.divisions .division-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(109, 76, 65, 0.4);
}

.divisions .division-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #fff8dc;
}

.divisions .division-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff8dc;
  margin-bottom: 20px;
}

.divisions .division-card .btn-small {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.divisions .division-card .btn-small:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== Tabs Section (info tabs under slideshow) ===== */
.info-tabs {
  margin-top: -10px; /* moves the tabs up into the slideshow */
  display: flex;
  justify-content: center;
  gap: 30px;
  background: transparent;
}

.tab-card {
  width: 550px;
  height: 650px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tab-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-card h3 {
  font-family: "Times New Roman", serif;
  font-size: 1.8rem;
  color: white;
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Hover effect */
.tab-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ===== Vision / Mission Cards ===== */
.statement-heading {
  text-align: center;
  margin: 50px 0 30px 0;
}

.statement-heading h2 {
  font-family: "Times New Roman", serif;
  font-size: 4rem;
  font-weight: bold;
  color: #964b00;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.info-subtabs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.subtab-card {
  position: relative;
  flex: 1;
  min-width: 250px;
  height: 250px;
  background-color: #ffffff;
  border-radius: 40px 10px 40px 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subtab-card h3 {
  font-family: "Times New Roman", serif;
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.subtab-card p {
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  color: #4b2e2e;
  line-height: 1.5;
}

.subtab-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Floating Action Buttons ===== */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.whatsapp-floating,
.application-btn-floating {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-floating {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  font-size: 32px;
}

.whatsapp-floating:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.application-btn-floating {
  padding: 12px 20px;
  border-radius: 30px;
  background-color: #d4af37;
  font-family: "Times New Roman", serif;
  font-size: 16px;
  font-weight: bold;
}

.application-btn-floating i {
  margin-right: 8px;
}

.application-btn-floating:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ===== Vibrating WhatsApp Icon (if used in header) ===== */
.whatsapp-icon-container {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.vibrating-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  animation: vibrate 2s infinite;
}

.vibrating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  animation: none;
}

/* Vibration animation */
@keyframes vibrate {
  0% {
    transform: translateX(0) translateY(0) rotate(0);
  }
  10% {
    transform: translateX(-1px) translateY(-1px) rotate(-1deg);
  }
  20% {
    transform: translateX(1px) translateY(1px) rotate(1deg);
  }
  30% {
    transform: translateX(-1px) translateY(1px) rotate(0);
  }
  40% {
    transform: translateX(1px) translateY(-1px) rotate(1deg);
  }
  50% {
    transform: translateX(-1px) translateY(1px) rotate(-1deg);
  }
  60% {
    transform: translateX(1px) translateY(-1px) rotate(0);
  }
  70% {
    transform: translateX(-1px) translateY(-1px) rotate(-1deg);
  }
  80% {
    transform: translateX(1px) translateY(1px) rotate(1deg);
  }
  90% {
    transform: translateX(-1px) translateY(1px) rotate(0);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0);
  }
}

/* Pulse effect */
.vibrating-whatsapp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ===== General Responsive Styles ===== */

/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {
  .container {
    width: 95%;
  }

  .features,
  .divisions,
  .info-tabs {
    flex-direction: column;
    gap: 20px;
  }

  .tab-card {
    width: 100%;
    height: auto;
  }

  .welcome-text .big-text {
    font-size: 2.5rem;
  }

  .statement-heading h2 {
    font-size: 3rem;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {
  .slideshow-container {
    height: 50vh;
  }

  .welcome-text {
    bottom: 20px;
  }

  .welcome-text .small-text {
    font-size: 1.2rem;
  }

  .welcome-text .big-text {
    font-size: 2rem;
  }

  .info-tabs {
    margin-top: 20px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
  .statement-heading h2 {
    font-size: 2.2rem;
  }

  .subtab-card {
    min-width: 100%;
  }
}

/* ===== Global Footer ===== */

footer {
  background: linear-gradient(135deg, #1a4b8c 0%, #2a5298 100%);
  color: #ffffff;
  padding: 40px 0 25px;
  font-family: "Times New Roman", serif;
}

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

/* Top row: three columns */
.footer-container {
  display: flex;
  justify-content: space-between;   /* pushes left & right to the “corners” */
  align-items: flex-start;
  gap: 40px;
}

.footer-column {
  flex: 1;
}

/* Left: Divine Visions College */
.footer-column:nth-child(1) {
  text-align: left;
}

/* Center: Our Schools */
.footer-column:nth-child(2) {
  text-align: center;
}

/* Right: Contact */
.footer-column:nth-child(3) {
  text-align: right;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.footer-column p,
.footer-column a,
.footer-column li {
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.6;
}

.footer-column a:hover {
  color: #ffd700;
}

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

/* Bottom rows: centered under the middle column */
.developer-credit,
.copyright {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
}

.developer-credit a {
  color: #ffd700;
  text-decoration: none;
}

.developer-credit a:hover {
  text-decoration: underline;
}

/* ===== Footer responsive ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-column,
  .footer-column:nth-child(1),
  .footer-column:nth-child(2),
  .footer-column:nth-child(3) {
    text-align: center;
  }
}
/* Facilities Page Specific Styles */
.facilities-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/building4.JPG');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 150px 0 100px;
  margin-top: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facilities-hero h1 {
  font-family: "Times New Roman", serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.facilities-hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  font-family: "Times New Roman", serif;
}

/* Facilities Showcase */
.facilities-showcase {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.facilities-intro {
  text-align: center;
  margin-bottom: 60px;
}

.facilities-intro h2 {
  font-family: "Times New Roman", serif;
  font-size: 2.8rem;
  color: #1a4b8c;
  margin-bottom: 20px;
}

.facilities-intro p {
  font-family: "Times New Roman", serif;
  font-size: 1.2rem;
  color: #4b2e2e;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.facility-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.facility-image {
  height: 250px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-card:hover .facility-image img {
  transform: scale(1.1);
}

.facility-content {
  padding: 25px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.facility-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a4b8c, #d4af37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 15px;
}

.facility-content h3 {
  font-family: "Times New Roman", serif;
  font-size: 1.8rem;
  color: #1a4b8c;
  margin-bottom: 15px;
}

.facility-content p {
  color: #4b2e2e;
  line-height: 1.6;
  font-family: "Times New Roman", serif;
  flex: 1;
}

/* Transportation Section */
.transportation-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.transportation-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.transportation-content h2 {
  font-family: "Times New Roman", serif;
  font-size: 2.5rem;
  color: #1a4b8c;
  margin-bottom: 30px;
}

.transportation-image {
  max-width: 600px;
  margin: 0 auto 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.transportation-image img {
  width: 100%;
  height: auto;
  display: block;
}

.transportation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.transportation-feature {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.transportation-feature i {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.transportation-feature h4 {
  font-family: "Times New Roman", serif;
  color: #1a4b8c;
  margin-bottom: 10px;
}

/* Additional Features Section */
.additional-features-section {
  padding: 60px 20px;
}

.additional-features-section h2 {
  font-family: "Times New Roman", serif;
  font-size: 2.5rem;
  color: #1a4b8c;
  text-align: center;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 3rem;
  color: #1a4b8c;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-family: "Times New Roman", serif;
  font-size: 1.6rem;
  color: #1a4b8c;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  font-family: "Times New Roman", serif;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .facilities-hero {
    padding: 120px 0 80px;
    min-height: 50vh;
  }

  .facilities-hero h1 {
    font-size: 2.5rem;
  }

  .facilities-intro h2 {
    font-size: 2.2rem;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .transportation-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 30px 20px;
    min-height: 200px;
  }
}
/* ===== Header ===== */
.site-header {
    background: linear-gradient(135deg, #1a4b8c 0%, #f9a826 100%);
    padding: 5px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Flex container */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Logo */
  .logo img {
    height: 85px;
    width: auto;
    transition: transform 0.3s ease;
  }
  
  .logo:hover img {
    transform: scale(1.05);
  }
  
  /* ===== Navigation ===== */
  .site-nav {
    margin-left: auto;
  }
  
  .site-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
  }
  
  .site-nav ul li a {
    font-family: "Times New Roman", serif;
    font-size: 17px;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    position: relative;
    white-space: nowrap;
  }
  
  .site-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFD700;
  }
  
  /* Style for the active page link */
  .site-nav ul li a.active {
    background-color: #d4af37;
    color: #1a4b8c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* ===== Right-side buttons (currently unused) ===== */
  .header-buttons {
    display: none;
  }
  
  /* ===== Mobile menu toggle (hamburger) ===== */
  .mobile-menu-toggle {
    display: none; /* shown on smaller screens via media query */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 15px;
  }
  
  .mobile-menu-toggle:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
  }
  
  .mobile-menu-toggle-bar {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    margin: 4px 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  
  /* Animate burger into "X" when body has .mobile-nav-open */
  body.mobile-nav-open .mobile-menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.mobile-nav-open .mobile-menu-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  body.mobile-nav-open .mobile-menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* ===== Mobile sidebar + overlay ===== */
  
  /* Dark overlay behind the drawer */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  
  .mobile-nav-overlay.is-active {
    display: block;
    opacity: 1;
  }
  
  /* Drawer container */
  .site-nav.mobile-drawer {
    display: none; /* turned on in mobile breakpoint */
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 260px;
    background: linear-gradient(135deg, #1a4b8c 0%, #f9a826 100%);
    padding: 20px 15px 30px;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  
  /* When JS adds .is-open, slide in */
  .site-nav.mobile-drawer.is-open {
    transform: translateX(0);
  }
  
  /* Header inside drawer: logo + close button */
  .mobile-nav-header {
    display: none; /* only shown on mobile */
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  
  .mobile-nav-logo img {
    height: 70px;
    width: auto;
  }
  
  .mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
  }
  
  /* Stack links vertically in drawer */
  .site-nav.mobile-drawer ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .site-nav.mobile-drawer ul li a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    white-space: normal;
    display: block;
  }
  
  /* ===== Responsive Header Styles ===== */
  
  /* ---- Large screens: desktop nav only ---- */
  @media (min-width: 1101px) {
    .desktop-nav {
      display: block;
    }
  
    .mobile-menu-toggle,
    .mobile-nav-overlay,
    .site-nav.mobile-drawer {
      display: none;
    }
  }
  
  /* ---- Up to 1100px: use hamburger + drawer (tablet + phone) ---- */
  @media (max-width: 1100px) {
    .header-inner {
      gap: 12px;
    }
  
    .logo img {
      height: 75px;
    }
  
    /* Hide desktop inline nav so it never gets cramped */
    .desktop-nav {
      display: none;
    }
  
    /* Show hamburger */
    .mobile-menu-toggle {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
    }
  
    /* Activate drawer styles */
    .site-nav {
      margin-left: 0;
    }
  
    .site-nav.mobile-drawer {
      display: flex;
    }
  
    .mobile-nav-header {
      display: flex;
    }
  
    .site-header {
      padding: 8px 0;
    }
  
    .site-nav ul {
      gap: 10px;
    }
  }
  
  /* Medium devices tweaks (tablets, less than 992px) */
  @media (max-width: 992px) {
    .site-nav ul li a {
      font-size: 16px;
    }
  }
  
  /* Extra tweaks for smaller phones */
  @media (max-width: 576px) {
    .logo img {
      height: 60px;
    }
  
    .site-nav.mobile-drawer {
      width: 230px;
    }
  
    .site-nav.mobile-drawer ul li a {
      font-size: 15px;
    }
  }
  