@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham Fonts Family/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham Fonts Family/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham Fonts Family/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham Fonts Family/GOTHAM-BOLD.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham Fonts Family/GOTHAM-BLACK.TTF") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham Fonts Family/GOTHAM-BLACK.TTF") format("truetype");
  font-weight: 900;
  font-style: normal;
}

:root {
  --primary-color: #ffffff;
  --secondary-color: #f4f4f4;
  --accent-color: #f37021; /* Orange accent */
  --text-color: #333333;
  --bg-dark: #1a1a1a;
  --bg-darker: #111111;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
  --card-shadow: none;
  --transition-speed: 0.3s;
  --font-main: "Gotham", "Montserrat", sans-serif;
}

body.light-mode {
  --primary-color: #333333;
  --secondary-color: #e0e0e0;
  --text-color: #1a1a1a;
  --bg-dark: #ffffff;
  --bg-darker: #f9f9f9;
  --card-bg: #ffffff;
  --card-border: rgba(0, 0, 0, 0.1);
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--primary-color);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--accent-color);
}

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

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Section with Slider */
.hero {
  height: 85vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Slider Container */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  max-width: 450px;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
  font-weight: 900;
  letter-spacing: 1px;
  position: relative;
  z-index: 10;
}

/* Hero Contact Info */
.hero-contact {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  animation: fadeInUp 1s ease-out 0.8s forwards;
  opacity: 0;
  position: relative;
  z-index: 10;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.hero-contact-item:hover {
  background: rgba(243, 112, 33, 0.9);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 112, 33, 0.4);
  color: #ffffff;
}

.hero-contact-item i {
  font-size: 1rem;
}

.hero-contact-item span {
  font-weight: 500;
}

/* Slider Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}

.slider-nav:hover {
  opacity: 1;
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 30px;
}

.slider-nav.next {
  right: 30px;
}

.slider-nav i {
  color: #ffffff;
  font-size: 20px;
}

/* Pagination Dots */
.slider-pagination {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 12px;
}

.slider-pagination .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-pagination .dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.slider-pagination .dot.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.3);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 20;
  color: white;
}

.scroll-down i {
  font-size: 2rem;
  color: #ffffff !important;
}

/* Hotels Section */
.hotels-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
  font-weight: 900;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 20px auto 0;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 20px;
}

.hotel-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  box-shadow: var(--card-shadow);
  border-radius: 8px;
  padding: 30px 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease-in-out,
    border-width 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 300px;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.hotel-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(243, 112, 33, 0.3);
  border-color: var(--accent-color);
  border-width: 2px;
}

.hotel-logo {
  width: 100%;
  height: 120px; /* Fixed height for alignment */
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-card h3 {
  height: 3.6rem; /* Fixed height for 2 lines of text */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.hotel-card:hover .hotel-logo {
  transform: scale(1.05);
}

.btn-visit {
  padding: 12px 30px;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  background: transparent;
  color: var(--primary-color);
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  cursor: pointer;
}

.btn-visit:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 112, 33, 0.4);
}

/* Hotel Details */
.hotel-details {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #ddd;
  width: 100%;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-item i {
  color: #d4af37; /* Gold color for icons */
  font-size: 1.2rem;
  margin-bottom: 2px;
}

/* About Us Section */
.about-section {
  padding: 80px 0;
  background-color: var(--bg-darker);
  position: relative;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background-color: var(--bg-darker);
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}

.contact-item i {
  color: var(--accent-color);
}

/* Footer */
footer {
  padding: 40px 0;
  background-color: #000;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

/* 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);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 200px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 30px;
  }

  .hero-title {
    font-size: 1.2rem;
    padding: 0 20px;
  }

  /* Hero contact for mobile */
  .hero-contact {
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
  }

  .hero-contact-item {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  /* Slider navigation for mobile - hide completely */
  .slider-nav {
    display: none;
  }

  .slider-pagination {
    bottom: 60px;
  }

  .slider-pagination .dot {
    width: 10px;
    height: 10px;
  }
}

/* Theme Toggle Button */
.theme-toggle {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
}

.theme-toggle:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.theme-toggle:active {
  transform: scale(0.98);
}

.theme-toggle i {
  font-size: 18px;
  color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle:hover i {
  transform: rotate(20deg);
}

/* Light mode specific adjustments for theme toggle */
body.light-mode .theme-toggle {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

body.light-mode .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
}

body.light-mode .theme-toggle i {
  color: #333333;
}

/* Card Actions */
.card-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-details {
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: transparent;
  color: #ddd;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-main);
}

.btn-details:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #1a1a1a;
  margin: auto;
  padding: 40px;
  border: 1px solid #333;
  width: 90%;
  max-width: 800px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close-modal {
  color: #aaa;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--accent-color);
  text-decoration: none;
}

.modal-body h2 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.4rem;
  padding-right: 30px;
}

.modal-body h3 {
  color: #fff;
  margin: 25px 0 15px;
  font-size: 1.2rem;
}

#modal-description {
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 20px;
  white-space: pre-line; /* Preserves line breaks */
}

#modal-services {
  list-style-type: none;
  padding: 0;
  column-count: 2;
  column-gap: 40px;
}

#modal-services li {
  color: #ccc;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  margin-bottom: 15px;
  break-inside: avoid; /* Prevent items from splitting across columns */
  page-break-inside: avoid;
}

@media (max-width: 768px) {
  #modal-services {
    column-count: 1;
  }
}

#modal-services li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.modal-footer {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Light mode modal adjustments */
body.light-mode .modal-content {
  background-color: #fff;
  border-color: #e0e0e0;
}

body.light-mode #modal-description,
body.light-mode #modal-services li {
  color: #555;
}

body.light-mode .btn-details {
  border-color: rgba(0, 0, 0, 0.2);
  color: #555;
}

body.light-mode .btn-details:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(0, 0, 0, 0.05);
}
