/* Base Styles */
:root {
  /* Primary Colors */
  --primary-dark: #1A365D;  /* Deep blue */
  --primary: #2A4A7F;
  --primary-light: #4A6FA5;
  
  /* Secondary Colors */
  --secondary-dark: #B38728;  /* Dark gold */
  --secondary: #D4AF37;  /* Gold */
  --secondary-light: #E5C158;
  
  /* Accent Colors */
  --accent: #8C271E;  /* Burgundy */
  
  /* Neutral Colors */
  --dark: #1E1E1E;
  --gray-dark: #333;
  --gray: #767676;
  --gray-light: #E5E5E5;
  --light: #F8F8F8;
  --white: #FFFFFF;
  
  /* Functional Colors */
  --success: #34D399;
  --warning: #FBBF24;
  --error: #EF4444;
  
  /* Spacing System (based on 8px) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  
  /* Miscellaneous */
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

.section-header .separator {
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  margin: 0 auto var(--space-sm);
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--dark);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-dark);
  font-weight: 500;
  padding: 10px 22px;
  border: 2px solid var(--primary-dark);
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-align: center;
}

.btn-secondary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.btn-text i {
  margin-left: 8px;
  transition: var(--transition);
}

.btn-text:hover {
  color: var(--primary-dark);
}

.btn-text:hover i {
  transform: translateX(4px);
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 15px 0;
  z-index: 1000;
  transition: var(--transition);
}

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

#header.transparent {
  background-color: transparent;
  box-shadow: none;
}

#header.transparent .main-nav a {
  color: var(--white);
}

.logo {
  height: 50px;
}

.logo img {
  height: 100%;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: var(--space-md);
}

.main-nav a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  transition: var(--transition);
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--white);
  overflow: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}

.mobile-menu.active {
  height: auto;
  padding: var(--space-md) 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 0 var(--space-md);
}

.mobile-menu a {
  display: block;
  padding: var(--space-xs) 0;
  font-weight: 500;
}

.mobile-cta {
  padding: var(--space-md);
  text-align: center;
  margin-top: var(--space-sm);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
}

.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;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 var(--space-md);
}

.hero-content h1 {
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-content .btn-primary {
  animation: fadeInUp 1s ease 0.6s both;
}

.slider-controls {
  position: absolute;
  bottom: var(--space-lg);
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--secondary);
  transform: scale(1.2);
}

.slider-arrows {
  margin-top: var(--space-sm);
  display: flex;
  gap: var(--space-sm);
}

.arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.arrow:hover {
  background-color: var(--secondary);
}

/* About Section */
.about-section {
  padding: var(--space-xxl) 0;
  background-color: var(--light);
}

.about-content {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: var(--space-md);
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.stats-container {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-item {
  padding: var(--space-md);
  text-align: center;
  min-width: 120px;
  border-right: 1px solid var(--gray-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.stat-text {
  font-size: 0.875rem;
  color: var(--gray);
}

/* Hotels Section */
.hotels-section {
  padding: var(--space-xxl) 0;
}

.hotel-card {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
  align-items: center;
}

.hotel-card.reverse {
  flex-direction: row-reverse;
}

.hotel-image {
  flex: 1;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.hotel-image img {
  transition: transform 0.6s ease;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

.hotel-content {
  flex: 1;
}

.hotel-location {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.hotel-content h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.hotel-content p {
  margin-bottom: var(--space-md);
  color: var(--gray-dark);
}

.hotel-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.hotel-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}

.hotel-features li i {
  color: var(--secondary);
}

.hotels-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Experiences Section */
.experiences-section {
  padding: var(--space-xxl) 0;
  background-color: var(--light);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.experience-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.experience-image {
  height: 250px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-card:hover .experience-image img {
  transform: scale(1.05);
}

.experience-content {
  padding: var(--space-md);
}

.experience-content h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

.experience-content p {
  margin-bottom: var(--space-sm);
  color: var(--gray-dark);
}

/* Gallery Section */
.gallery-section {
  padding: var(--space-xxl) 0;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-size: 0.875rem;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: var(--white);
}

.gallery-info h4 {
  margin-bottom: 5px;
}

.gallery-info p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.gallery-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Others Section */
.others-section {
  padding: var(--space-xxl) 0;
  background-color: var(--light);
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-header {
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.accordion-icon .fa-minus {
  display: none;
}

.accordion-item.active .accordion-icon .fa-plus {
  display: none;
}

.accordion-item.active .accordion-icon .fa-minus {
  display: inline-block;
}

.accordion-content {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 var(--space-md) var(--space-md);
  max-height: 500px;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-xxl) 0;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.testimonial-content {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  color: var(--gray-light);
  font-size: 2rem;
  opacity: 0.5;
}

.testimonial-content p {
  text-align: center;
  font-style: italic;
  margin: var(--space-md) 0 var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.author-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray);
  font-style: normal;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots .dot {
  background-color: var(--gray-light);
}

.testimonial-dots .dot.active {
  background-color: var(--primary);
}

/* Newsletter Section */
.newsletter-section {
  padding: var(--space-xl) 0;
  background-color: var(--primary-dark);
  color: var(--white);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  margin: var(--space-md) 0;
  gap: var(--space-xs);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-privacy {
  font-size: 0.875rem;
  opacity: 0.8;
}

.newsletter-privacy a {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding-top: var(--space-xl);
  background-color: var(--dark);
  color: var(--white);
}

.footer-content {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  flex: 1;
}

.footer-logo img {
  height: 60px;
  margin-bottom: var(--space-sm);
}

.footer-logo p {
  opacity: 0.8;
  margin-bottom: var(--space-md);
}

.social-icons {
  display: flex;
  gap: var(--space-sm);
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary);
  color: var(--dark);
}

.footer-links {
  flex: 2;
  display: flex;
  gap: var(--space-lg);
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.footer-column ul li {
  margin-bottom: var(--space-xs);
}

.footer-column ul li a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--secondary);
}

.contact-info li {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.contact-info li i {
  margin-top: 5px;
}

.footer-bottom {
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

.payment-icons {
  display: flex;
  gap: var(--space-xs);
  font-size: 1.5rem;
  opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease both;
}

.fade-in-up {
  animation: fadeInUp 1s ease both;
}

.fade-in-right {
  animation: fadeInRight 1s ease both;
}