/* CSS Variables - Color Palette - Ocean Elite Theme */
:root {
  --primary-green: #0f766e;
  --primary-green-dark: #134e4a;
  --primary-light: #14b8a6;
  --accent-blue: #06b6d4;
  --accent-light: #67e8f9;
  --white: #ffffff;
  --black: #000000;
  --text-dark: #0f172a;
  --text-light: #475569;
  --background-light: #f0fdfa;
  --background-dark: #1e293b;
  --shadow: rgba(15, 118, 110, 0.15);
  --shadow-strong: rgba(15, 118, 110, 0.25);
  --cta-orange: #f97316;
  --cta-orange-hover: #ea580c;
  --success-green: #059669;
  --warning-yellow: #f59e0b;
  --ocean-accent: #0891b2;
  --coral-bright: #ff6b6b;
  --teal-soft: #5eead4;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

/* Typography */
h1 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

p {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

/* Button Styles */
button {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
  color: var(--white);
  font-size: 20px;
  padding: 20px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-strong);
}

.btn-submit {
  background: linear-gradient(135deg, var(--cta-orange), var(--coral-bright));
  color: var(--white);
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px var(--shadow);
  font-weight: 600;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--coral-bright), var(--cta-orange));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-strong);
  border-color: var(--ocean-accent);
}

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

.age-verification-content {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
}

.age-verification-content h2 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.age-verification-content .subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.age-verification-content .description {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.5;
}

.age-verification-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.btn-confirm {
  background: linear-gradient(135deg, var(--primary-green), var(--ocean-accent));
  color: var(--white);
  flex: 1;
  border: 2px solid transparent;
  font-weight: 600;
}

.btn-confirm:hover {
  background: linear-gradient(135deg, var(--ocean-accent), var(--accent-blue));
  border-color: var(--teal-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--shadow-strong);
}

.btn-exit {
  background-color: #dc3545;
  color: var(--white);
  flex: 1;
}

.btn-exit:hover {
  background-color: #c82333;
}

.legal-notice {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}

/* Header */
.header {
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  z-index: 1000;
}

.navbar {
  padding: 15px 0;
}

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

.nav-logo img {
  height: 60px;
  width: 150px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-login-btn {
  background: linear-gradient(135deg, transparent, rgba(15, 118, 110, 0.1));
  color: var(--primary-green);
  border: 2px solid var(--ocean-accent);
  padding: 10px 25px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.nav-login-btn:hover {
  background: linear-gradient(135deg, var(--ocean-accent), var(--primary-green));
  color: var(--white);
  border-color: var(--accent-blue);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px var(--shadow);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/public/images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero .highlight {
  color: var(--accent-blue);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: 'Open Sans', sans-serif;
}

/* Our Mission Section */
.our-mission {
  padding: 100px 0;
  background: var(--white);
}

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

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

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

.circular-img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px var(--shadow);
}

.mission-text h2 {
  color: var(--text-dark);
  margin-bottom: 30px;
}

.mission-text p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Who We Are Section */
.who-we-are {
  padding: 100px 0;
  background: var(--primary-green);
  color: var(--white);
}

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

.who-text h2 {
  color: var(--white);
  margin-bottom: 30px;
}

.who-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* VIP Program Section */
.vip-program {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/public/images/benefits-bg.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
}

.vip-program h2 {
  color: var(--white);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vip-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.vip-card {
  background: linear-gradient(145deg, var(--white), var(--background-light));
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-strong);
  color: var(--text-dark);
  text-align: center;
  border-top: 4px solid var(--ocean-accent);
  border-bottom: 2px solid var(--teal-soft);
  transition: all 0.3s ease;
}

.vip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-strong);
  border-top-color: var(--accent-blue);
  background: linear-gradient(145deg, var(--background-light), var(--white));
}

.vip-card h3 {
  color: var(--primary-green);
  margin-bottom: 20px;
}

.vip-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* What Makes Us Special Section */
.what-makes-special {
  padding: 100px 0;
  background: var(--primary-green);
  text-align: center;
  color: var(--white);
}

.what-makes-special h2 {
  color: var(--white);
  margin-bottom: 60px;
}

.special-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.special-card {
  background: linear-gradient(145deg, var(--white), var(--background-light));
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-strong);
  color: var(--text-dark);
  border-left: 5px solid var(--cta-orange);
  border-right: 2px solid var(--teal-soft);
  transition: all 0.3s ease;
}

.special-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--white);
}

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

.contact-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--shadow);
}

.contact-form {
  padding: 40px;
  background: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

/* Responsible Gambling Section */
.responsible-gambling {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid #eee;
}

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

.info-block {
  text-align: left;
}

.info-block h3 {
  color: var(--primary-green);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.info-block p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 30px 0;
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.partner-logos a {
  display: inline-block;
  background: linear-gradient(145deg, var(--white), var(--background-light));
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px var(--shadow);
  border: 2px solid var(--teal-soft);
}

.partner-logos img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: block;
}

.partner-logos img:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.copyright {
  border-top: 1px solid #555;
  padding-top: 20px;
  margin-top: 20px;
}

.copyright p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
