.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  padding: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.main {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.night-theme .main {
  background-color: #334155;
}

.sidebar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sidebar h3 {
  margin-bottom: 1.5rem;
  color: #667eea;
  font-size: 1.5rem;
  font-weight: 700;
}

.sidebar ul {
  list-style: none;
  padding-left: 0rem;
}

.sidebar li {
  margin: 1rem 0;
}

.sidebar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.75rem 1rem;
  display: block;
  border-radius: 12px;
  transition: all 0.3s;
  background: rgba(102, 126, 234, 0.05);
}

.sidebar a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.night-theme .sidebar {
  background-color: #0f172a;
}

.night-theme .sidebar a {
  color: white;
}

.night-theme .sidebar a:hover {
  background: white !important;
  color: black !important;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
}

.card h3,
.card p {
  margin-bottom: 1rem;
}

.card h3 {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #667eea;
}

.card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

.card button,
.card .btn {
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background: #007bff;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.card button:hover,
.card .btn:hover {
  background: #0056b3;
}

.night-theme .card {
  background-color: #334155;
}

.night-theme .card p {
  color: white !important;
}

.night-theme .card h3 {
  color: #a78bfa;
}

.faq {
  margin: 40px 0;
}

.faq h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item {
  margin-bottom: 1rem;
}

.question {
  cursor: pointer;
  padding: 10px;
  background: #007bff;
  color: white;
  border-radius: 5px;
  transition: background 0.3s ease;
  font-weight: 600;
}

.question:hover {
  background: #0056b3;
}

.answer {
  display: none;
  padding: 10px;
  margin-top: 5px;
  background: rgb(96, 82, 82);
  border-left: 3px solid #3b82f6;
  border-radius: 4px;
  transition: all 0.3s ease;
  color: white;
}

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 6px;
  width: 0%;
  background: linear-gradient(to right, #3b82f6, #8b5cf6, #ec4899);
  z-index: 9999;
  border-radius: 0 4px 4px 0;
  transition: width 0.15s linear;
}

.theme-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

#themeToggle {
  cursor: pointer;
}

@media (min-width: 700px) and (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 700px) {
  .cards {
    grid-template-columns: 1fr;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    font-size: 0.9rem;
  }

  #hotelName {
    width: 100%;
  }

  .layout {
    padding: 1rem;
  }

  .main {
    padding: 1.5rem;
  }
}

@media (min-width: 993px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  h3 {
    font-size: 1.4rem;
  }

  p {
    font-size: 1.1rem;
  }
}

.modeButton {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modeButton:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}
