/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #00ff99;
  --secondary-color: #ff6699;
  --dark-bg: #0a0a14;
  --text-light: #ffffff;
  --accent-color: #7b2dff;
}

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

body {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

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

/* Header Styles */
header {
  background-color: rgba(10, 10, 20, 0.9);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 255, 153, 0.3);
}

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

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

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

.cta-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.btn-outline {
  border: 1px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: var(--dark-bg);
  border: none;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 153, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 9px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 18px;
}

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

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

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

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

html[dir="rtl"] .floating-buttons {
  right: auto;
  left: 20px;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  color: var(--dark-bg);
  font-size: 24px;
}

.floating-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.floating-call {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.floating-lang {
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  font-weight: 700;
  font-size: 18px;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.language-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  padding: 5px;
  transition: color 0.3s ease;
}

.language-btn.active {
  color: var(--primary-color);
}

.language-divider {
  width: 1px;
  height: 15px;
  background-color: var(--text-light);
  margin: 0 5px;
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
  background: linear-gradient(135deg, rgba(10, 10, 20, 0.9), rgba(10, 10, 20, 0.7)), url('../images/gallery/b5bd551a-a49c-47a8-919d-2b3974075b94.JPG');
  background-size: cover;
  background-position: center;
}

.hero-content {
  width: 50%;
  z-index: 2;
}

.hero-images {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  z-index: 1;
}

html[dir="rtl"] .hero {
  text-align: right;
}

html[dir="rtl"] .hero-images {
  right: auto;
  left: 0;
  justify-content: flex-start;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: rotate(-5deg);
  transition: all 0.5s ease;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.05);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image:nth-child(1) {
  border-color: var(--secondary-color);
  width: 200px;
  height: 280px;
}

.hero-image:nth-child(2) {
  border-color: var(--primary-color);
  width: 180px;
  height: 240px;
  transform: rotate(5deg);
}

.hero-image:nth-child(3) {
  border-color: var(--accent-color);
  width: 220px;
  height: 160px;
  transform: rotate(-8deg);
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-title .city {
  color: var(--text-light);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-title .premier {
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(0, 255, 153, 0.5);
}

.hero-title .nightclub {
  color: var(--secondary-color);
  text-shadow: 0 0 20px rgba(255, 102, 153, 0.5);
}

.hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  padding: 10px 0;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  color: var(--dark-bg);
  font-weight: 700;
  margin: 0 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Events Section */
.section {
  padding: 100px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 153, 0.1), transparent 70%);
  pointer-events: none;
}

.section-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.8);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.event-card {
  background-color: rgba(20, 20, 35, 0.7);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 255, 153, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.event-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 255, 153, 0.2);
}

.event-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.event-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 10, 20, 1), transparent);
}

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

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

.event-details {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-title {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
}

.event-date {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 500;
}

.event-date i {
  margin-right: 10px;
  font-size: 16px;
}

.event-performer {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: 500;
}

.event-performer i {
  margin-right: 10px;
  color: var(--secondary-color);
  font-size: 16px;
}

.event-description {
  margin-bottom: 25px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.event-button {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(10, 10, 20, 0.9), rgba(20, 20, 40, 0.9));
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 15px;
}

.filter-button {
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-light);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.filter-button.active,
.filter-button:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: var(--dark-bg);
  border-color: transparent;
}

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

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  position: relative;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
  height: 400px;
}

.gallery-item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item:nth-child(7) {
  grid-column: span 2;
  grid-row: span 1;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 20, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--accent-color);
  transform: scale(1.03);
}

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

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

/* Atmosphere Section */
.atmosphere {
  padding: 100px 0;
  position: relative;
}

.atmosphere::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/gallery/cbec759c-bfa0-4cfd-a81d-916054083fa7.JPG') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 30px;
}

.atmosphere-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.atmosphere-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

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

.atmosphere-item:hover img {
  transform: scale(1.1);
}

.atmosphere-item:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
  border-color: var(--secondary-color);
}

.atmosphere-item:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1 / 2;
  border-color: var(--primary-color);
}

.atmosphere-item:nth-child(3) {
  grid-column: 7 / 10;
  grid-row: 2 / 3;
  border-color: var(--accent-color);
}

.atmosphere-item:nth-child(4) {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
  border-color: var(--secondary-color);
}

/* About Page Styles */
.about-hero {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 10, 20, 0.8), rgba(10, 10, 20, 0.6)), url('../images/gallery/cbec759c-bfa0-4cfd-a81d-916054083fa7.JPG');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 153, 0.2), transparent 70%);
}

.about-section {
  padding: 60px 0;
  position: relative;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), transparent);
}

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

.about-text {
  color: var(--text-light);
}

.about-text h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

html[dir="rtl"] .about-text h3::after {
  left: auto;
  right: 0;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: rotate(-2deg);
  transition: all 0.5s ease;
}

.about-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Events Page Specific Styles */
.events-hero {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 10, 20, 0.8), rgba(10, 10, 20, 0.6)), url('../images/gallery/lqT@ lshsh@ 2025-06-01 fy 3.30.10 m.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.events-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 153, 0.2), transparent 70%);
}

.events-grid-section {
  padding: 80px 0;
}

.event-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 15px;
}

.month-button {
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-light);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.month-button.active,
.month-button:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: var(--dark-bg);
  border-color: transparent;
}

/* Gallery Page Specific Styles */
.gallery-hero {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 10, 20, 0.8), rgba(10, 10, 20, 0.6)), url('../images/gallery/b5bd551a-a49c-47a8-919d-2b3974075b94.JPG');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 153, 0.2), transparent 70%);
}

.gallery-container {
  padding: 80px 0;
}

/* Contact Page Specific Styles */
.contact-hero {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 10, 20, 0.8), rgba(10, 10, 20, 0.6)), url('../images/gallery/1f3e2f9f-96be-44b1-b31b-18c84442b310.JPG');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 153, 0.2), transparent 70%);
}

.contact-section {
  padding: 80px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-box {
  background-color: rgba(15, 15, 30, 0.7);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 255, 153, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-info-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.contact-info-box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

html[dir="rtl"] .contact-info-box h3::after {
  left: auto;
  right: 0;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--dark-bg);
  font-size: 20px;
  flex-shrink: 0;
}

html[dir="rtl"] .contact-icon {
  margin-right: 0;
  margin-left: 20px;
}

.contact-text {
  flex-grow: 1;
}

.contact-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
}

.social-contact {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-contact-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-contact-link:hover {
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 10px 20px rgba(0, 255, 153, 0.3);
}

.contact-form-box {
  background-color: rgba(15, 15, 30, 0.7);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 255, 153, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.contact-form-box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

html[dir="rtl"] .contact-form-box h3::after {
  left: auto;
  right: 0;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 153, 0.2);
  background-color: rgba(10, 10, 20, 0.5);
  color: var(--text-light);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 255, 153, 0.3);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: var(--dark-bg);
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 153, 0.3);
}

.map-section {
  padding: 0 0 80px;
}

.map-container {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--primary-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Reservation Page Specific Styles */
.reservation-hero {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 10, 20, 0.8), rgba(10, 10, 20, 0.6)), url('../images/gallery/b5bd551a-a49c-47a8-919d-2b3974075b94.JPG');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.reservation-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 153, 0.2), transparent 70%);
}

.reservation-section {
  padding: 80px 0;
}

.reservation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.reservation-info-box {
  background-color: rgba(15, 15, 30, 0.7);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 255, 153, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.reservation-info-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.reservation-info-box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

html[dir="rtl"] .reservation-info-box h3::after {
  left: auto;
  right: 0;
}

.reservation-info-box p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.package-card {
  background-color: rgba(20, 20, 40, 0.7);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 255, 153, 0.2);
  transition: all 0.3s ease;
}

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

.package-name {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.package-price {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 600;
}

.package-details {
  margin-bottom: 15px;
}

.package-details li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 25px;
}

html[dir="rtl"] .package-details li {
  padding-left: 0;
  padding-right: 25px;
}

.package-details li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

html[dir="rtl"] .package-details li::before {
  left: auto;
  right: 0;
}

.reservation-form-box {
  background-color: rgba(15, 15, 30, 0.7);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 255, 153, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.reservation-form-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.reservation-form-box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

html[dir="rtl"] .reservation-form-box h3::after {
  left: auto;
  right: 0;
}

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

.reservation-note {
  margin-top: 30px;
  padding: 20px;
  border-radius: 15px;
  background-color: rgba(0, 255, 153, 0.1);
  border: 1px solid rgba(0, 255, 153, 0.3);
}

.reservation-note h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 18px;
}

.reservation-note p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
footer {
  background: linear-gradient(to bottom, var(--dark-bg), #050510);
  padding: 80px 0 20px;
  border-top: 1px solid rgba(0, 255, 153, 0.2);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: block;
  letter-spacing: 2px;
  text-decoration: none;
}

.footer-description {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--dark-bg);
  font-size: 18px;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 10px 20px rgba(0, 255, 153, 0.3);
}

.footer-title {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

html[dir="rtl"] .footer-title::after {
  left: auto;
  right: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 15px;
}

html[dir="rtl"] .footer-links a {
  padding-left: 0;
  padding-right: 15px;
}

.footer-links a::before {
  content: '\203A';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 18px;
  transition: transform 0.3s ease;
}

html[dir="rtl"] .footer-links a::before {
  content: '\2039';
  left: auto;
  right: 0;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-links a:hover::before {
  transform: translateX(5px);
}

html[dir="rtl"] .footer-links a:hover::before {
  transform: translateX(-5px);
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-info i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 18px;
  width: 20px;
  text-align: center;
}

html[dir="rtl"] .contact-info i {
  margin-right: 0;
  margin-left: 15px;
}

.footer-newsletter {
  margin-top: 20px;
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px 15px;
  border-radius: 30px 0 0 30px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 14px;
}

html[dir="rtl"] .newsletter-form input {
  border-radius: 0 30px 30px 0;
}

.newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 12px 20px;
  border: none;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: var(--dark-bg);
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

html[dir="rtl"] .newsletter-form button {
  border-radius: 30px 0 0 30px;
}

.newsletter-form button:hover {
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 56px;
  }
  
  .hero-content {
    width: 60%;
  }
  
  .hero-images {
    width: 40%;
  }
  
  .section-title {
    font-size: 42px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .reservation-container {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 80px 0;
  }
  
  .hero-content {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .hero-description {
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-images {
    position: relative;
    width: 100%;
    transform: none;
    justify-content: center;
    top: 0;
  }
  
  .atmosphere-grid {
    grid-template-rows: repeat(4, 200px);
  }
  
  .atmosphere-item:nth-child(1) {
    grid-column: 1 / 13;
    grid-row: 1 / 2;
  }
  
  .atmosphere-item:nth-child(2) {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
  }
  
  .atmosphere-item:nth-child(3) {
    grid-column: 1 / 7;
    grid-row: 3 / 4;
  }
  
  .atmosphere-item:nth-child(4) {
    grid-column: 7 / 13;
    grid-row: 3 / 4;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 42px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 20, 0.95);
    padding: 20px;
    border-bottom: 1px solid rgba(0, 255, 153, 0.3);
  }
  
  .nav-menu.active li {
    margin: 10px 0;
    text-align: center;
  }
  
  /* Keep language switcher visible in mobile menu */
  .nav-menu li:has(.language-switcher) {
    display: none;
  }
  
  .cta-buttons {
    display: none;
  }
  
  .cta-buttons.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding: 0 20px 20px;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background-color: rgba(10, 10, 20, 0.95);
    z-index: 99;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .atmosphere-item:nth-child(3),
  .atmosphere-item:nth-child(4) {
    grid-column: 1 / 13;
  }
  
  .atmosphere-item:nth-child(3) {
    grid-row: 3 / 4;
  }
  
  .atmosphere-item:nth-child(4) {
    grid-row: 4 / 5;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info-box,
  .contact-form-box,
  .reservation-info-box,
  .reservation-form-box {
    padding: 30px 20px;
  }
  
  .map-container {
    height: 300px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* Animation Effects */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* RTL Support */
html[dir="rtl"] .nav-menu li {
  margin-left: 0;
  margin-right: 30px;
}

html[dir="rtl"] .event-date i,
html[dir="rtl"] .event-performer i {
  margin-right: 0;
  margin-left: 10px;
}

html[dir="rtl"] .event-details {
  text-align: right;
}

html[dir="rtl"] .event-title {
  text-align: right;
}

html[dir="rtl"] .event-description {
  text-align: right;
}

html[dir="rtl"] .event-button {
  text-align: center;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-color), var(--accent-color));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--accent-color), var(--primary-color));
}

/* Inline Style Replacements */
.center-button-container {
  text-align: center;
  margin-top: 60px;
}

.vip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vip-text {
  margin-bottom: 20px;
  line-height: 1.8;
}

.vip-text-large {
  margin-bottom: 30px;
  line-height: 1.8;
}

.vip-buttons {
  display: flex;
  gap: 20px;
}

.vip-image-container {
  position: relative;
}

.vip-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--accent-color);
}

/* Additional inline style replacements */
.private-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.private-events-text {
  margin-bottom: 20px;
  line-height: 1.8;
}

.private-events-text-large {
  margin-bottom: 30px;
  line-height: 1.8;
}

.private-events-buttons {
  display: flex;
  gap: 20px;
}

.private-events-image-container {
  position: relative;
}

.private-events-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--accent-color);
}
