/* 7J7777 Online Casino - Global Styles */
/* Mobile-First Responsive Design */

:root {
  --primary-green: #006a4e;
  --gradient-radial: radial-gradient(100% 51.53% at 48.47% 0, #004b4c 0, #002021 100%);
  --accent-gold: #f7d462;
  --dark-green: #012b20;
  --gradient-linear: linear-gradient(180deg, #fbe38c, #ebab51);
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-dark: #333333;
  --text-light: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--gradient-radial);
  min-height: 100vh;
}

/* Typography */
h1 {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1.7;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Video Banner */
.video-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.video-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.video-banner .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 1rem;
}

.video-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.video-banner p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gradient-radial);
  z-index: 1000;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 40px;
  width: auto;
  display: none; /* Hidden on mobile */
}

.logo img {
  height: 100%;
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: var(--dark-green);
  display: flex;
  flex-direction: column;
  padding: 4rem 2rem 2rem;
  transition: right 0.3s ease;
  z-index: 999;
}

.nav-menu.active {
  right: 0;
}

.nav-menu .logo-nav {
  display: block;
  margin-bottom: 2rem;
  text-align: center;
}

.nav-menu .logo-nav img {
  height: 50px;
  width: auto;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-menu a {
  color: var(--white);
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-buttons {
  display: flex;
  gap: 0.5rem;
}

.cta-btn {
  background: var(--gradient-linear);
  color: var(--dark-green);
  border: none;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn span {
  display: none;
}

.cta-btn:hover {
  transform: scale(1.1);
}

@media (min-width: 360px) {
  .cta-btn span {
    display: inline;
  }

  .cta-btn {
    width: auto;
    height: auto;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none !important;
  }

  .cta-btn i {
    display: none;
  }
}

/* Main Content */
main {
  margin-top: 60px;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  text-align: center;
  padding: 3rem 0;
  background: var(--gradient-radial);
  border-radius: 10px;
  margin-bottom: 2rem;
  display: none; /* Hide separate hero section when video banner acts as hero */
}

.content-section {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  border: 1px solid var(--primary-green);
}

.content-section h2 {
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/* CTA Links */
.cta-link {
  background: var(--gradient-linear);
  color: var(--dark-green);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
  margin: 0.5rem 0.5rem 0.5rem 0;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.cta-link:hover {
  transform: translateY(-2px);
  color: var(--dark-green);
  text-decoration: none;
}

/* FAQ Section */
.faq-section {
  background: rgba(0, 106, 78, 0.1);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  cursor: pointer;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.1);
  transition: .2s ease-in-out;
  border: 1px solid rgba(247, 212, 98, 0.3);
  border-radius: 12px;
}

.faq-item.active {
  padding-bottom: 1rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  color: var(--accent-gold);
  font-weight: bold;
}

.faq-answer {
  color: var(--white);
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: .2s ease-in-out;
}

.faq-item.active .faq-answer {
  max-height: 2000px;

}

/* Footer */
footer {
  background: var(--dark-green);
  color: var(--white);
  padding: 3rem 1rem 1rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.footer-section h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--white);
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-gold);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }

  .dual-image-grid{
    grid-template-columns: 1fr 1fr;
  }

  .video-banner h1 {
    font-size: 3rem;
  }

  .video-banner {
    height: 70vh;
  }

  main {
    padding: 2rem;
  }

  .content-section {
    padding: 3rem;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
  .video-banner {
    height: 80vh;
  }

  .video-banner h1 {
    font-size: 3.5rem;
  }

  .content-section {
    padding: 4rem;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1220px) {
  .nav-toggle {
    display: none;
  }

  .logo {
    display: block; /* Show logo on tablet/desktop */
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    padding: 0;
    margin-left: auto;
    margin-right: 1rem;
    flex: 2;
    justify-content: center;
  }

  .nav-menu .logo-nav {
    display: none;
  }

  .nav-menu ul {
    flex-direction: row;
    gap: 1rem;
  }

  .nav-menu li {
    list-style: none;
  }

  .nav-menu a {
    border-bottom: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
  }
 
  .nav-menu a.active{
    background-color: rgba(255, 255, 255, 0.1);
    color: #ebab51;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

/* Load Optimization */
img {
  max-width: 100%;
  height: auto;
}

/* Image Styling Classes */
.full-width-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.dual-image-grid {
  display: grid;
  grid-template-columns: 1f;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dual-image-grid img {
  width: 100%;
  border-radius: 8px;
}

/* Content Section Lists */
.content-section ul {
  color: var(--white);
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.content-section ul li {
  margin-bottom: 0.5rem;
}

/* Focus States for Accessibility */
button:focus,
a:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Disclaimer Text */
.disclaimer-text {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.5;
  text-align: center;
}

/* Content Section Lists - Override for specific list styling */
.content-list {
  color: var(--white);
  margin-left: 2rem;
} 