body {
  font-family: Arial, sans-serif;
  background: #e0f7fa;
  margin: 0;
  padding: 20px;
}
/* Container */
.container-nav {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 5px;
}

/* Header Styling */
header {
  background-color: #0077b6;
  color: white;
  padding: 15px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar Layout */
.nav {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.logo-text {
  font-size: 30px;
  font-weight: 800;
  color: white;
}

/* Navigation */
.navigation ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-shrink: 1;
}

.navigation li {
  display: inline-block;
}

.navigation a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  
}

.navigation a:hover,
.navigation a.active {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustment */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    
    align-items: center;
    gap: 8px;
  }

  .logo-section {
    
    justify-content: center;
    margin-bottom: 5px;
  }

  .navigation ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .navigation li {
    
    margin: 0;
  }
  .navigation a{
    padding: 4px 8px;
    font-size: 14px;
    white-space: nowrap;
  }

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

  .logo-img {
    width: 70px;
  }
}


.container-head {
  background: white;
  max-width: 700px;
  margin: auto;
  padding: 30px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.container-head h1, h3, h4 {
  text-align: center;
  color: #005b99;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 18px;
  margin: 5px 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"] {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #005b99;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color:  #05446d;
}

.floor-section {
  background-color: #f1f8e9;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
h3 {
  text-align: center;
  font-size: 20px;
  color: #004d40;
  margin-top: 10px;
}

#total-price,
#advance-amount {
  color: red;
  font-weight: bold;
}

/* Closed Dates Notice Box */
.closed-dates-box {
  background-color: #ffe6e6; 
  color: #b30000; 
  padding: 15px;
  border-radius: 8px;
  margin: 20px auto;
  font-weight: bold;
  border: 2px solid #ff4d4d; 
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  text-align: center;
}

/* Closed Dates List Styling */
.closed-dates-box ul {
  list-style-type: none;
  padding-left: 0;
  margin: 10px 0 0;
}

.closed-dates-box li {
  padding: 5px 0;
  font-size: 16px;
  color: #800000; 
}

/* Media Query for Mobile */
@media (max-width: 600px) {
  #location iframe {
      height: 250px; 
  }
}

html, body {
  overflow-x: hidden;
}

* {
  max-width: 100vw;
}