/* Base Typography */
body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #333;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
  background: rgb(255, 255, 255);
  transition: background 0.3s ease;
  box-shadow: 4px 0px 5px #ccc;
}
.navbar.scrolled {
  background: rgb(255, 255, 255);
}
.navbar-brand img {
  height: 55px;
}
.navbar .nav-link {
  color: #333 !important;
  margin: 0 12px;
  font-weight: 500;
  transition: 0.3s;
}
.navbar .nav-link.active {
  color: #dc3838 !important;
}
.navbar .nav-link:hover {
  color: #dc3838 !important;
}

/* Buttons */
.btn-book-now {
  background: #ffd700;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 20px;
  transition: 0.3s;
}
.btn-book-now:hover {
  background: #fff;
  color: #000;
}

/* Page-Specific Hero Variants */
.rooms-hero, .events-hero, .contact-hero, .dining-hero, .facilities-hero, .gallery-hero {
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.rooms-hero::after, .events-hero::after,.contact-hero::after, .dining-hero::after, .facilities-hero::after, .gallery-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}
.rooms-hero .hero-content, .events-hero .hero-content, .contact-hero .hero-content, .dining-hero .hero-content, .facilities-hero .hero-content, .gallery-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

/* Sections */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}
.section-title h2 {
  font-weight: 700;
}
.cta-section {
  background: linear-gradient(135deg,#111,#333);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

/* Cards & Grids */
.contact-info-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}
.contact-info-card i {
  font-size: 2rem;
  color: #d4a017;
  margin-bottom: 15px;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

.facility-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.facility-card img {
  transition: transform 0.4s ease;
}
.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.facility-card:hover img {
  transform: scale(1.05);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.gallery-filter button {
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  background: #eee;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.gallery-filter button.active,
.gallery-filter button:hover {
  background: #d4a017;
  color: #fff;
}
.gallery-grid img {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

/* Forms and Map */
.form-section {
  padding: 60px 0;
}
.form-control,
textarea {
  border-radius: 8px;
}
.map-container iframe {
  border: 0;
  width: 100%;
  height: 400px;
  border-radius: 12px;
}
.faq-section .accordion-button {
  font-weight: 500;
}

/* Icons */
.amenity-icon,
.icon-grid i,
.event-icon {
  font-size: 2rem;
  color: #d4a017;
}
.icon-grid i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.room-card .badge {
  font-size: 0.9rem;
}

/* Other Sections */
.highlight-section {
  background: linear-gradient(135deg,#fff,#f4f4f4);
  padding: 60px 0;
}
.testimonial-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  text-align: center;
}
.category-section {
  padding: 70px 0;
}
.category-section h3 {
  text-align: center;
  margin-bottom: 35px;
  font-weight: 700;
}
.category-description {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

/* Footer */
.footer {
  background: #111;
  color: #ddd;
  padding: 50px 0;
}
.footer h5 {
  color: #fff;
  margin-bottom: 20px;
}
.footer a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}
.footer a:hover {
  color: #ffd700;
}
.footer .social-icons a {
  font-size: 1.2rem;
  margin-right: 15px;
  display: inline-block;
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background: #000;
  color: #aaa;
  font-size: 0.9rem;
}
footer {
  font-size: 0.95rem;
}
