/**
* Template Name: Book of Ra Guide - Light Egyptian Style
* Updated: Jan 2026 with Light Color Scheme
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-light: #FDF9EB;
  --secondary-light: #FBF5DE;
  --accent-gold: #d4af37;
  --dark-text: #2D2A21;
  --medium-text: #595542;
  --light-text: #706A53;
  --border-color: #E0D4A5;
  --shadow-color: rgba(45, 42, 33, 0.1);
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--dark-text);
  background-color: var(--primary-light);
  line-height: 1.6;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b8941e;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  color: var(--dark-text);
  font-weight: 700;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--accent-gold);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid white;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.back-to-top i {
  font-size: 20px;
  color: white;
  line-height: 0;
}

.back-to-top:hover {
  background: #b8941e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 1rem 0;
  background: rgba(253, 249, 235, 0.98);
  border-bottom: 2px solid var(--accent-gold);
  box-shadow: 0 2px 20px var(--shadow-color);
}

#header.header-scrolled {
  padding: 0.75rem 0;
  background: rgba(253, 249, 235, 0.98);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dark-text);
}

#header .logo a {
  color: var(--dark-text);
  text-decoration: none;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--accent-gold);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  border: 2px solid var(--accent-gold);
  background: var(--accent-gold);
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #b8941e;
  border-color: #b8941e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: white;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 5px 25px var(--shadow-color);
  transition: 0.3s;
  border-radius: 8px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: var(--medium-text);
}

.navbar .dropdown ul a:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.mobile-nav-toggle {
  color: var(--accent-gold);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  background: linear-gradient(135deg, #2d2a21 0%, #4f4a3a 100%);
  min-height: 85vh;
  padding: 120px 0 80px;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

#hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  z-index: 1;
}

#hero > .container {
  position: relative;
  z-index: 10;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

#hero h2 {
  color: #f0e6c3;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

#hero p {
  color: #e6d8b5;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 2rem;
}

#hero .btn {
  position: relative;
  z-index: 20;
  pointer-events: auto;
  cursor: pointer;
}

#hero a {
  position: relative;
  z-index: 20;
  text-decoration: none;
}

#hero a:hover {
  text-decoration: none;
}

.game-stats {
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.stat-item {
  text-align: center;
  padding: 8px 15px;
  position: relative;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.85rem;
  color: #d4c9a5;
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-badges {
  position: relative;
  z-index: 10;
}

.trust-badges .badge {
  background: rgba(255, 255, 255, 0.15);
  color: #f0e6c3;
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 25px;
  backdrop-filter: blur(5px);
}

.trust-badges .badge i {
  color: var(--accent-gold);
}

/*--------------------------------------------------------------
# Hero Section - Game Stats
--------------------------------------------------------------*/
.game-stats {
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  padding: 8px 15px;
  position: relative;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--light-text);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Add subtle separator between items */
.stat-item:not(:last-child):after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 1px;
  background: var(--border-color);
  opacity: 0.6;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  position: relative;
}

.section-bg {
  background-color: var(--secondary-light);
}

.section-title {
  text-align: center;
  padding-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark-text);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  color: var(--medium-text);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Symbol Section
--------------------------------------------------------------*/
.symbole-section {
  background: var(--primary-light);
}

.symbol-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.symbol-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color);
  border-color: var(--accent-gold);
}

.symbol-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Versionen Timeline
--------------------------------------------------------------*/
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-gold);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.timeline-date {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.timeline-content {
  width: 45%;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

.timeline-features {
  margin-top: 15px;
}

.timeline-features .badge {
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 6px 12px;
  font-weight: 500;
}

/* Recommendations */
.recommendations {
  background: white;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px var(--shadow-color);
}

.rec-card {
  background: var(--primary-light);
  transition: all 0.3s ease;
}

.rec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-color);
  border-color: var(--accent-gold);
}

.rec-icon {
  color: var(--accent-gold);
}

/* Comparison Table */
.comparison-table table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.comparison-table th {
  background: var(--accent-gold);
  color: white;
  font-weight: 600;
  padding: 15px;
}

.comparison-table td {
  padding: 15px;
  border-color: var(--border-color);
}

/*--------------------------------------------------------------
# Casinos Section
--------------------------------------------------------------*/
.casino-card {
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  background: white;
}

.casino-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.casino-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, #FCF7E4 100%);
  border-bottom: 1px solid var(--border-color);
}

.casino-rank .badge {
  background: var(--accent-gold);
  color: white;
  font-size: 0.9rem;
  padding: 6px 15px;
}

.stars {
  font-size: 1.2rem;
}

.bonus-highlight {
  border-left: 4px solid;
}

/*--------------------------------------------------------------
# Strategy Section
--------------------------------------------------------------*/
.strategy-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px var(--shadow-color);
}

.tip-card {
  background: var(--primary-light);
  transition: all 0.3s ease;
}

.tip-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 10px !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  background: var(--primary-light);
  color: var(--dark-text);
  font-weight: 600;
  padding: 20px;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: var(--accent-gold);
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-gold);
}

.accordion-body {
  background: white;
  padding: 25px;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  background: linear-gradient(135deg, #2d2a21 0%, #4f4a3a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.cta-section h3 {
  color: white;
}

.cta-section .btn-light {
  background: white;
  color: var(--dark-text);
  border: none;
  font-weight: 600;
  padding: 15px 30px;
}

.cta-section .btn-warning {
  background: var(--accent-gold);
  color: white;
  border: none;
  font-weight: 600;
  padding: 15px 30px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--dark-text);
  color: #B3A984;
  padding: 60px 0 30px;
  border-top: 3px solid var(--accent-gold);
}

#footer h5 {
  color: #F6E9B6;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

#footer a {
  color: #B3A984;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

#footer ul {
  list-style: none;
  padding: 0;
}

#footer ul li {
  margin-bottom: 12px;
}

.responsible-gaming {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 20px;
  margin-top: 20px;
}

.gov-links {
  background: rgba(45, 42, 33, 0.5);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.age-restriction {
  font-size: 0.9rem;
  opacity: 0.8;
}

.copyright {
  color: #9D9474;
  font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Cookie Banner
--------------------------------------------------------------*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--accent-gold);
    padding: 20px;
    z-index: 99999;
    box-shadow: 0 -5px 20px var(--shadow-color);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    color: var(--medium-text);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.cookie-text a {
    color: var(--accent-gold);
    font-weight: 600;
}

.cookie-btn {
    background: var(--accent-gold);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: #b8941e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline-date {
    left: 30px;
    transform: none;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    margin-right: 0 !important;
  }
  
  .timeline-item {
    margin-bottom: 60px;
  }
  
  #hero h1 {
    font-size: 2.2rem;
  }
  
  #hero h2 {
    font-size: 1.2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .strategy-content {
    padding: 25px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 992px) {
  #hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.bg-light {
  background-color: var(--primary-light) !important;
}

.bg-dark {
  background-color: var(--dark-text) !important;
}

.text-primary {
  color: var(--accent-gold) !important;
}

.text-dark {
  color: var(--dark-text) !important;
}

.text-muted {
  color: var(--light-text) !important;
}

.border {
  border-color: var(--border-color) !important;
}

.btn-primary {
  background-color: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: white !important;
}

.btn-primary:hover {
  background-color: #b8941e !important;
  border-color: #b8941e !important;
}

.btn-success {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
}

.btn-warning {
  background-color: #ffc107 !important;
  border-color: #ffc107 !important;
}

/*--------------------------------------------------------------
# Animation for Fade In
--------------------------------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}