/* ===== Color Scheme ===== */
.text-maroon { color: #7A0019; }
.text-green { color: #006400; }
.text-gold { color: #FFCC00; }

.bg-maroon { background-color: #7A0019 !important; }
.bg-green { background-color: #006400 !important; }
.bg-gold { background-color: #FFCC00 !important; }

.btn-gold {
  background-color: #FFCC00;
  color: #7A0019;
  border: none;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background-color: #e6b800;
  color: #fff;
}

.divider {
  width: 80px; height: 4px; border-radius: 2px; background: linear-gradient(90deg, #7a1e1e, #e3b23c); 
}
/* ===== Hero Section ===== */
.hero {
  height: 100vh;
  background: url('../img/dorm-bg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.45) 0%,     /* gold */
    rgba(128, 0, 0, 0.55) 50%,      /* maroon */
    rgba(0, 100, 0, 0.5) 100%       /* green */
  );
  backdrop-filter: blur(5px);
}
.hero .content {
  z-index: 2;
}

/* ===== PRICING SECTION ===== */
#pricing {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.5) 0%,    /* gold */
    rgba(128, 0, 0, 0.7) 50%,     /* maroon */
    rgba(0, 100, 0, 0.6) 100%     /* green */
  );
  z-index: 1;
}

#pricing .container {
  position: relative;
  z-index: 2;
}

/* Make text pop slightly */
#pricing h2, #pricing h3, #pricing p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Button styling */
#pricing .btn-gold {
  background-color: #FFD700;
  color: #800000;
  transition: 0.3s;
}
#pricing .btn-gold:hover {
  background-color: #e3b23c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* ===== General ===== */
body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background-color: #fff;
}

p {
  color: #333;
  line-height: 1.7;
}

.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  transition: 0.3s;
}
.nav-link:hover {
  color: #aaa6a6 !important;
}

.room-card img {
  height: 230px;
  object-fit: cover;
}

/* ===== CONTACT SECTION ===== */
#contact {
  position: relative;
  z-index: 1;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: blur(20px);
}

.contact-card {
  border-radius: 15px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Bootstrap Icons colors */
.text-green { color: #006400 !important; }

/* ===== FOOTER STYLING ===== */
.footer {
  background: black;
  position: relative;
  z-index: 1;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

.text-gold {
  color: #ffd700 !important;
}

.footer img {
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.footer p, .footer li {
  color: #ffffff;
}

/* Small screens */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
}

/* ===== STICKY NAVBAR ===== */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

/* When scrolled, darken a bit for contrast */
.navbar.scrolled {
  background-color: #5a0000 !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
