* {
    box-sizing: border-box; /* Include padding and borders in height/width */
    margin: 0; /* Reset default margins */
  }
  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    background: #f6f9fc;
    height: 100vh;
    display: grid;
    grid-template-rows: 8vh 82vh 10vh; /* Fixed heights summing to 100vh */
    overflow: hidden; /* No overflow allowed */
  }
  header {
    background: #fff;
    color: #fff;
    padding: 0.5rem 2rem; /* Reduced padding to fit within 8vh */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vh; /* Exact height */
  }
  header .logo {
    font-size: 1.4rem;
    font-weight: bold;
  }
  header .logo > a > span {
    text-decoration: none !important;
    color: white;
    
  }

  header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 1rem;
  }
  header nav a:hover {
    text-decoration: underline;
  }

  /* LANGUAGE DROPDOWN */
.language-dropdown {
  color:yellow;
 }
 
  .hero {
    display: flex;
    flex-direction: column;
    padding: 0;
    max-width: 100%;
    height:100%; /* Exact height */
  }

  #breadcrumb {
    max-height: fit-content;
  }

  .container-fluid > nav > .breadcrumb {
    padding: 0;
    margin: 0;
  }

  .hero > .row {
    height: 100%;
    max-height: 100%;
  }

  .hero > .row > .hero-text {
    display: flex;
    flex-direction: column;
    max-width: 50vw;
    padding: 1rem;
    overflow: hidden; /* Ensure text doesn’t spill */
  }
  .hero-text h1 {
    font-size: 2rem; /* Reduced to fit */
    margin-bottom: 0.5rem;
    color: #0b2e4f;
  }
  .hero-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #333;
  }
  .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ff5722;
    color: #fff;
    padding: 0.7rem 1.5rem; /* Smaller padding */
    margin-bottom: 1rem;
    width: 100%;
    border: 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.2s;
  }
  .cta-btn:hover {
    background: #e64a19;
    transform: scale(1.05);
  }

  button.cta-btn:disabled {
    background: #9e9e9e !important;
    cursor: not-allowed !important;
    transform: none !important;
  }
  
  button.cta-btn:disabled:hover {
    background: #9e9e9e !important;
    transform: none !important;
  }

  .cta-btn span svg {
    display: block;
    height: 1em;
    width: auto;
  }
  .hero-img {
    flex: 1 1 400px;
    max-width: 600px;
    padding: 1rem;
    text-align: center;
    overflow: hidden; /* Ensure image doesn’t spill */
  }
  .hero-img img {
    max-width: 100%;
    max-height: 100%; /* Fit within hero’s 82vh */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: contain; /* Prevent distortion */
  }

  .prdct-img {
    height: 30vh;
    max-height: 30vh;
    width: 200px;
    object-fit: cover !important;
  }

  .sctr-img {
    height: 35vh;
    max-height: 35vh;
    width: 200px;
    object-fit: cover !important;
  }

  footer {
    background: #0b2e4f;
    color: #fff;
    text-align: center;
    padding: 0.5rem; /* Reduced padding to fit within 10vh */
    font-size: 0.9rem;
    height: 10vh; /* Exact height */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #current-year {
    min-width: 4ch;
  }


  .form-group {
    margin-bottom: 0.5rem;
  }
  .form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .form-group input {
    width: 100%;
    padding: 0.4rem;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .form-group button {
    background: #ff5722;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
  }
  .form-group button:hover {
    background: #e64a19;
  }
  .confirmation {
    max-width: 500px;
    margin: 1rem auto;
    text-align: center;
    font-size: 0.9rem;
    max-height: 100%; /* Fit within hero */
    overflow: hidden;
  }
/* NAVBAR LAYOUT */
.navbar {
  display: flex;
  justify-content: space-between; /* spread nav-links left, lang-dropdown right */
  align-items: center;
  width: 100%;
}


/* MAIN NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #0b2e4f; /* keep links white in header */
  text-decoration: none;
  font-size: 1rem;
}

.nav-links a:hover {
  text-decoration: underline;
}


.dropdown-menu li a:hover {
  background: #f0f0f0;
}

#room-form > input {
  max-width: 20vw !important;
}