:root {
  --hotel-blue: #1a3a5f;
  --hotel-yellow: #eab308;
  --hotel-white: #ffffff;
  --hotel-light-blue: #f0f4f8;
  --font-sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Playfair Display", ui-serif, Georgia, serif;
}

body {
  font-family: var(--font-sans);
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-serif);
}

/* Navbar Customization */
.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: white !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}

.nav-link {
  font-weight: 500;
  color: var(--hotel-blue) !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--hotel-yellow);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nirmal_button>a {
    text-decoration:none !important;
}
/* Hero Section */
.carousel-item {
  height: 100vh;
  min-height: 600px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  filter: brightness(0.7);
}

.carousel-caption {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Section Spacing */
section {
  padding: 80px 0;
}

/* Cards & Hover Effects */
.hotel-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--hotel-light-blue);
  color: var(--hotel-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.hotel-card:hover .card-icon {
  background: var(--hotel-blue);
  color: white;
}

/* Gallery Zoom */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 58, 95, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Buttons */
.btn-hotel {
  background-color: var(--hotel-blue);
  color: white;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-hotel:hover {
  background-color: #122a45;
  color: white;
  transform: scale(1.05);
}

.btn-hotel-outline {
  border: 2px solid var(--hotel-blue);
  color: var(--hotel-blue);
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-hotel-outline:hover {
  background-color: var(--hotel-blue);
  color: white;
}

.btn-yellow {
  background-color: var(--hotel-yellow);
  color: white;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
}

.btn-yellow:hover {
  background-color: #d9a306;
  color: white;
}

/* Form Styling */
.form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--hotel-blue);
  box-shadow: 0 0 0 0.2rem rgba(26, 58, 95, 0.1);
}

/* Footer */
footer {
  background-color: var(--hotel-blue);
  color: white;
  padding: 60px 0 20px;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--hotel-yellow);
}

/* Utilities */
.text-hotel-blue { color: var(--hotel-blue); }
.text-hotel-yellow { color: var(--hotel-yellow); }
.bg-hotel-blue { background-color: var(--hotel-blue); }
.bg-hotel-light { background-color: var(--hotel-light-blue); }
