:root { 
  --bg: #5C613D; 
  --fg: #ffffff; 
  --muted: #cccccc; 
  --acc: #BBC383; 
  --card: #1a1a1a; 
  --gap: 24px;
  --gold: #E5B25D;
  --dark-gold: #B8941F;
  --nav-bg: #000000;
}

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

html, body { 
  background: var(--bg); 
  color: var(--fg); 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--nav-bg);
  z-index: 1000;
  padding: 20px 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-center {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
}

.brand {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.brand:hover {
  color: var(--dark-gold);
  transform: scale(1.05);
}

.brand-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--gold);
}

.book-btn {
  background: var(--gold);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
}

/* Main Content */
main {
  margin-top: 100px;
  min-height: calc(100vh - 100px);
}

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

.hero-slides {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  animation: kenBurns 20s ease-in-out infinite;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.7);
  z-index: 1;
}

.hero-bg-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  border: none;
  z-index: 1;
}

@keyframes kenBurns {
  0%, 100% { transform: scale(1) translateX(0) translateY(0); }
  25% { transform: scale(1.05) translateX(-2%) translateY(-1%); }
  50% { transform: scale(1.1) translateX(2%) translateY(1%); }
  75% { transform: scale(1.05) translateX(-1%) translateY(2%); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  color: var(--fg);
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-text p {
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  animation: fadeInUp 1s ease-out 0.7s both;
}

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

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-btn-primary {
  background: var(--gold);
  color: var(--nav-bg);
  padding: 18px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(229, 178, 93, 0.3);
  cursor: pointer;
}

.hero-btn-primary:hover {
  background: var(--dark-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(229, 178, 93, 0.4);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 18px 35px;
  border: 2px solid var(--gold);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.hero-btn-secondary:hover {
  background: var(--gold);
  color: var(--nav-bg);
  transform: translateY(-3px);
}

/* Hero Navigation */
.hero-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
}

.hero-nav {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--fg);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: var(--gold);
  transform: scale(1.1);
}

.hero-nav.prev {
  left: 40px;
}

.hero-nav.next {
  right: 40px;
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 15px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

/* About Section */
.about-section {
  padding: 100px 40px;
  background: rgba(255,255,255,0.05);
  margin: 60px 0;
}

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

.about-title {
  font-size: 3rem;
  color: var(--fg);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

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

.about-text h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--fg);
  margin-bottom: 20px;
}

.about-text .additional-info {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

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

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(45deg, #23232a 25%, #2a2a32 25%, #2a2a32 50%, #23232a 50%, #23232a 75%, #2a2a32 75%);
  background-size: 20px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 48px;
}

/* Image placeholder styles */
.image-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #23232a 25%, #2a2a32 25%, #2a2a32 50%, #23232a 50%, #23232a 75%, #2a2a32 75%);
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.image-placeholder.show {
  display: flex;
}

/* Packages Section */
.packages-section {
  padding: 100px 40px;
  background: rgba(255,255,255,0.02);
  margin: 60px 0;
}

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

.packages-title {
  font-size: 3rem;
  color: var(--fg);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.package-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  height: 350px;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.package-image-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.package-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.package-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 30px 25px 25px;
  color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.package-title {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}

.package-price {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.package-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.package-link {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.package-link:hover {
  background: #d4af37;
  transform: translateY(-2px);
}

/* Package Modal */
.package-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.package-modal-content {
  position: relative;
  background: var(--card);
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.package-modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--fg);
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.package-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

.package-modal-header {
  padding: 40px 40px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-modal-header h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 700;
}

.modal-package-price {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

.package-modal-body {
  padding: 30px 40px;
}

.package-modal-section {
  margin-bottom: 30px;
}

.package-modal-section h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 15px;
  font-weight: 600;
}

.package-modal-section p {
  color: var(--fg);
  line-height: 1.6;
  font-size: 1.1rem;
}

.package-modal-section ul {
  list-style: none;
  padding: 0;
}

.package-modal-section li {
  color: var(--fg);
  padding: 8px 0;
  padding-right: 20px;
  position: relative;
}

.package-modal-section li:before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--accent);
  font-weight: bold;
}

.package-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.package-menu-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.package-menu-item:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Dish image styles removed - images no longer displayed for menu items */

.dish-content {
  padding: 20px;
}

.dish-content h4 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.dish-description {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.dish-category {
  color: var(--gold);
  font-size: 0.85rem;
  margin: 0 0 8px 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dish-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 8px;
}

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

.package-modal-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 15px 40px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-modal-cta:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
}

/* Mobile Modal */
@media (max-width: 768px) {
  .package-modal-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .package-modal-header {
    padding: 30px 20px 15px;
  }
  
  .package-modal-header h2 {
    font-size: 2rem;
  }
  
  .package-modal-body {
    padding: 20px;
  }
  
  .package-modal-footer {
    padding: 15px 20px 30px;
  }
  
  .package-menu-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .package-modal-close {
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
  }
  
  .dish-image-container {
    height: 120px;
  }
  
  .dish-content {
    padding: 15px;
  }
  
  .dish-content h4 {
    font-size: 1rem;
  }
  
  .dish-description {
    font-size: 0.9rem;
  }
}

/* Event Categories */
.event-categories {
  margin-top: 0;
  padding-top: 120px;
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Events Section */
.events-section {
  margin-top: 0;
  padding-top: 120px;
}

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

.event-title {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}

.event-date {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.event-content {
  background: var(--card);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.event-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 30px;
}

.event-section-title {
  color: var(--gold);
  margin-bottom: 20px;
}

.event-section-title.packages {
  color: var(--gold);
  margin: 30px 0 20px 0;
}

.event-links {
  list-style: none;
  padding: 0;
}

.event-link-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.event-link-item a {
  color: var(--gold);
  text-decoration: none;
}

.event-link-item a:hover {
  text-decoration: underline;
}

/* Package Detail Page */
.package-detail-price {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
}

.package-detail-image {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  margin: 20px 0;
}

.package-detail-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fg);
}

/* Hero Placeholder */
.hero-placeholder {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(45deg, #23232a 25%, #2a2a32 25%, #2a2a32 50%, #23232a 50%, #23232a 75%, #2a2a32 75%);
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 48px;
}

/* Decorative Circles */
.decorative-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}

.circle {
  position: absolute;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.3;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Social Media */
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.social-link {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Event Categories Section */
.event-categories {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.event-categories h2 {
  font-size: 3rem;
  color: var(--fg);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

.event-categories-top {
  margin-top: 0;
  padding-top: 120px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.category-card {
  background: var(--fg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--gold);
}

.category-card h3 {
  font-size: 1.5rem;
  color: var(--nav-bg);
  margin-bottom: 15px;
  font-weight: 600;
}

.category-card p {
  color: #666;
  line-height: 1.6;
}

/* Events Section */
.events-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.events-section h2 {
  font-size: 3rem;
  color: var(--fg);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.event-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.event-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-content {
  padding: 30px;
}

.event-content h3 {
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 15px;
  font-weight: 600;
}

.event-date {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.event-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.event-link:hover {
  color: var(--dark-gold);
  transform: translateX(5px);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Contact Section */
.contact {
  background: var(--bg);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.contact-item {
  color: var(--fg);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item strong {
  color: var(--accent);
  margin-left: 10px;
  min-width: 80px;
}

.contact-form-container {
  background: var(--card);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  width: 100%;
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--fg);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.submit-btn {
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-family: inherit;
}

.submit-btn:hover {
  background: #e6a700;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Form validation styles */
.contact-form input:invalid,
.contact-form select:invalid,
.contact-form textarea:invalid {
  border-color: #ef4444;
}

.contact-form input:valid,
.contact-form select:valid,
.contact-form textarea:valid {
  border-color: #10b981;
}

/* Success/Error messages */
.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive design for contact form */
@media (max-width: 768px) {
  .contact {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .contact-info h2 {
    font-size: 2rem;
  }
}

/* Footer */
footer {
  background: var(--card);
  padding: 60px 40px 40px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
  color: var(--muted);
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Header - Responsive mobile layout */
  header {
    padding: 12px 0;
  }
  
  .header-content {
    padding: 0 10px;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-left {
    flex: 0 0 auto;
    order: 1;
  }
  
  .header-center {
    flex: 1;
    justify-content: center;
    order: 2;
    min-width: 0;
  }
  
  .header-right {
    flex: 0 0 auto;
    order: 3;
  }
  
  /* Logo - Responsive sizing */
  .brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  /* Navigation - Responsive scaling */
  .nav {
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 5px;
  }
  
  .nav a {
    font-size: 0.7rem;
    padding: 4px 6px;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .nav a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Book button - Responsive sizing */
  .book-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
    border-radius: 15px;
    min-width: 60px;
    text-align: center;
  }
  
  .brand-logo {
    height: 28px;
  }
  
  /* Extra small screens - further optimization */
  @media (max-width: 480px) {
    .header-content {
      padding: 0 8px;
      gap: 6px;
    }
    
    .brand {
      font-size: 1.2rem;
    }
    
    .nav {
      gap: 2px;
      padding: 0 3px;
    }
    
    .nav a {
      font-size: 0.65rem;
      padding: 3px 5px;
    }
    
    .book-btn {
      padding: 5px 10px;
      font-size: 0.65rem;
      min-width: 50px;
    }
    
    .brand-logo {
      height: 24px;
    }
    
    /* Packages - Single column on very small screens */
    .packages-grid {
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 0 10px;
    }
    
    .package-card {
      height: 160px;
      padding: 10px 8px;
    }
  }
  
  /* Hero Carousel */
  .hero-carousel {
    min-height: 70vh;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-btn-primary, .hero-btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .hero-navigation {
    display: none; /* Hide on mobile for cleaner look */
  }
  
  .hero-dots {
    bottom: 20px;
  }
  
  .hero-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
  
  /* Event Categories */
  .event-categories {
    padding: 60px 20px;
    overflow: hidden;
  }
  
  .event-categories h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .categories-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    padding: 0 5px;
  }
  
  .category-card {
    padding: 12px 8px;
    flex: 0 0 auto;
    width: calc(25vw - 10px);
    min-width: 100px;
    max-width: 140px;
    scroll-snap-align: start;
  }
  
  .category-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .category-card p {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  
  /* About Section */
  .about-section {
    padding: 60px 20px;
  }
  
  .about-container {
    max-width: 100%;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .about-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .about-image {
    order: -1; /* Show image first on mobile */
  }
  
  .about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  
  /* Packages Section */
  .packages-section {
    padding: 40px 20px;
  }
  
  .packages-container {
    overflow: hidden;
  }
  
  .packages-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 5px;
  }
  
  .package-card {
    padding: 12px 8px;
    height: 180px;
    width: 100%;
    min-width: 0;
  }
  
  .package-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .package-price {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .package-description {
    font-size: 0.8rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  
  .package-link {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  /* Contact Section */
  .contact {
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-content {
    gap: 40px;
    padding: 0 20px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .contact-details {
    gap: 12px;
  }
  
  .contact-item {
    font-size: 0.95rem;
  }
  
  .contact-form-container {
    padding: 25px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
  }
  
  /* Footer */
  footer {
    padding: 40px 20px;
  }
  
  footer p {
    font-size: 0.9rem;
  }
  
  /* Container adjustments */
  .container {
    padding: 0 20px;
  }
  
  /* General text adjustments */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
  
  /* Button adjustments */
  .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 20px;
  }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
  .header-content {
    padding: 0 10px;
    gap: 8px;
  }
  
  /* Logo - Even bigger on very small screens */
  .brand {
    font-size: 1.6rem;
  }
  
  .nav {
    gap: 6px;
  }
  
  .nav a {
    font-size: 0.75rem;
    padding: 4px 6px;
  }
  
  /* Order Now button - Even smaller on very small screens */
  .btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-height: 26px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .hero-btn-primary, .hero-btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .event-categories h2,
  .about-title,
  .packages-title,
  .contact-info h2 {
    font-size: 1.8rem;
  }
  
  .category-card,
  .package-card {
    padding: 20px 15px;
  }
  
  .contact-form-container {
    padding: 20px 15px;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  /* Better touch targets */
  .hero-dot,
  .hero-nav,
  .nav a,
  .btn,
  .submit-btn,
  .package-link {
    min-height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Better text selection */
  .hero-text h1,
  .hero-text p {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Better form interaction */
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    transform: scale(1.02);
    transition: transform 0.2s ease;
  }
  
  /* Improved button hover states for touch */
  .hero-btn-primary:active,
  .hero-btn-secondary:active,
  .submit-btn:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  /* Better spacing for RTL text */
  .hero-text,
  .about-text,
  .contact-info {
    text-align: center;
  }
  
  /* Mobile hero image fixes */
  .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    /* Don't override height for hero images - keep object-fit: cover */
  }
  
  /* Other images can use height: auto */
  .about-image img,
  .package-image {
    max-width: 100%;
    height: auto;
  }
  
  /* Better carousel on mobile */
  .hero-carousel {
    touch-action: manipulation; /* Allow scrolling but prevent zoom */
    overflow: visible;
    min-height: 50vh;
    position: relative;
    /* Ensure proper mobile viewport handling */
    height: auto;
    max-height: 50vh;
  }
  
  .hero-slides {
    touch-action: manipulation; /* Allow horizontal swiping but prevent zoom */
    height: 50vh;
    position: relative;
    /* Prevent overflow issues */
    overflow: hidden;
  }
  
  /* Ensure hero slide content is properly positioned */
  .hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Fix scrolling interference */
  .hero-background {
    touch-action: none; /* Prevent touch events on background */
  }
  
  .hero-content {
    touch-action: manipulation; /* Allow touch on content */
    position: relative;
    z-index: 10;
  }
  
  /* Ensure page can scroll on mobile */
  body {
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth; /* Smooth scrolling on iOS */
  }
  
  html {
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
  }
}

/* Image Placeholder */
.card img:not([src]), .card img[src=""] { 
  background: linear-gradient(45deg, #23232a 25%, #2a2a32 25%, #2a2a32 50%, #23232a 50%, #23232a 75%, #2a2a32 75%); 
  background-size: 20px 20px; 
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
  display: none;
}

/* Setup instructions styles */
.setup-title {
  color: #d4af37;
  margin-bottom: 15px;
}

.setup-description {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.setup-steps {
  margin: 10px 0;
  padding-right: 20px;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: var(--card);
}

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

.gallery-title {
  font-size: 3rem;
  color: var(--fg);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-image-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 25px 25px;
  color: white;
}

.gallery-item-title {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-item-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


/* Mobile Gallery */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
  
  .gallery-container {
    padding: 0 20px;
  }
  
  .gallery-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    max-height: 600px;
    overflow: hidden;
  }
  
  .gallery-image-container {
    height: 200px;
  }
  
  .gallery-content {
    padding: 20px 15px 15px;
  }
  
  .gallery-item-title {
    font-size: 1rem;
  }
  
  .gallery-item-description {
    font-size: 0.8rem;
  }
}

/* Gallery Actions */
.gallery-actions {
  text-align: center;
  margin-top: 50px;
}

.gallery-view-more-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 25px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.gallery-view-more-btn:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.gallery-view-more-btn:active {
  transform: translateY(0);
}

.btn-text {
  font-weight: 600;
}

.btn-count {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

/* Mobile Gallery Actions */
@media (max-width: 768px) {
  .gallery-actions {
    margin-top: 30px;
  }
  
  .gallery-view-more-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .btn-count {
    font-size: 0.85rem;
  }
}

/* Hidden utility class */
.hidden {
  display: none !important;
}

/* Gallery Image Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.gallery-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.gallery-modal-image-container {
  position: relative;
  max-width: 100%;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.gallery-image-counter {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Gallery Navigation Buttons */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.gallery-nav:hover {
  background: rgba(212, 175, 55, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-prev {
  left: 20px;
}

.gallery-nav-next {
  right: 20px;
}

/* Gallery Thumbnails */
.gallery-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  max-width: 100%;
  overflow-x: auto;
  padding: 10px 0;
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.gallery-thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.gallery-thumbnail:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.gallery-thumbnail.active {
  opacity: 1;
  border-color: var(--accent);
  transform: scale(1.1);
}

.gallery-modal-info {
  margin-top: 20px;
  text-align: center;
  color: white;
  max-width: 600px;
}

.gallery-modal-title {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.gallery-modal-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.gallery-modal-close:hover {
  background: rgba(212, 175, 55, 0.8);
  transform: scale(1.1);
}

/* Mobile Gallery Modal */
@media (max-width: 768px) {
  .gallery-modal-content {
    max-width: 98vw;
    max-height: 98vh;
  }
  
  .gallery-modal-image-container {
    max-height: 60vh;
  }
  
  .gallery-modal-image {
    max-height: 60vh;
  }
  
  .gallery-nav {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .gallery-nav-prev {
    left: 10px;
  }
  
  .gallery-nav-next {
    right: 10px;
  }
  
  .gallery-image-counter {
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  
  .gallery-thumbnails {
    margin-top: 15px;
    gap: 8px;
  }
  
  .gallery-thumbnail {
    width: 60px;
    height: 45px;
  }
  
  .gallery-modal-info {
    margin-top: 15px;
    padding: 0 20px;
  }
  
  .gallery-modal-title {
    font-size: 1.3rem;
  }
  
  .gallery-modal-description {
    font-size: 0.9rem;
  }
  
  .gallery-modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
.mt-4 { margin-top: 2rem; }

/* Complete Gallery Modal Styles */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.gallery-modal.hidden,
.gallery-modal {
  display: none;
}

.gallery-modal.show {
  display: flex;
}

.package-modal.hidden,
.package-modal {
  display: none;
}

.package-modal.show {
  display: block;
}

.gallery-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-prev {
  left: 20px;
}

.gallery-nav-next {
  right: 20px;
}

.gallery-nav.hidden {
  display: none;
}

.gallery-modal-image-container {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.gallery-modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  cursor: grab;
}

.gallery-modal-image:active {
  cursor: grabbing;
}

.gallery-image-counter {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.gallery-modal-info {
  padding: 30px;
  text-align: center;
  width: 100%;
  background: var(--card);
}

.gallery-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.gallery-modal-description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  padding: 20px;
  overflow-x: auto;
  background: var(--card);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  scroll-behavior: smooth;
}

.gallery-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.gallery-thumbnail:hover {
  transform: scale(1.05);
  border-color: var(--gold);
}

.gallery-thumbnail.active {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(229, 178, 93, 0.5);
}

/* Mobile Gallery Modal */
@media (max-width: 768px) {
  .gallery-modal-content {
    width: 95%;
    max-height: 95vh;
    border-radius: 15px;
  }
  
  .gallery-modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .gallery-nav-prev {
    left: 15px;
  }
  
  .gallery-nav-next {
    right: 15px;
  }
  
  .gallery-modal-image-container {
    height: 50vh;
  }
  
  .gallery-image-counter {
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .gallery-modal-info {
    padding: 20px;
  }
  
  .gallery-modal-title {
    font-size: 1.3rem;
  }
  
  .gallery-modal-description {
    font-size: 0.9rem;
  }
  
  .gallery-thumbnails {
    padding: 15px;
    gap: 8px;
  }
  
  .gallery-thumbnail {
    width: 60px;
    height: 60px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .gallery-modal-content {
    width: 98%;
    max-height: 98vh;
    border-radius: 10px;
  }
  
  .gallery-modal-image-container {
    height: 45vh;
  }
  
  .gallery-modal-info {
    padding: 15px;
  }
  
  .gallery-modal-title {
    font-size: 1.2rem;
  }
  
  .gallery-thumbnails {
    padding: 10px;
    gap: 6px;
  }
  
  .gallery-thumbnail {
    width: 50px;
    height: 50px;
  }
}
