/* Base Styles and Variables */
:root {
  --primary: #420C09;
  --accent: #FAF0E6;
  --secondary: #3A3A3A;
  --text: #FDFDFD;
  --light-text: #F2F2F2;
  --dark-text: #323232;
  --gold: #D4AF37;
  --light-gold: #F5E9C0;
  --error: #A62929;
  --success: #2E7D32;
  --warning: #F57C00;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  
  --heading-font: 'Arvo', serif;
  --body-font: 'Quicksand', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  
  --container-padding: 2rem;
  --section-spacing: 6rem;
  --element-spacing: 1.5rem;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

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

button, input, select, textarea {
  font-family: var(--body-font);
  font-size: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.primary-btn {
  background-color: var(--primary);
  color: var(--text);
  border: 2px solid var(--primary);
}

.primary-btn:hover {
  background-color: transparent;
  color: var(--primary);
}

.secondary-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-btn:hover {
  background-color: var(--primary);
  color: var(--text);
}

.text-btn {
  background: none;
  color: var(--primary);
  padding: 0.5rem 0;
  position: relative;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.text-btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width var(--transition-medium);
}

.text-btn:hover {
  color: var(--primary);
}

.text-btn:hover::after {
  width: 100%;
}

/* Header */
#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(66, 12, 9, 0.9);
  backdrop-filter: blur(10px);
  transition: background-color var(--transition-medium);
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-container img{
  height: 70px;
  width: 180px;
}

.logo-container h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--gold);
  letter-spacing: 2px;
}

.logo-container p {
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--accent);
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold);
  transition: width var(--transition-medium);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: var(--accent);
  border-radius: 10px;
  transition: all var(--transition-medium);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.decorator-line {
  width: 80px;
  height: 3px;
  background-color: var(--gold);
  margin: 0 auto;
  position: relative;
}

.decorator-line::before,
.decorator-line::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  top: -1.5px;
}

.decorator-line::before {
  left: -10px;
}

.decorator-line::after {
  right: -10px;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--text);
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-right: 2rem;
}

.footer-logo h2 {
  color: var(--gold);
  margin: 0;
}

.footer-logo p {
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-nav-column h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-column li {
  margin-bottom: 0.7rem;
}

.footer-nav-column a {
  color: var(--accent);
  transition: color var(--transition-fast);
}

.footer-nav-column a:hover {
  color: var(--gold);
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(250, 240, 230, 0.1);
  border-bottom: 1px solid rgba(250, 240, 230, 0.1);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(250, 240, 230, 0.1);
  color: var(--accent);
  transition: all var(--transition-medium);
}

.social-links a:hover {
  background-color: var(--gold);
  color: var(--primary);
}

.social-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-middle .newsletter {
  max-width: 400px;
}

.footer-middle .newsletter h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-middle #newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-middle #newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius-md);
  background-color: rgba(250, 240, 230, 0.1);
  color: var(--accent);
}

.footer-middle #newsletter-form input::placeholder {
  color: rgba(250, 240, 230, 0.5);
}

.footer-middle #newsletter-form button {
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
}

.copyright {
  margin-bottom: 1rem;
}

.responsible-gaming-notice {
  max-width: 800px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.responsible-gaming-notice a {
  color: var(--gold);
  text-decoration: underline;
}

address {
  font-style: normal;
  line-height: 1.7;
}

/* Page Banner */
#page-banner {
  position: relative;
  height: 300px;
  background-color: var(--primary);
  background-image: linear-gradient(rgba(66, 12, 9, 0.85), rgba(66, 12, 9, 0.85)), url('https://images.pexels.com/photos/1579253/pexels-photo-1579253.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.banner-content {
  text-align: center;
  color: var(--text);
  padding: 0 2rem;
}

.banner-content h2 {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.banner-content p {
  font-size: 1.2rem;
  color: var(--accent);
  max-width: 800px;
  margin: 0 auto;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius-md);
  transition: border-color var(--transition-fast);
  background-color: white;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-container label {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  :root {
    --container-padding: 1.5rem;
    --section-spacing: 5rem;
  }
  
  .footer-nav {
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  :root {
    font-size: 15px;
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .footer-logo {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .footer-nav {
    justify-content: space-between;
  }
  
  .footer-middle {
    flex-direction: column;
    gap: 2rem;
  }
  
  .social-links {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 4rem;
  }
  
  .hamburger-menu {
    display: flex;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-medium);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }
  
  .nav-links a {
    font-size: 1.1rem;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 2rem;
  }
  
  .page-banner {
    height: 250px;
  }
  
  .banner-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  :root {
    --container-padding: 1rem;
    --section-spacing: 3rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .page-banner {
    height: 200px;
  }
  
  .banner-content h2 {
    font-size: 1.75rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

.slide-in-up {
  animation: slideInUp 0.8s ease-out;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-gold {
  color: var(--gold);
}

.text-accent {
  color: var(--accent);
}

.bg-primary {
  background-color: var(--primary);
  color: var(--text);
}

.bg-accent {
  background-color: var(--accent);
  color: var(--primary);
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}