/* Main Styling for Greek Casino Website */
:root {
  --primary-color: #0d2240; /* Deep blue - royal, elegant */
  --secondary-color: #d4af37; /* Gold - luxury */
  --accent-color: #8c1919; /* Deep red - casino theme */
  --bg-color: #0a0a0a; /* Near black - luxury */
  --text-color: #f5f5f5; /* Off-white - readability */
  --dark-text: #333333; /* Dark text for light backgrounds */
  --header-font: 'Playfair Display', serif;
  --body-font: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

a:hover {
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 5rem 0;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

.flex {
  display: flex;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--secondary-color);
  color: var(--bg-color);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: #fff;
  color: var(--bg-color);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: var(--bg-color);
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.9);
  padding: 1rem 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header.scrolled {
  padding: 0.7rem 0;
  background-color: rgba(10, 10, 10, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-family: var(--header-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 1px;
}

.logo span {
  color: var(--text-color);
}

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

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

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

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

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: var(--transition);
  background-color: var(--text-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.5));
}

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

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

/* About Section */
.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.about-card {
  background-color: rgba(20, 20, 20, 0.8);
  padding: 2.5rem;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

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

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

.about-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Games Section */
.games-section {
  background-color: #0c0c0c;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

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

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

.game-card {
  position: relative;
  overflow: hidden;
  height: 400px;
}

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

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(0);
  transition: var(--transition);
}

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

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

.game-title {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

/* Stats Section */
.stats-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.85);
}

.stats-container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.stat-text {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Menu & Bar Section */
.menu-section {
  background-color: #0c0c0c;
}

.menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.menu-card {
  background-color: rgba(20, 20, 20, 0.8);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 175, 55, 0.3);
}

.menu-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
}

.menu-name {
  color: var(--secondary-color);
  font-size: 1.3rem;
}

.menu-price {
  color: var(--text-color);
}

.menu-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Staff Section */
.staff-section {
  position: relative;
}

.staff-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.staff-card {
  position: relative;
  overflow: hidden;
}

.staff-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

.staff-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(0);
  transition: var(--transition);
}

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

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

.staff-name {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
}

.staff-position {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 1rem;
}

.staff-socials {
  display: flex;
  gap: 1rem;
}

.staff-social {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.staff-social:hover {
  background-color: var(--secondary-color);
}

.staff-social i {
  color: var(--text-color);
}

/* Testimonial Section */
.testimonial-section {
  background-color: #0c0c0c;
  position: relative;
}

.testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-item {
  text-align: center;
  padding: 2rem;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--secondary-color);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 2rem;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 4rem;
  font-family: serif;
  color: var(--secondary-color);
  position: absolute;
  opacity: 0.3;
}

.testimonial-text::before {
  top: -20px;
  left: 0;
}

.testimonial-text::after {
  bottom: -40px;
  right: 0;
}

.testimonial-name {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.testimonial-position {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Events Section */
.events-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background-color: rgba(20, 20, 20, 0.8);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.event-img-container {
  height: 250px;
  overflow: hidden;
}

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

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

.event-content {
  padding: 2rem;
}

.event-date {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--secondary-color);
  color: var(--bg-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.event-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* VIP Section */
.vip-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
}

.vip-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.85);
}

.vip-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.vip-title {
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.vip-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.vip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.vip-feature {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.vip-feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.vip-feature-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Responsible Gambling */
.responsible-section {
  background-color: #0c0c0c;
}

.responsible-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.responsible-title {
  color: var(--secondary-color);
}

.responsible-text {
  margin-bottom: 2.5rem;
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.responsible-item {
  padding: 1.5rem;
  background-color: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.responsible-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.responsible-item-title {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.eighteen-plus {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.5rem 1.5rem;
  background-color: var(--accent-color);
  color: white;
  font-weight: 600;
  border: 2px solid var(--accent-color);
}

/* Footer */
.footer {
  background-color: #050505;
  padding: 5rem 0 2rem;
}

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

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

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

.footer-link {
  margin-bottom: 0.8rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
  transition: var(--transition);
}

.footer-contact-item:hover .contact-icon {
  background-color: var(--secondary-color);
  color: var(--bg-color);
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: var(--secondary-color);
}

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

.age-verification-content {
  background-color: #0d0d0d;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--secondary-color);
}

.age-logo {
  font-family: var(--header-font);
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.age-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.age-text {
  margin-bottom: 2rem;
}

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

.age-btn {
  padding: 0.8rem 2rem;
  min-width: 120px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.age-yes {
  background-color: var(--secondary-color);
  color: var(--bg-color);
  border: 2px solid var(--secondary-color);
}

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

.age-yes:hover {
  background-color: #fff;
  border-color: #fff;
}

.age-no:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.age-warning {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Access Denied */
.access-denied {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  text-align: center;
  padding: 2rem;
}

.access-denied-content {
  max-width: 600px;
}

.access-denied-title {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.access-denied-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .about-grid, 
  .games-grid,
  .menu-grid,
  .staff-grid,
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.98);
    padding: 4rem 0;
    text-align: center;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .nav-menu.active {
    top: 0;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .hamburger {
    display: block;
    z-index: 1000;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .about-grid, 
  .games-grid,
  .menu-grid,
  .staff-grid,
  .events-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }
  
  section {
    padding: 4rem 0;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 13px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .age-verification-content {
    padding: 2rem 1.5rem;
  }
  
  .age-buttons {
    flex-direction: column;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .responsible-grid {
    grid-template-columns: 1fr;
  }
}