/* 
** Luxe Royale Casino & Hotel - Main Stylesheet
** Author: Bolt
** Version: 1.0
*/

/* === Base Styles === */
:root {
  /* Color variables */
  --primary: #f4c542; /* Gold */
  --background-dark: #121212; /* Charcoal/Jet Black */
  --overlay-dark: rgba(0, 0, 0, 0.6); /* Semi-transparent Black */
  --text-light: #f5f5f5; /* Soft White */
  --neon-blue: #00ffff; /* Neon Blue */
  --neon-pink: #ff00cc; /* Neon Pink */
  --metallic: #c0c0c0; /* Metallic Silver */
  --footer-bg: #1a1a1a; /* Deep Grey */
  
  /* Spacing variables (8px spacing system) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;

  /* Font variables */
  --heading-font: 'Orbitron', sans-serif;
  --body-font: 'Poppins', sans-serif;
  --accent-font: 'Playfair Display', serif;
}

/* Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-light);
  background-color: var(--background-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-lg);
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
}

h3 {
  font-size: 1.8rem;
}

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

a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

section {
  padding: var(--space-xxl) var(--space-lg);
  position: relative;
}

/* === Header Styles === */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-sm) var(--space-lg);
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.logo-container {
  margin-bottom: var(--space-sm);
}

#logo {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

#main-nav ul {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.nav-link {
  position: relative;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-xs) var(--space-sm);
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* === Hero Section === */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
 
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-placeholder {
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg{
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-xl);
  animation: fadeIn 1.5s ease-in-out;
}

.main-heading {
  font-size: 3.5rem;
  margin-top: 50px;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 10px rgba(244, 197, 66, 0.7);
  color: var(--primary);
}

.subtitle {
  font-family: var(--accent-font);
  font-size: 1.8rem;
  margin-bottom: var(--space-lg);
  animation: fadeIn 2s ease-in-out 0.5s both;
}

.cta-button {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  text-transform: uppercase;
  background-color: var(--primary);
  color: var(--background-dark);
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeIn 2.5s ease-in-out 1s both;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary);
  box-shadow: 0 0 15px rgba(244, 197, 66, 0.7), inset 0 0 15px rgba(244, 197, 66, 0.7);
  transform: translateY(-2px);
}

/* === About Section === */
.about {
  display: flex;
  align-items: center;
  gap: var(--space-xxl);
  padding: var(--space-xxl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.about-image {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.elevator-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('https://images.pexels.com/photos/3209045/pexels-photo-3209045.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.reflection {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 255, 255, 0.2), transparent);
  transform: rotateX(180deg);
  filter: blur(5px);
}

.about-content {
  flex: 1;
  background-color: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  padding: var(--space-xl);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.about-content h2 {
  color: var(--primary);
}

.about-content p {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

/* === Hotel Section === */
.hotel {
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
  position: relative;
}

.hotel h2 {
  margin-bottom: var(--space-xl);
}

.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: var(--space-md);
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  padding: var(--space-md) 0;
}

.carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.hotel-card {
  flex: 0 0 80%;
  scroll-snap-align: center;
  min-height: 400px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: var(--space-xl);
  text-align: center;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hotel-card h3 {
  color: var(--primary);
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hotel-card p {
  color: var(--text-light);
  position: relative;
  z-index: 2;
  font-family: var(--accent-font);
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

#sapphire {
  background-image: url('https://images.pexels.com/photos/1268855/pexels-photo-1268855.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
}

#urban {
  background-image: url('https://images.pexels.com/photos/2869215/pexels-photo-2869215.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
}

#green {
  background-image: url('https://images.pexels.com/photos/1134176/pexels-photo-1134176.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
}

#neon {
  background-image: url('https://images.pexels.com/photos/1123982/pexels-photo-1123982.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
}

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

.carousel-button {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.carousel-button:hover {
  background-color: var(--primary);
  color: var(--background-dark);
}

/* === Services Section === */
.services {
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
}

.services h2 {
  margin-bottom: var(--space-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service-card {
  background-color: rgba(30, 30, 30, 0.7);
  padding: var(--space-lg);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
  z-index: -1;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

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

.service-icon.concierge {
  background-image: url('https://images.pexels.com/photos/2079249/pexels-photo-2079249.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  border-radius: 50%;
}

.service-icon.spa {
  background-image: url('https://images.pexels.com/photos/3188/love-romantic-bath-candlelight.jpg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  border-radius: 50%;
}

.service-icon.nightclub {
  background-image: url('https://images.pexels.com/photos/3171837/pexels-photo-3171837.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  border-radius: 50%;
}

.service-icon.casino-tours {
  background-image: url('https://images.pexels.com/photos/6664240/pexels-photo-6664240.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  border-radius: 50%;
}

.service-icon.performances {
  background-image: url('https://images.pexels.com/photos/1763075/pexels-photo-1763075.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  border-radius: 50%;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--neon-blue);
}

.service-card p {
  font-size: 1rem;
}

/* === Casino Section === */
.casino {
  padding: var(--space-xxl) var(--space-lg);
  text-align: center;
}

.casino h2 {
  margin-bottom: var(--space-xl);
}

.casino-content {
  display: flex;
  align-items: center;
  gap: var(--space-xxl);
  margin-top: var(--space-lg);
}

.casino-image {
  flex: 1;
  min-height: 500px;

  
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255, 0, 204, 0.3);
}

.casino-info {
  flex: 1;
  text-align: left;
  padding: var(--space-lg);
}

.casino-info h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.casino-counters {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-xl);
}

.counter {
  text-align: center;
}

.count {
  font-family: var(--heading-font);
  font-size: 3rem;
  color: var(--neon-blue);
  display: block;
  margin-bottom: var(--space-xs);
}

/* === Contact Form === */
.contact {
  display: flex;
  min-height: 100vh;
  padding-top: 100px;
}

.contact-content {
  flex: 1;
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-content h1 {
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

.contact-image {
  flex: 1;
  background-image: url('https://images.pexels.com/photos/6664268/pexels-photo-6664268.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  position: relative;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--background-dark), transparent);
}

.form-group {
  margin-bottom: var(--space-md);
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-family: var(--heading-font);
  color: var(--primary);
}

input, textarea {
  width: 100%;
  padding: var(--space-sm);
  background-color: rgba(30, 30, 30, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text-light);
  font-family: var(--body-font);
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.submit-button {
  background-color: var(--primary);
  color: var(--background-dark);
  border: none;
  padding: var(--space-sm) var(--space-xl);
  font-family: var(--heading-font);
  font-size: 1.1rem;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--space-md);
}

.submit-button:hover {
  background-color: transparent;
  color: var(--primary);
  box-shadow: 0 0 15px rgba(244, 197, 66, 0.7), inset 0 0 15px rgba(244, 197, 66, 0.7);
}

/* Popup styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background-color: var(--background-dark);
  padding: var(--space-xl);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
  text-align: center;
  position: relative;
  max-width: 500px;
  width: 90%;
  border: 2px solid var(--neon-blue);
}

.close-popup {
  position: absolute;
  top: var(--space-xs);
  right: var(--space-md);
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: var(--primary);
}

.popup-button {
  background-color: var(--primary);
  color: var(--background-dark);
  border: none;
  padding: var(--space-sm) var(--space-xl);
  font-family: var(--heading-font);
  font-size: 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--space-md);
}

.popup-button:hover {
  background-color: transparent;
  color: var(--primary);
  box-shadow: 0 0 15px rgba(244, 197, 66, 0.7), inset 0 0 15px rgba(244, 197, 66, 0.7);
}

/* Legal pages */
.legal-content {
  max-width: 1000px;
  margin: 120px auto 50px;
  padding: var(--space-xl);
  background-color: rgba(30, 30, 30, 0.7);
  border-radius: 8px;
}

.legal-content h1 {
  color: var(--primary);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.legal-text h2 {
  color: var(--neon-blue);
  font-size: 1.8rem;
  margin: var(--space-lg) 0 var(--space-md);
}

.legal-text p, .legal-text ul {
  margin-bottom: var(--space-md);
}

.legal-text ul {
  padding-left: var(--space-lg);
  list-style-type: disc;
}

.legal-text li {
  margin-bottom: var(--space-xs);
}

/* === Footer === */
footer {
  background-color: var(--footer-bg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.9), 0 0 30px rgba(0, 255, 255, 0.4);
  }
}