/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 160px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #1089c2;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #2c1810 0%, #1d2951 50%, #7b7491 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("image.jpg") center/cover;
  opacity: 0.5;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.5) 0%,
    rgba(29, 41, 81, 0.5) 50%,
    rgba(123, 116, 145, 0.5) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #1089c2, #00bcd4);
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(16, 137, 194, 0.3);
  text-transform: uppercase;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 137, 194, 0.4);
  background: linear-gradient(45deg, #0f7ba8, #00a6b8);
}

/* Featured Hotel Section */
.featured-hotel {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-text h3 {
  color: #1089c2;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.featured-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #2c1810;
  margin-bottom: 25px;
  line-height: 1.3;
  font-weight: 700;
}

.featured-text p {
  color: #555;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature h4 {
  color: #2c1810;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Casino Hotels Section */
.casino-hotels {
  padding: 100px 0;
  background: linear-gradient(135deg, #7b7491 0%, #9575b5 100%);
  color: white;
}

.casino-hotels h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 3px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hotels-grid {
  display: grid;
  gap: 50px;
}

.hotel-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 50px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hotel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1089c2, #00bcd4, #ffd700);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hotel-card:hover::before {
  opacity: 1;
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.hotel-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.hotel-card:hover img {
  transform: scale(1.02);
}

.hotel-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hotel-content h3 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #1089c2;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.hotel-content > p {
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.7;
  opacity: 0.95;
  color: #ffffff;
}

.hotel-details {
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
}

.hotel-details p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  color: #ffffff;
}

.hotel-details p:last-child {
  margin-bottom: 0;
}

.hotel-details strong {
  color: #ffd700;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.vip-note {
  font-style: italic;
  margin-bottom: 30px;
  color: #00bcd4;
  font-weight: 600;
  font-size: 16px;
  padding: 15px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.price-tag {
  /* position: absolute; */
  bottom: 50px;
  right: 50px;
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #2c1810;
  padding: 18px 28px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 1px;
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.price-tag:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 45px rgba(255, 215, 0, 0.6);
}

/* Premium Amenities Section */
.premium-amenities {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.premium-amenities h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 30px;
  color: #2c1810;
  font-weight: 700;
  letter-spacing: 3px;
}

.premium-amenities .section-subtitle {
  color: #555;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.amenity-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.amenity-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.amenity-card h3 {
  padding: 25px 25px 15px;
  font-size: 20px;
  color: #2c1810;
  font-weight: 700;
  line-height: 1.3;
}

.amenity-card p {
  padding: 0 25px 25px;
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: linear-gradient(135deg, #7b7491 0%, #9575b5 100%);
  color: white;
}

.gallery h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 3px;
}

.gallery .section-subtitle {
  opacity: 0.9;
}

.gallery-grid {
  display: grid;
  gap: 50px;
}

.gallery-item {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: center;
}

.gallery-item:nth-child(even) {
  grid-template-columns: 1fr 400px;
}

.gallery-item:nth-child(even) .gallery-content {
  order: -1;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1089c2;
  font-weight: 700;
}

.gallery-content p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 40px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #1089c2;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00bcd4;
}

.footer-text p {
  margin-bottom: 5px;
  opacity: 0.7;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .featured-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hotel-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 35px;
  }

  .hotel-card img {
    height: 280px;
  }

  .price-tag {
    position: static;
    margin-top: 25px;
    display: inline-block;
    width: fit-content;
    align-self: flex-start;
  }

  .gallery-item,
  .gallery-item:nth-child(even) {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gallery-item:nth-child(even) .gallery-content {
    order: 0;
  }
}

@media (max-width: 768px) {
  .nav {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav.mobile-nav-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    background: rgba(16, 137, 194, 0.05);
    border: 1px solid rgba(16, 137, 194, 0.1);
    transition: all 0.3s ease;
  }

  .nav a:hover {
    background: rgba(16, 137, 194, 0.1);
    color: #1089c2;
    transform: translateY(-2px);
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    background: rgba(16, 137, 194, 0.1);
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 200px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .hotel-card {
    padding: 30px;
    gap: 25px;
  }

  .hotel-details {
    padding: 20px;
  }

  .price-tag {
    position: static;
    margin-top: 20px;
    display: inline-block;
    padding: 15px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .amenity-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
  }

  .amenity-card p {
    padding: 0 20px 20px;
    font-size: 13px;
  }
}
