body{
    width: 100%;
    font-family: Raleway;
    margin: 0;
    padding: 0;
}

.price-color{
  font-weight: bold;
}

.container{
  width: 100%;
  
}


/* Scroll Navbar hidden by default */
#scroll-navbar {
  position: fixed;
  top: -80px;
  left: 0;
  width: 100%;
  background: #0b1d26;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.5s ease;
  opacity: 0;
  backdrop-filter: blur(10px);
}

/* When visible */
#scroll-navbar.visible {
  top: 0;
  opacity: 1;
}

/* Navbar content layout */
.nav-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
}

.nav-logo {
  font-size: 1.4rem;
  color: #e6f0f5;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #e6f0f5;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #2b8dfc;
}


.floor1 {
  background: url('img/7.jpg') center/cover no-repeat;
  text-align: center;
  padding: 150px 20px;
  color: white;
  background-attachment: fixed;
  background-blend-mode: darken;
  background-color: rgba(0,0,0,0.4);
}

.tour-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.tour-subtext {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 20px auto;
  color: #eaeaea;
}

/* FLOOR 3 - TOURS */
.floor3 {
  padding: 80px 20px;
  background: #f7f9fb;
}

.tours-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tour-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  text-align: center;
}

.tours2-chapter{
    margin-top: 2%;
}

.tour-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tour-card h2 {
  color: #0b1d26;
  margin: 15px 0 8px;
  font-size: 1.4rem;
}

.tour-card p {
  padding: 0 15px 20px;
  color: #555;
  font-size: 0.95rem;
}

.tour-btn {
  display: inline-block;
  background: #0b1d26;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.tour-btn:hover {
  background: #1c4455;
  transform: scale(1.05);
}

.tour-card:hover {
  transform: translateY(-5px);
}

/* FLOOR 4 - CONTACT */
.floor4 {
  background: #0b1d26;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input, .contact-form button {
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.contact-form input {
  background: #f0f0f0;
}

.contact-form button {
  background: #1da1f2;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #1486c7;
}







@media (max-width: 700px) {
  .nav-content {
    flex-direction: column;
  }

  .nav-links {
    gap: 12px;
  }
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .tour-title {
    font-size: 2.2rem;
  }
  .floor1 {
    padding: 100px 15px;
  }
}