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

:root {
  --primary-color: #e67e22;
  --secondary-color: #6c757d;
  --accent-color: #f39c12;
  --success-color: #28a745;
  --warning-color: #e67e22;
  --danger-color: #dc3545;
  --dark-color: #2c3e50;
  --light-color: #fdf6e3;
  --white: #ffffff;
  --black: #000000;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  --border-radius: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 1rem;
  
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #6c757d;
  background-color: #fff;
  overflow-x: hidden;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

#loading-screen p {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(253, 246, 227, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
  color: var(--dark-color) !important;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
  transition: var(--transition);
}

.navbar-brand:hover {
  color: #e67e22 !important;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #e67e22;
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.nav-link:hover {
  color: #e67e22 !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
      url('https://images.pexels.com/photos/1134166/pexels-photo-1134166.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=1')),
      var(--primary-color);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroParallax 20s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
      rgba(125, 63, 9, 0.8) 0%, 
      rgba(0, 0, 0, 0.6) 100%);
  opacity: 80%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-subtitle {
      font-size: 1.1rem;
  }
  
  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .hero-buttons .btn {
      min-width: 200px;
  }
}

@keyframes heroParallax {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 15px;
  position: relative;
  animation: mouseFloat 2s ease-in-out infinite;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 2s ease-in-out infinite;
}

@keyframes mouseFloat {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes wheelMove {
  0% { top: 8px; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* About Section */
.about-images {
  position: relative;
}

.main-image {
  width: 100%;
  border-radius: var(--border-radius-xl);
}

.floating-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 5px solid var(--white);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.feature-item i {
  font-size: 1.25rem;
  width: 20px;
}

@media (max-width: 991px) {
  .floating-image {
      position: static;
      width: 100%;
      height: auto;
      margin-top: 2rem;
  }
}

/* Features Section */
.feature-item-large {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
  transition: var(--transition);
}

.feature-item-large:last-child {
  border-bottom: none;
}

.feature-item-large:hover {
  transform: translateX(10px);
}

.feature-item-large i {
  font-size: 2rem;
  color: #e67e22;
  min-width: 50px;
  margin-top: 0.5rem;
}

.feature-item-large h5 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.feature-item-large p {
  margin-bottom: 0;
  color: var(--secondary-color);
}

.features-carousel .swiper {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.features-carousel .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Membership Section */
.membership-content {
  padding: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-item i {
  font-size: 1.25rem;
  min-width: 20px;
}

.membership-card .card {
  border-radius: var(--border-radius-xl);
  transition: var(--transition);
}

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

.membership-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.membership-badge i {
  font-size: 2rem;
  color: var(--white);
}

.price-display {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e67e22;
}

/* Why Choose Section */
.why-choose-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid #e9ecef;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: #e67e22;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e67e22, #d35400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.card-icon i {
  font-size: 2rem;
  color: var(--white);
}

.why-choose-card:hover .card-icon {
  transform: scale(1.1);
}

.why-choose-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.why-choose-card p {
  color: var(--secondary-color);
  margin-bottom: 0;
}

/* Attractions Section */
.attractions-carousel .swiper {
  padding: 2rem 0;
}

.attraction-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.attraction-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.attraction-content {
  padding: 1.5rem;
}

.attraction-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.attraction-content p {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.distance {
  display: inline-block;
  background: #e67e22;
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.distance i {
  margin-right: 0.25rem;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: var(--transition);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(230, 126, 34, 0.8);
  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: var(--white);
}

/* Gallery Modal */
.modal-content {
  background: transparent;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 20px;
}

/* Footer */
footer {
  position: relative;
}

footer h5, footer h6 {
  color: var(--white);
  margin-bottom: 1rem;
}

footer p, footer li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

footer a:hover {
  color: var(--white);
}

.social-links 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: 0.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: #e67e22;
  width: 20px;
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #e67e22, #d35400);
  border-color: #e67e22;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d35400, #e67e22);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: #e67e22;
  transform: translateY(-2px);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Back to Top Button */
.btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #e67e22;
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.btn-back-to-top:hover {
  background: #d35400;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: #e67e22;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #e67e22;
}

.swiper-button-next,
.swiper-button-prev {
  color: #e67e22;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 991px) {
  .floating-image {
      position: static;
      width: 100%;
      height: auto;
      margin-top: 1rem;
  }
  
  .hero-bg {
      background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .section {
      padding: 3rem 0;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 0.75rem;
  }
  
  .why-choose-card,
  .attraction-card {
      margin-bottom: 1rem;
  }
  
  .btn-back-to-top {
      bottom: 20px;
      right: 20px;
      width: 45px;
      height: 45px;
  }
}

@media (max-width: 576px) {
  .container {
      padding-left: 1rem;
      padding-right: 1rem;
  }
  
  .hero-buttons {
      flex-direction: column;
      gap: 0.75rem;
  }
  
  .hero-buttons .btn {
      width: 100%;
      max-width: 300px;
  }
  
  .gallery-grid {
      grid-template-columns: 1fr;
  }
}

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

@keyframes fadeInLeft {
  from {
      opacity: 0;
      transform: translateX(-30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
  
  .hero-bg {
      animation: none;
  }
  
  .floating-image {
      animation: none;
  }
}

/* Focus States */
.btn:focus,
.nav-link:focus,
a:focus {
  outline: 2px solid #e67e22;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .btn-back-to-top,
  #loading-screen,
  .scroll-indicator {
      display: none !important;
  }
  
  body {
      background: white !important;
      color: black !important;
  }
  
  .hero-section {
      min-height: auto;
      padding: 2rem 0;
  }
  
  .hero-overlay {
      display: none;
  }
}

.bg-light {
background: #fdf6e3 !important; }

.btn.btn-outline-white-primary {
  border: 2px solid #fff; }
  .btn.btn-outline-white-primary:hover {
    border: 2px solid transparent;
    background: #e67e22;
    color: #fff; }

.form-control:active, .form-control:focus {
  border-color: #e67e22; }

    .site-navbar nav .menu li a:hover:before {
      width: 100%; }
  .site-navbar nav .menu li.active a {
    color: #e67e22; }
    .site-navbar nav .menu li.active a:before {
      width: 100%; }

.visit-section .visit a:hover {
  color: #e67e22; }

.visit-section .reviews-star span {
font-size: 18px;
color: #e67e22; }

.post .media-custom a:hover {
  color: #e67e22; }

.owl-carousel.home-slider .owl-dots .owl-dot.active {
  border: 2px solid white;
  background: none; }

.owl-carousel.js-carousel-2 .owl-dots .owl-dot.active > span {
  background: #e67e22; }

.custom-pagination .page-item.active .page-link {
background: #e67e22;
-webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2); }

.why-galilee-card .icon {
font-size: 2.5rem;
color: #e67e22;
margin-bottom: 15px;
display: block;
}

    .custom-pagination ul li.active span {
      background: #e67e22;
      color: #fff;
      border-radius: 50%; }