﻿/* =============================
   CUBAN CASINO – MODERN STYLE
   ============================= */

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

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #151515;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2{
    text-align: center;
}

/* ==== HEADER ==== */
header {
  background: linear-gradient(90deg, #740000 0%, #d90429 100%);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.content-image{
    margin: 10px auto 20px!important;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-wrapper{
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* ==== NAVIGATION ==== */
.elementor-nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.elementor-item {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.2s ease;
}

.elementor-item:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* ==== HERO SECTION ==== */
.base {
max-width: 1080px;
margin: 150px auto 0;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
  background-image: url('havana-bg.webp');
  background-size: cover;
  background-position: center;
  color: #151515;
}

.base h1 {
  font-size: 2.8rem;
  color: #000;
  margin-bottom: 2rem;
}

.text-container p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  color: #151515;
}

/* ==== BUTTONS ==== */
.button-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  background: linear-gradient(90deg, #fff, #ff8800);
  color: #000;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(90deg, #ffcc00, #ff5500);
  transform: scale(1.05);
}

.site-footer{
    margin-top: 120px;
}

/* ==== SECTIONS ==== */
section {
  padding: 3rem 2rem;
  background: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

section:nth-of-type(even) {
  background: #fff;
}

h2 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ==== LISTS ==== */
ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
}

ul li {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid #d90429;
}

/* ==== TABLE ==== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto;
  max-width: 1000px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

th, td {
  padding: 0;
  border: 1px solid rgba(255,255,255,0.1);
  color: #151515;
}

th {
  background-color: #740000;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

tr:nth-child(even) {
  background-color: rgba(255,255,255,0.05);
}

/* ==== IMAGES ==== */
img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  margin: 1rem auto;
  display: block;
}

/* ==== FAQ ==== */
.faq-list {
  margin: 2rem auto;
  list-style: decimal;
}

.faq-question h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.faq-answer {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.faq-answer:hover {
  background: rgba(255,255,255,0.1);
}

/* ==== FOOTER ==== */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

footer p {
  margin-bottom: 1rem;
}

.social-icons a {
  color: #fff;
  margin: 0 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #ff5500;
  transform: scale(1.2);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  thead{
    font-size: 0.7em;
  }

  .elementor-nav-menu {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .base h1 {
    font-size: 2.2rem;
  }

  .text-container p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-button {
    width: 80%;
    text-align: center;
  }

  h2 {
    font-size: 1.6rem;
  }
}

  .bonuses {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
    color: #f8f8f8;
  }

  .bonuses h2 {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
  }

  .bonus-card {
    background: #181818;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }

  .bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.6);
  }

  .bonus-type {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .bonus-desc {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
  }

  .bonus-details {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .bonus-details li {
    padding: 0.3rem 0;
    font-size: 0.95rem;
    color: #ddd;
  }

  .bonus-details strong {
    color: #ff7a18;
  }

  @media (min-width: 700px) {
    .bonuses {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.5rem;
    }

    .bonus-card {
      margin: 0;
    }

    .bonuses h2 {
      grid-column: 1 / -1;
    }
  }