/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #d4af37; /* Gold */
  --primary-dark: #b5952f;
  --secondary-color: #0b1a2a; /* Deep Navy Blue */
  --accent-color: #f7f1e3;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #777777;
  --bg-light: #fdfbf7;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
  background-color: var(--secondary-color);
  padding: 1rem 0;
  transition: var(--transition);
}
/* Custom Text Logo Styling */
.brand-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: var(--primary-color) !important;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  text-decoration: none;
}
.brand-logo i {
  font-size: 2rem;
  margin-right: 12px;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.4));
}
.brand-logo span {
  font-weight: 300;
  color: var(--text-light);
  margin-left: 5px;
}
.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
}
.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 600;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.5s both;
}
.hero-content .btn {
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* Cards & Rooms */
.room-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  background: #fff;
}
.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.room-img-wrapper {
  position: relative;
  overflow: hidden;
}
.room-img-wrapper img {
  transition: var(--transition);
}
.room-card:hover .room-img-wrapper img {
  transform: scale(1.05);
}
.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  z-index: 10;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--accent-color);
  padding: 60px 0 30px;
}
.footer h4 {
  color: var(--primary-color);
  margin-bottom: 25px;
}
.footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}
.footer a:hover {
  color: var(--primary-color);
}
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
}
.social-icons a:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating Actions */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}
.floating-whatsapp:hover {
  background-color: #128c7e;
  color: white;
  transform: scale(1.1);
}
