/* Main Styles for Luxury Casino Website */
:root {
  --gold: #d4af37;
  --dark-gold: #b4941f;
  --black: #000000;
  --dark-gray: #1a1a1a;
  --light-gray: #333333;
  --white: #ffffff;
  --font-primary: 'Sora';
  --font-secondary: 'Sora';
}

@font-face {
  font-family: "Sora";
  src: url("/Sora-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: var(--dark-gold);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--gold);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease;
}

.header-scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}

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

.nav-item {
  margin: 0 15px;
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--white);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/images/bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    height: 800px;
      background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  }

  .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--white);
  font-weight: 400;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;



}

  @media (max-width: 768px) { 
    .hero-btns {
      width: 80%;
    }
  }

/* About Section */
.about {
  background-color: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--gold);
  opacity: 0.05;
  border-radius: 50%;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.about-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.about-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 5px solid var(--gold);
  transform: perspective(1000px) rotateY(-15deg);
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.about-img:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

/* Events Section */
.events {
  background-color: var(--black);
  position: relative;
}

.events::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--gold);
  opacity: 0.05;
  border-radius: 50%;
}

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

.event-card {
  background: var(--light-gray);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.event-content {
  padding: 20px;
}

.event-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.event-description {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.event-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gold);
}

.event-date, .event-location {
  display: flex;
  align-items: center;
}

.event-date i, .event-location i {
  margin-right: 5px;
}

/* Advantages Section */
.advantages {
  background-color: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.advantages::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('/images/texture.webp');
  opacity: 0.05;
}

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

.advantage-card {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--black) 100%);
  padding: 30px;
  text-align: center;
  border-left: 3px solid var(--gold);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 100%);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.advantage-card:hover::before {
  opacity: 0.1;
}

.advantage-card:hover {
  transform: translateY(-10px);
}

.advantage-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.advantage-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.advantage-description {
  font-size: 1rem;
  color: var(--white);
}

/* Gallery Section */
.gallery {
  background-color: var(--black);
  position: relative;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.gallery-icon {
  color: var(--gold);
  font-size: 2rem;
}

/* Process Section */
.process {
  background-color: var(--dark-gray);
  position: relative;
}

.process-container {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 25px;
  width: 2px;
  height: calc(100% + 30px);
  background: var(--gold);
}

.process-step:last-child::before {
  display: none;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-right: 30px;
  position: relative;
  z-index: 1;
}

.process-content {
  flex: 1;
}

.process-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.process-description {
  font-size: 1rem;
}

/* Statistics Section */
.statistics {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('/images/stats-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

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

.stat-item {
  padding: 30px;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.stat-title {
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Trust Section */
.trust {
  background-color: var(--black);
  position: relative;
}

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

.trust-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.trust-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 2rem;
}

.trust-badge {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: 50%;
  font-size: 2.5rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: scale(1.1);
  background: var(--black);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  padding: 50px 0 20px;
  position: relative;
}

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

.footer-logo {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-description {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold);
}

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

.footer-link {
  margin-bottom: 10px;
}

.footer-link a {
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-link a:hover {
  color: var(--gold);
  padding-left: 5px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
}

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

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

.license {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

/* Age Verification Popup */
.age-verify {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.age-verify-content {
  background: var(--dark-gray);
  padding: 50px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  border: 2px solid var(--gold);
}

.age-verify-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--gold);
}

.age-verify-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.age-verify-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.age-verify-yes, .age-verify-no {
  padding: 12px 30px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.age-verify-yes {
  background: var(--gold);
  color: var(--black);
  border: none;
}

.age-verify-no {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.age-verify-yes:hover {
  background: var(--dark-gold);
}

.age-verify-no:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-gray);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1500;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-text {
  flex: 1;
  margin-right: 30px;
}

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

.cookie-accept, .cookie-decline {
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--gold);
  color: var(--black);
  border: none;
}

.cookie-decline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-accept:hover {
  background: var(--dark-gold);
}

.cookie-decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Utilities */
.text-center {
  text-align: center;
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .process-step::before {
    left: 24px;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    background: var(--black);
    text-align: center;
    transition: all 0.3s ease;
    z-index: 999;
    padding-top: 80px;
  }
  
  .nav-menu.active {
    top: 0;
  }
  
  .nav-item {
    margin: 20px 0;
  }
  
  .nav-link {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-title, .trust-title {
    font-size: 2rem;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-widget:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .cookie-consent {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .advantage-card {
    padding: 20px;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .process-number {
    margin-bottom: 20px;
    margin-right: 0;
  }
  
  .process-step::before {
    display: none;
  }
  
  .age-verify-content {
    padding: 30px;
  }
  
  .age-verify-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .trust-badges {
    flex-wrap: wrap;
  }
}