/* TextilCasino - Main Stylesheet */
/* Using Bulma with custom styles */
/* Colors: Graphite (primary) and Copper (accent) */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
  --graphite: #3a3a3a;
  --graphite-dark: #2a2a2a;
  --graphite-light: #5a5a5a;
  --copper: #b87333;
  --copper-light: #d4956a;
  --copper-dark: #8b5a2b;
  --white: #ffffff;
  --off-white: #f5f5f5;
}

/* Reset and Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans', sans-serif !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: var(--graphite) !important;
  background-color: var(--off-white) !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans', sans-serif !important;
  font-weight: 700 !important;
  color: var(--graphite-dark) !important;
  line-height: 1.3 !important;
}

h1 {
  font-size: 2.5rem !important;
  margin-bottom: 1.5rem !important;
}

h2 {
  font-size: 2rem !important;
  margin-top: 2rem !important;
  margin-bottom: 1.2rem !important;
  padding-bottom: 0.5rem !important;
  border-bottom: 3px solid var(--copper) !important;
}

h3 {
  font-size: 1.5rem !important;
  margin-top: 1.5rem !important;
  margin-bottom: 1rem !important;
  color: var(--graphite) !important;
}

h4 {
  font-size: 1.25rem !important;
  margin-top: 1.2rem !important;
  margin-bottom: 0.8rem !important;
}

p {
  font-size: 1.1rem !important;
  margin-bottom: 1rem !important;
  color: var(--graphite) !important;
}

/* Navigation */
.navbar {
  background-color: var(--graphite-dark) !important;
  padding: 0.5rem 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
}

.navbar-item,
.navbar-link {
  color: var(--white) !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  transition: color 0.3s ease !important;
  list-style: none !important;
}

.navbar-item:hover,
.navbar-link:hover {
  color: var(--copper-light) !important;
  background-color: transparent !important;
}

.navbar-item::before,
.navbar-item::after,
.navbar-link::before,
.navbar-link::after {
  display: none !important;
  content: none !important;
}

.navbar-menu {
  list-style: none !important;
}

.navbar-menu li {
  list-style: none !important;
}

.navbar-menu li::before,
.navbar-menu li::after {
  display: none !important;
  content: none !important;
}

.navbar-brand .navbar-item {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: var(--copper) !important;
}

.navbar-brand img {
  max-height: 2.5rem !important;
  box-shadow: none !important;
}

.navbar-burger {
  color: var(--white) !important;
}

.navbar-burger span {
  background-color: var(--white) !important;
}

/* CTA Buttons in Nav */
.navbar .button.is-copper {
  background-color: var(--copper) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
}

.navbar .button.is-copper:hover {
  background-color: var(--copper-dark) !important;
  transform: translateY(-2px) !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--graphite-dark) 0%, var(--graphite) 100%) !important;
  color: var(--white) !important;
  padding: 4rem 1.5rem !important;
}

.hero .title {
  color: var(--white) !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
}

.hero .subtitle {
  color: var(--off-white) !important;
  font-size: 1.2rem !important;
  line-height: 1.8 !important;
  margin-bottom: 2rem !important;
}

.hero-body {
  padding: 3rem 1.5rem !important;
}

.hero img {
  border-radius: 10px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  max-width: 100% !important;
  height: auto !important;
}

/* Buttons */
.button.is-copper {
  background-color: var(--copper) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
}

.button.is-copper:hover {
  background-color: var(--copper-dark) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 20px rgba(184, 115, 51, 0.4) !important;
}

.button.is-copper-outline {
  background-color: transparent !important;
  color: var(--copper) !important;
  border: 2px solid var(--copper) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
}

.button.is-copper-outline:hover {
  background-color: var(--copper) !important;
  color: var(--white) !important;
}

/* Sections */
.section {
  padding: 4rem 1.5rem !important;
}

.section:nth-child(even) {
  background-color: var(--white) !important;
}

.section:nth-child(odd) {
  background-color: var(--off-white) !important;
}

/* Cards */
.card {
  background-color: var(--white) !important;
  border-radius: 12px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  overflow: hidden !important;
}

.card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

.card-content {
  padding: 1.5rem !important;
}

.card-image img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
}

/* Lists - Content lists with copper markers */
.content ul,
.content ol {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.content ul li,
.content ol li {
  position: relative !important;
  padding-left: 1.8rem !important;
  margin-bottom: 0.8rem !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
}

.content ul li::before {
  content: '\f0da' !important;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.1rem !important;
  color: var(--copper) !important;
  font-size: 1rem !important;
}

.content ol {
  counter-reset: item !important;
}

.content ol li::before {
  content: counter(item) !important;
  counter-increment: item !important;
  font-family: 'Noto Sans', sans-serif !important;
  font-weight: 700 !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: var(--copper) !important;
  font-size: 1rem !important;
}

/* Tables */
.table-container {
  overflow-x: auto !important;
  margin: 1.5rem 0 !important;
  border-radius: 10px !important;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08) !important;
}

.table {
  width: 100% !important;
  border-collapse: collapse !important;
  background-color: var(--white) !important;
  font-size: 1rem !important;
}

.table thead {
  background-color: var(--graphite-dark) !important;
}

.table thead th {
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 1rem !important;
  text-align: left !important;
  border: none !important;
}

.table tbody tr {
  transition: background-color 0.3s ease !important;
}

.table tbody tr:nth-child(even) {
  background-color: var(--off-white) !important;
}

.table tbody tr:hover {
  background-color: rgba(184, 115, 51, 0.1) !important;
}

.table tbody td {
  padding: 1rem !important;
  border-bottom: 1px solid #eee !important;
  color: var(--graphite) !important;
}

/* Images */
.section img,
.content img {
  border-radius: 10px !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 1.5rem 0 !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Footer */
.footer {
  background-color: var(--graphite-dark) !important;
  color: var(--white) !important;
  padding: 3rem 1.5rem 2rem !important;
}

.footer .title {
  color: var(--copper) !important;
  font-size: 1.2rem !important;
  margin-bottom: 1rem !important;
}

.footer p {
  color: var(--off-white) !important;
  font-size: 1rem !important;
}

.footer a {
  color: var(--off-white) !important;
  transition: color 0.3s ease !important;
}

.footer a:hover {
  color: var(--copper-light) !important;
}

.footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer ul li {
  list-style: none !important;
  margin-bottom: 0.5rem !important;
}

.footer ul li::before,
.footer ul li::after {
  display: none !important;
  content: none !important;
}

.footer-bottom {
  border-top: 1px solid var(--graphite-light) !important;
  margin-top: 2rem !important;
  padding-top: 1.5rem !important;
  text-align: center !important;
}

.footer-bottom p {
  color: var(--graphite-light) !important;
  font-size: 0.9rem !important;
}

/* Icons */
.icon {
  color: var(--copper) !important;
}

.fa, .fas, .far, .fab {
  color: var(--copper) !important;
}

/* Star animation */
@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.star-decoration {
  position: absolute;
  color: var(--copper) !important;
  animation: twinkle 2s ease-in-out infinite;
}

.star-decoration:nth-child(2) {
  animation-delay: 0.5s;
}

.star-decoration:nth-child(3) {
  animation-delay: 1s;
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Pulse animation for buttons */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 115, 51, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(184, 115, 51, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(184, 115, 51, 0);
  }
}

.button.pulse {
  animation: pulse 2s infinite;
}

/* Responsive */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.6rem !important;
  }

  h3 {
    font-size: 1.3rem !important;
  }

  .hero .title {
    font-size: 2rem !important;
  }

  .hero .subtitle {
    font-size: 1.1rem !important;
  }

  .hero-body {
    padding: 2rem 1rem !important;
  }

  .section {
    padding: 2.5rem 1rem !important;
  }

  .navbar-menu {
    background-color: var(--graphite-dark) !important;
  }

  .navbar-item {
    padding: 0.75rem 1rem !important;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 16px !important;
  }

  h1 {
    font-size: 1.8rem !important;
  }

  h2 {
    font-size: 1.4rem !important;
  }

  .button {
    font-size: 1rem !important;
  }
}

/* Utility classes */
.has-text-copper {
  color: var(--copper) !important;
}

.has-background-graphite {
  background-color: var(--graphite) !important;
}

.has-background-graphite-dark {
  background-color: var(--graphite-dark) !important;
}

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

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

/* Logo - no box shadow */
.navbar-brand img,
.logo-img {
  box-shadow: none !important;
}
