/* CSS Variables - Sunset Paradise Theme */
:root {
  --primary-color: #ff6b35;          /* Sunset Orange - Cam hoàng hôn */
  --primary-light: #ff9068;          /* Coral Pink - Hồng san hô */
  --primary-dark: #e55100;           /* Deep Sunset - Hoàng hôn đậm */
  --secondary-color: #ffd54f;        /* Golden Hour - Giờ vàng */
  --secondary-light: #ffff81;        /* Sunshine Yellow - Vàng nắng */
  --secondary-dark: #ffb300;         /* Amber Gold - Vàng hổ phách */
  --accent-color: #fff3e0;           /* Sunset Mist - Sương hoàng hôn */
  --accent-dark: #d84315;            /* Crimson Red - Đỏ thẫm */
  --neutral-light: #ffffff;          /* Pure White - Trắng tinh khiết */
  --neutral-medium: #fef7f0;         /* Warm White - Trắng ấm */
  --neutral-dark: #5d4037;           /* Sunset Brown - Nâu hoàng hôn */
  --text-light: #ffffff;             /* White text */
  --text-dark: #3e2723;              /* Warm Brown Text - Nâu ấm */
  --success-color: #66bb6a;          /* Tropical Green - Xanh nhiệt đới */
  --warning-color: #ff9800;          /* Tropical Orange - Cam nhiệt đới */
  --error-color: #e53935;            /* Sunset Red - Đỏ hoàng hôn */
  --border-radius: 25px;             /* Tropical curves */
  --box-shadow: 0 30px 70px rgba(255, 107, 53, 0.35);
  --box-shadow-hover: 0 40px 90px rgba(255, 107, 53, 0.45);
  --transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--neutral-light);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--neutral-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--box-shadow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: var(--text-dark);
  box-shadow: var(--box-shadow);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(144, 164, 174, 0.1);
  z-index: 9999;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 45px rgba(255, 107, 53, 1.6);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.nav-brand i {
  margin-right: 10px;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(229, 81, 0, 0.75)), 
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 243, 224, 0.3) 0%, rgba(216, 67, 21, 0.6) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sunset" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="%23ffd54f" opacity="0.4"/><circle cx="75" cy="45" r="1.2" fill="%23ff9068" opacity="0.5"/><circle cx="45" cy="75" r="1.8" fill="%23ffff81" opacity="0.3"/><circle cx="65" cy="15" r="0.8" fill="%23ffffff" opacity="0.6"/><circle cx="15" cy="65" r="1.1" fill="%23ff6b35" opacity="0.4"/><path d="M10,30 Q20,20 30,30 Q40,40 50,30 Q60,20 70,30 Q80,40 90,30" stroke="%23ffd54f" stroke-width="1" fill="none" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23sunset)"/></svg>');
  animation: sunrays 100s ease-in-out infinite;
  z-index: 1;
}

@keyframes sunrays {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(20px, -15px) rotate(90deg) scale(1.1); }
  50% { transform: translate(-10px, 25px) rotate(180deg) scale(0.9); }
  75% { transform: translate(15px, -20px) rotate(270deg) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll i {
  font-size: 1.5rem;
  color: var(--text-light);
}

/* About Section */
.about {
  background: linear-gradient(135deg, var(--neutral-light) 0%, var(--accent-color) 50%, var(--neutral-medium) 100%);
  color: var(--text-dark);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tropical" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="28" cy="28" r="2.5" fill="%23ff6b35" opacity="0.12"/><circle cx="72" cy="72" r="2" fill="%23ffd54f" opacity="0.15"/><circle cx="50" cy="12" r="1.8" fill="%23ff9068" opacity="0.1"/><circle cx="12" cy="88" r="1.5" fill="%23fff3e0" opacity="0.13"/><circle cx="88" cy="32" r="1.2" fill="%23ffffff" opacity="0.08"/><path d="M8,45 Q18,35 28,45 Q38,55 48,45 Q58,35 68,45 Q78,55 88,45 Q98,35 108,45" stroke="%23ff6b35" stroke-width="1.5" fill="none" opacity="0.14"/><path d="M3,65 Q13,55 23,65 Q33,75 43,65 Q53,55 63,65 Q73,75 83,65 Q93,55 103,65" stroke="%23ffd54f" stroke-width="1.2" fill="none" opacity="0.12"/><ellipse cx="50" cy="50" rx="6" ry="2.5" fill="%23ff9068" opacity="0.06" transform="rotate(30 50 50)"/><polygon points="22,25 24,20 26,25 24,30" fill="%23fff3e0" opacity="0.08"/><polygon points="78,75 80,70 82,75 80,80" fill="%23ff6b35" opacity="0.07"/><circle cx="18" cy="72" r="0.9" fill="%23ffd54f" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23tropical)"/></svg>');
  opacity: 0.7;
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Rooms Section */
.rooms {
  background: linear-gradient(45deg, var(--accent-color) 0%, var(--neutral-medium) 50%, var(--neutral-light) 100%);
  position: relative;
}

.rooms::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 350px,
    rgba(255, 107, 53, 0.05) 350px,
    rgba(255, 107, 53, 0.05) 700px
  ),
  repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 400px,
    rgba(255, 213, 79, 0.045) 400px,
    rgba(255, 213, 79, 0.045) 800px
  ),
  repeating-radial-gradient(
    circle at 30% 70%,
    transparent,
    transparent 300px,
    rgba(255, 144, 104, 0.04) 300px,
    rgba(255, 144, 104, 0.04) 330px
  ),
  repeating-conic-gradient(
    from 30deg at 70% 30%,
    transparent 0deg,
    rgba(255, 243, 224, 0.035) 90deg,
    transparent 180deg
  );
  z-index: 1;
}

.rooms .container {
  position: relative;
  z-index: 2;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.room-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.room-image {
  position: relative;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.room-card:hover .room-image img {
  transform: scale(1.1);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.room-content {
  padding: 2rem;
}

.room-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.room-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.room-features span {
  background: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--neutral-dark);
}

.room-features i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.room-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.room-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.room-amenities span {
  font-size: 0.9rem;
  color: var(--neutral-dark);
}

.room-amenities i {
  margin-right: 0.5rem;
  color: var(--primary-color);
  width: 15px;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 600;
}

.room-price .price {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.room-price .period {
  color: var(--neutral-dark);
}

/* Amenities Section */
.amenities {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-dark) 50%, var(--primary-dark) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.amenities::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.22) 0%, rgba(255, 213, 79, 0.2) 25%, rgba(255, 144, 104, 0.18) 50%, rgba(255, 243, 224, 0.16) 75%, rgba(255, 255, 255, 0.12) 100%);
  animation: floatSunset 110s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatSunset {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  8% { transform: translate(70px, -50px) rotate(25deg) scale(1.12); }
  16% { transform: translate(-65px, 70px) rotate(50deg) scale(0.88); }
  24% { transform: translate(60px, -45px) rotate(75deg) scale(1.18); }
  32% { transform: translate(-55px, 65px) rotate(100deg) scale(0.82); }
  40% { transform: translate(50px, -40px) rotate(125deg) scale(1.15); }
  48% { transform: translate(-45px, 55px) rotate(150deg) scale(0.85); }
  56% { transform: translate(40px, -35px) rotate(175deg) scale(1.1); }
  64% { transform: translate(-35px, 50px) rotate(200deg) scale(0.9); }
  72% { transform: translate(30px, -30px) rotate(225deg) scale(1.08); }
  80% { transform: translate(-25px, 45px) rotate(250deg) scale(0.92); }
  88% { transform: translate(20px, -25px) rotate(275deg) scale(1.05); }
  96% { transform: translate(-15px, 35px) rotate(300deg) scale(0.95); }
}

.amenities .container {
  position: relative;
  z-index: 2;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.amenity-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(144, 164, 174, 0.3);
}

.amenity-icon i {
  font-size: 2rem;
  color: white;
}

.amenity-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.amenity-card p {
  line-height: 1.6;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(0deg, var(--neutral-light) 0%, var(--accent-color) 30%, var(--neutral-medium) 70%, var(--secondary-light) 100%);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 38%, rgba(255, 107, 53, 0.06) 50%, transparent 62%),
    linear-gradient(-45deg, transparent 38%, rgba(255, 213, 79, 0.055) 50%, transparent 62%),
    linear-gradient(135deg, transparent 38%, rgba(255, 144, 104, 0.05) 50%, transparent 62%),
    linear-gradient(-135deg, transparent 38%, rgba(255, 243, 224, 0.045) 50%, transparent 62%),
    linear-gradient(90deg, transparent 38%, rgba(255, 255, 255, 0.04) 50%, transparent 62%),
    linear-gradient(0deg, transparent 38%, rgba(216, 67, 21, 0.035) 50%, transparent 62%),
    linear-gradient(60deg, transparent 38%, rgba(229, 81, 0, 0.03) 50%, transparent 62%),
    linear-gradient(-60deg, transparent 38%, rgba(93, 64, 55, 0.025) 50%, transparent 62%);
  background-size: 220px 220px, 200px 200px, 240px 240px, 180px 180px, 260px 260px, 280px 280px, 300px 300px, 320px 320px;
  z-index: 1;
}

.gallery .container {
  position: relative;
  z-index: 2;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.rooms-filter {
  justify-content: center;
  display: flex;
  padding-bottom: 15px;
  gap: 20px;

}

.filter-btn, .room-filter-btn {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active,
.room-filter-btn:hover,
.room-filter-btn.active {
  background: var(--primary-color);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: white;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(to right, var(--neutral-light) 0%, var(--accent-color) 50%, var(--neutral-light) 100%);
  position: relative;
}

.testimonials::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 18% 28%, rgba(255, 107, 53, 0.15) 0%, transparent 72%),
    radial-gradient(circle at 82% 72%, rgba(255, 213, 79, 0.13) 0%, transparent 77%),
    radial-gradient(circle at 50% 8%, rgba(255, 144, 104, 0.11) 0%, transparent 62%),
    radial-gradient(circle at 8% 92%, rgba(255, 243, 224, 0.09) 0%, transparent 67%),
    radial-gradient(circle at 92% 28%, rgba(255, 255, 255, 0.07) 0%, transparent 57%),
    radial-gradient(circle at 28% 82%, rgba(216, 67, 21, 0.05) 0%, transparent 52%),
    radial-gradient(circle at 82% 18%, rgba(229, 81, 0, 0.04) 0%, transparent 47%),
    radial-gradient(circle at 42% 12%, rgba(93, 64, 55, 0.03) 0%, transparent 42%);
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.stars i {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.3rem;
  color: var(--primary-dark);
}

.author-info span {
  color: var(--neutral-dark);
  font-size: 0.9rem;
}

/* Booking Section */
.booking {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.88), rgba(216, 67, 21, 0.8)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
  position: relative;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 243, 224, 0.2) 0%, transparent 50%, rgba(255, 107, 53, 0.5) 100%);
  z-index: 1;
}

.booking .container {
  position: relative;
  z-index: 2;
}

.booking-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.booking-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.booking-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.booking-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  color: var(--text-dark);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(144, 164, 174, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.booking-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.info-item i {
  color: var(--success-color);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--neutral-medium) 50%, var(--accent-color) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: conic-gradient(from 45deg, transparent, rgba(255, 107, 53, 0.15), transparent, rgba(255, 213, 79, 0.13), transparent, rgba(255, 144, 104, 0.11), transparent, rgba(255, 243, 224, 0.09), transparent, rgba(255, 255, 255, 0.07), transparent, rgba(216, 67, 21, 0.05), transparent, rgba(229, 81, 0, 0.04), transparent, rgba(93, 64, 55, 0.03), transparent);
  animation: rotateSunset 95s linear infinite;
  z-index: 1;
}

@keyframes rotateSunset {
  0% { transform: rotate(0deg) scale(1); }
  5% { transform: rotate(20deg) scale(1.015); }
  10% { transform: rotate(40deg) scale(1.03); }
  15% { transform: rotate(60deg) scale(1.045); }
  20% { transform: rotate(80deg) scale(1.06); }
  25% { transform: rotate(100deg) scale(1.075); }
  30% { transform: rotate(120deg) scale(1.09); }
  35% { transform: rotate(140deg) scale(1.105); }
  40% { transform: rotate(160deg) scale(1.12); }
  45% { transform: rotate(180deg) scale(1.135); }
  50% { transform: rotate(200deg) scale(1.12); }
  55% { transform: rotate(220deg) scale(1.105); }
  60% { transform: rotate(240deg) scale(1.09); }
  65% { transform: rotate(260deg) scale(1.075); }
  70% { transform: rotate(280deg) scale(1.06); }
  75% { transform: rotate(300deg) scale(1.045); }
  80% { transform: rotate(320deg) scale(1.03); }
  85% { transform: rotate(340deg) scale(1.015); }
  90% { transform: rotate(350deg) scale(1.008); }
  95% { transform: rotate(355deg) scale(1.004); }
  100% { transform: rotate(360deg) scale(1); }
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  flex: 1;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.3rem;
  min-width: 30px;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
  margin-top: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-dark) 50%, var(--neutral-dark) 100%);
  color: var(--secondary-light);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 22% 38%, rgba(255, 107, 53, 0.22) 0%, transparent 79%),
    radial-gradient(circle at 78% 62%, rgba(255, 213, 79, 0.19) 0%, transparent 75%),
    radial-gradient(circle at 50% 22%, rgba(255, 144, 104, 0.17) 0%, transparent 71%),
    radial-gradient(circle at 18% 82%, rgba(255, 243, 224, 0.15) 0%, transparent 67%),
    radial-gradient(circle at 82% 42%, rgba(255, 255, 255, 0.13) 0%, transparent 63%);
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-content {
  gap: 18rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
  color: var(--primary-light);
}

.footer-section.first-section {
  max-width: 18%;
}

.footer-section p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}


.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-contact i {
  color: var(--primary-light);
  min-width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  backdrop-filter: blur(15px);
  box-shadow: 0 32px 80px rgba(255, 107, 53, 1);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.back-to-top i {
  color: white;
  font-size: 1.2rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  color: white;
  font-size: 1.5rem;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  top: 50%;
  transform: translateY(-50%);
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.modal-close:hover {
  color: #ccc;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.modal-prev,
.modal-next {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
  pointer-events: all;
}

.modal-prev:hover,
.modal-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
    top: 65px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .booking-info {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-float {
    bottom: 100px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .booking-form {
    padding: 2rem 1.5rem;
  }

  .booking-title {
    font-size: 2rem;
  }

  .room-amenities {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .back-to-top,
  .whatsapp-float,
  .gallery-modal {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .section-padding {
    padding: 40px 0;
  }
}

/* Dark Theme Styles - Updated for Sunset Paradise Theme */
body.dark-theme {
  background-color: #1a0f0a;
  color: #fff3e0;
}

body.dark-theme .hero {
  background: linear-gradient(135deg, rgba(229, 81, 0, 0.9), rgba(216, 67, 21, 0.8)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
}

body.dark-theme .section-title {
  color: var(--primary-light);
}

body.dark-theme .about-content h2,
body.dark-theme .booking-content h2,
body.dark-theme .pricing-name,
body.dark-theme .team-name,
body.dark-theme .blog-title,
body.dark-theme .offer-title {
  color: var(--primary-light);
}

body.dark-theme .room-card,
body.dark-theme .amenity-card,
body.dark-theme .testimonial-card,
body.dark-theme .feature-item,
body.dark-theme .contact-form,
body.dark-theme .booking-form {
  background-color: #2e1a0f;
  color: #fff3e0;
  border: 1px solid rgba(255, 107, 53, 0.9);
}

body.dark-theme .about,
body.dark-theme .rooms,
body.dark-theme .gallery,
body.dark-theme .amenities,
body.dark-theme .testimonials,
body.dark-theme .contact {
  background: linear-gradient(135deg, #150a06 0%, #1a0f0a 50%, #2e1a0f 100%);
}

body.dark-theme .form-group input,
body.dark-theme .form-group select,
body.dark-theme .form-group textarea {
  background-color: #452d1a;
  border-color: var(--primary-color);
  color: #fff3e0;
}

body.dark-theme .navbar {
  background: rgba(26, 15, 10, 0.95);
}

body.dark-theme .nav-brand,
body.dark-theme .nav-link {
  color: #fff3e0;
}

/* Cookie Consent Styles */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border-radius: var(--border-radius);
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 107, 53, 0.8);
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-text {
  flex: 1;
  margin-right: 20px;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--primary-color);
  color: white;
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-decline {
  background: #f5f5f5;
  color: var(--text-dark);
}

.cookie-decline:hover {
  background: #e0e0e0;
}

.cookie-settings {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.cookie-settings:hover {
  background: var(--primary-color);
  color: white;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}

.cookie-modal-header h3 {
  margin: 0;
  color: var(--primary-dark);
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--neutral-dark);
}

.cookie-modal-body {
  padding: 20px;
}

.cookie-option {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.4);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-option h4 {
  margin: 0;
  color: var(--primary-dark);
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--primary-color);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-option p {
  margin: 0;
  color: var(--neutral-dark);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 107, 53, 0.7);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  position: sticky;
  bottom: 0;
  background: white;
  z-index: 1;
}


@media (max-width: 1170px) {
  .footer-section {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: center;
  }

  .footer-section.first-section {
max-width:unset;
}

  .footer-content {
    gap: 5rem;
  }
}