* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

html {
  scroll-padding-top: 80px;
}

/* Hero Banner */
.hero {
  height: 55vh;
  min-height: 380px;
  background: url('images/banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero-content h1 {
  font-size: 5.2rem;
  color: #ffd700;
  margin-bottom: 15px;
  text-shadow: 0 5px 25px rgba(0,0,0,0.6);
  letter-spacing: 3px;
}
.tagline {
  font-size: 1.85rem;
  margin-bottom: 40px;
  font-weight: 300;
}
.btn {
  padding: 16px 52px;
  background: #ffd700;
  color: black;
  border: none;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.btn:hover {
  background: #ffcc00;
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

/* Navigation */
.navbar {
  background: rgba(15, 15, 15, 0.96);
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2.5px solid rgba(255, 215, 0, 0.45);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar a:hover {
  color: #111;
  background: #ffd700;
  border-color: #ffd700;
  transform: translateY(-2px);
}

.navbar a.active {
  color: #111;
  background: #ffd700;
  border-color: #ffd700;
}

/* মোবাইলের জন্য */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 10px;
    gap: 8px;
  }
  .navbar a {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .navbar a {
    font-size: 0.88rem;
    padding: 7px 14px;
  }
}

/* Sections */
.section {
  padding: 30px 20px;
  text-align: center;
}
h2 {
  font-size: 3.4rem;
  margin-bottom: 55px;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: -1px;
  position: relative;
}
h2:after {
  content: '';
  width: 85px;
  height: 4px;
  background: #ffd700;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}

/* Rooms */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}
.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}
.card:hover {
  transform: translateY(-20px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}
.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.card h3 {
  padding: 22px 22px 8px;
  font-size: 1.65rem;
}
.price {
  color: #c9a227;
  font-size: 1.55rem;
  font-weight: bold;
  padding: 0 22px 15px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-grid img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.06);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ==================== About Us - আপডেটেড ==================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  text-align: left;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-card img {
  width: 100%;
  height: 400px;           /* লম্বা কমানো হয়েছে */
  object-fit: contain;     /* কাটা যাবে না, পুরো ছবি দেখাবে */
  background: #f8f9fa;     /* সাদা ব্যাকগ্রাউন্ড যাতে ফাঁকা জায়গা সুন্দর দেখায় */
  padding: 8px;
  box-sizing: border-box;
}

.about-card h3 {
  padding: 18px 20px 8px;
  font-size: 1.55rem;
  color: #1a1a1a;
}

.about-card p {
  padding: 0 20px 25px;
  color: #555;
  line-height: 1.7;
}

/* Facilities */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}
.facilities-grid div {
  background: white;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.facilities-grid div:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.facilities-grid i {
  font-size: 3rem;
  margin-bottom: 18px;
}

/* Different Colors for Facilities */
.facilities-grid div:nth-child(1) i { color: #1e90ff; }
.facilities-grid div:nth-child(2) i { color: #32cd32; }
.facilities-grid div:nth-child(3) i { color: #ff6347; }
.facilities-grid div:nth-child(4) i { color: #9370db; }
.facilities-grid div:nth-child(5) i { color: #ff69b4; }
.facilities-grid div:nth-child(6) i { color: #00bfff; }

/* Contact Section - কার্ড আরও চিকন করা হয়েছে */
#contact {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

#contact .contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.contact-card {
  background: white;
  padding: 18px 14px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-card i {
  font-size: 2.1rem;
  margin-bottom: 8px;
}

/* প্রতিটি আইকনের আলাদা কালার */
.contact-card:nth-child(1) i { color: #1e90ff; }   /* Phone - নীল */
.contact-card:nth-child(2) i { color: #25D366; }   /* WhatsApp - সবুজ */
.contact-card:nth-child(3) i { color: #ea4335; }   /* Email - লাল */
.contact-card:nth-child(4) i { color: #f4b400; }   /* Location - হলুদ/অ্যাম্বার */

.contact-card h3 {
  margin: 8px 0 4px;
  font-size: 1.15rem;
  color: #222;
}

.contact-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
  word-break: break-word;
}

/* Social Links */
.social-section {
  margin-top: 60px;
}

.social-section h3 {
  margin-bottom: 25px;
  color: #333;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #333;
  font-size: 1.9rem;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.social-links a:hover {
  background: #ffd700;
  color: black;
  transform: translateY(-8px);
}

/* Footer */
footer {
  background: linear-gradient(to top, #0a0a0a, #1a1a1a);
  color: #ddd;
  text-align: center;
  padding: 85px 20px 55px;
}
.footer-logo {
  height: 92px;
  margin-bottom: 28px;
  filter: brightness(1.1);
}
footer p {
  font-size: 1.05rem;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 3.8rem; }
  h2 { font-size: 2.6rem; }
  .contact-container { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}