/* Navbar */
  .navbar {
  display: flex;
  align-items: center; /* Ensure vertical alignment */
  justify-content: space-between;
  background-color: #2c3e50;
  padding: 10px 15px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 60px; /* ✅ Explicit height to control layout */
}


  
 .logo-container {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
}


.logo-img {
    height: 40px;   /* slightly smaller for better baseline match */
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Copperplate Gothic', 'Copperplate', serif;
    font-size: 18px; /* match with nav text size for consistency */
    font-weight: bold;
    color: white;
    line-height: 1; /* remove vertical offset */
    padding-top: 2px; /* fine-tune vertical alignment */
}
   .nav-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #ffffff;         /* improved contrast */
  padding: 8px 16px;
  border-radius: 25px;
  transition: 0.3s;
  font-weight: 500;       /* bolder text */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* optional */
}
  
  .nav-links a:hover,
  .nav-links a.active {
    background-color: #ffaf5f;
    color: #1c1e26;
  }
  
  .quote-btn {
    background-color: #ffaf5f;
    color: #1c1e26;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .quote-btn:hover {
    background-color: #ffa13f;
  }
  /* ====================
   Navbar: Mobile First
   ==================== */
.nav-links {
  display: none;
  flex-direction: column;
  background-color: #2c3e50;
  position: absolute;
  top: 60px; /* height of navbar */
  left: 0;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  z-index: 999;
}

.nav-links.active {
  display: flex;
}

.hamburger {
  font-size: 22px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;     /* ✅ Match navbar height */
  padding: 0;       /* ✅ Prevent extra spacing */
  margin: 0;        /* ✅ Reset default margin */
}


/* ====================
   Responsive: Desktop
   ==================== */
@media (min-width: 768px) {
  .hamburger {
    display: none; /* Hide hamburger on desktop */
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    width: auto;
    gap: 15px;
    align-items: center;
    padding: 0;
  }

  .nav-links a {
    padding: 8px 14px;
  }
}
/* Tablet styles (768px to 1024px) */
@media (min-width: 320px) and (max-width: 1366px) {
  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    padding: 6px 12px;
    font-size: 15px;
  }

  .quote-btn {
    padding: 8px 14px;
    font-size: 15px;
  }

  .logo-text {
    font-size: 16px;
  }

  .logo-img {
    height: 36px;
  }
}