/* Root Variables */
:root {
  --color-primary: #dc2626;
  --color-primary-dark: #991b1b;
  --color-accent: #f59e0b;
  --color-accent-light: #fcd34d;
  --color-neutral-light: #f9fafb;
  --color-neutral: #e5e7eb;
  --color-neutral-dark: #1f2937;
  --color-text: #111827;
  --color-text-muted: #6b7280;

  --font-heading: "Work Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --nav-h: 72px;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--nav-h) + 16px);  /* tweak the +16px if needed */
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

p.links a {
  color:#f59e0b;
  text-decoration: none;
  font-weight: bold;
}

.text-white-shadow {
  color: var(--color-neutral); /* your gold color (#f59e0b) */
  text-shadow:
    3px 3px 4px black;   /* darker gold/brown shadow */
   /* 0 0 10px #fcd34d;      /* soft glow */
   /* 0 0 20px #f59e0b;      /* stronger gold glow */
}

.text-gold {
  color: var(--color-accent) !important;
}

.text-shadow{
  text-shadow: 3px 3px 4px black;
}

.text-gold-bold{
  color: var(--color-accent) !important;
  font-weight: bolder;
  font-size: ;
}

.text-gold-shadow {
  color: var(--color-accent); /* your gold color (#f59e0b) */
  text-shadow:
    3px 3px 4px black;   /* darker gold/brown shadow */
   /* 0 0 10px #fcd34d;      /* soft glow */
   /* 0 0 20px #f59e0b;      /* stronger gold glow */
}

.text-gold-shadow1 {
  color: #f59e0b; /* gold */
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.6), 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Metallic look

.text-gold-shadow {
  color: #FFD700; /* bright gold 
  text-shadow:
    1px 1px 2px #b8860b,
    0 0 10px #FFD700,
    0 0 20px #fcd34d,
    0 0 30px #f59e0b;
}

Subtle and classy
.text-gold-shadow {
  color: var(--color-accent);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
*/

/* Navigation */
.navbar {
  background: linear-gradient(135deg, #7a0e0e 0%, #5a0000 100%); /* deep red solid gradient */
  padding: 1rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  transition: transform 0.3s ease;
  text-shadow: 2px 2px black;
}

.navbar-logo {
  height: 50px;        /* fits standard Bootstrap navbar height */
  width: auto;
  display: block;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: var(--color-accent) !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--color-accent) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: url("../images/gamesLeft.jpg") center center no-repeat;
  background-size: cover;        /* fills entire hero area */
  background-attachment: fixed;  /* adds subtle parallax effect on scroll (optional) */
  background-color: #000;        /* fallback if image doesn’t load */
  padding: 6rem 0;               /* space above & below content */
  overflow: hidden;
  text-align: center;
  height: 100vh;             /* ensures good height */
}

/* Optional: darker overlay for text readability */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2; /* keeps your text above overlay */
}

/*.hero-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh; /* full screen height 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
}*/

/* Added styles for hours display in hero section */
.hero-hours{
  background: linear-gradient(135deg, #7a0e0e 0%, #5a0000 100%);          /* solid fill */
  border: 2px solid var(--color-accent);
  border-radius: 14px;
  padding: 1.5rem;
  color: #fff;
  box-shadow: 0 0 18px var(--panel-glow);  /* soft gold glow */
  transition: transform .25s ease, box-shadow .25s ease;
}

.hero-hours h3 {
  font-size: 1.5rem;
}

.hero-hours p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.hero-hours:hover,
.logo-container:hover{
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(245,158,11,.55);
 /* transition: transform .25s ease, box-shadow .25s ease;*/
}

.logo-container {
  position: relative;
  background: linear-gradient(135deg, #7a0e0e 0%, #5a0000 100%); /* deep red solid gradient */
  border: 2px solid var(--color-accent);                         /* gold border */
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.35);                 /* soft gold glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: var(--color-neutral-dark);
  border: 2px solid var(--color-accent);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  background: var(--color-accent-light);
  color: var(--color-neutral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(245, 158, 11, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: white;
  border: 2px solid var(--color-accent);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--color-accent);
  color: var(--color-neutral-dark);
  transform: translateY(-2px);
}

/* Hours Section */
.hours-section {
  padding: 6rem 0;
  background: var(--color-neutral-light);
}

.hours-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  border: 3px solid var(--color-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours-item {
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--color-neutral-light);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hours-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
}

.hours-bold{
  font-size: 50px;
  font-weight: bolder;
}

.intro-bold{
  font-size: 25px;
}

/* Features Section */
.features-section {
  padding: 10rem 0;
  background: var(--color-neutral-light);
  min-height: 100vh;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--color-neutral);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.feature-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* About Section */
.about-section {
  min-height: calc(100svh - var(--nav-h));
    /* let it grow if content is taller */
    display: flex;
    align-items: center;     /* vertical center */
    padding-block: 3rem;     /* gentler vertical padding */
    background: #fff;
    overflow: hidden;        /* hide any bleed */
}

.about-image-grid {
  position: relative;
}

.about-section > .container{
  width: 100%;
}

.about-image-card {
  background: var(--color-neutral-light);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 2px solid var(--color-neutral);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.about-image-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
}

.about-image-card i {
  font-size: 3rem;
}

.stat-item {
  padding: 1rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section{
  min-height: calc(100svh - var(--nav-h));  /* fills viewport under sticky nav */
  display: flex;
  align-items: center;
  background: var(--color-neutral-light);
  padding-block: 4rem;
  overflow: hidden;
}

.gallery-card{
  display: block;
  position: relative;
  border: 2px solid var(--color-neutral);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  aspect-ratio: 1 / 1;              /* square tiles */
}

.gallery-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

/* Gold glow + zoom on hover */
.gallery-card:hover{
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(245,158,11,.25);
  transform: translateY(-4px);
}
.gallery-card:hover .gallery-img{ transform: scale(1.06); }

/* Optional: subtle gold overlay on hover */
.gallery-card::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(ellipse at center, rgba(245,158,11,.10), transparent 60%);
  opacity: 0; transition: opacity .25s ease;
}
.gallery-card:hover::after{ opacity: 1; }

/* Lightbox modal frame */
#lightboxModal .modal-content{
  border: 2px solid var(--color-accent);
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(245,158,11,.35);
}
#lightboxModal img{
  display:block;
  max-height: 80vh;
  object-fit: contain;
  margin: 0 auto;
}

/* Responsive tweak to keep spacing comfy on smaller screens */
@media (max-width: 991px){
  .gallery-section{ padding-block: 3rem; }
}


/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.contact-item i {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 3px solid var(--color-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-label {
  color: var(--color-text);
}

/*.form-control-gold {
  border: 2px solid var(--color-neutral);
  padding: 0.75rem;
  transition: all 0.3s ease;
}*/

.form-control-gold {
  background: var(--color-neutral-light);
  border-radius: 10px; /* slightly softer rounded corners */
}

.form-control-gold:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.4);
}

#contactForm .mb-3 {
  margin-bottom: 1.4rem !important;
}

.btn-gold:focus {
  box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.4);
}

.contact-item:hover i {
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
  transform: scale(1.1);
  transition: all 0.2s ease;
}

/*.form-control-gold:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}*/

/* Footer */
.footer {
  background: var(--color-neutral-dark);
  color: white;
  padding: 2rem 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  justify-content: flex-end;
}

.social-link {
  width: 45px;
  height: 45px;
  background: transparent;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--color-accent);
  color: var(--color-neutral-dark);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {

  :root{ --nav-h: 60px;}

  .about-section{padding-block: 2rem};

  .hero-section {
    padding: 4rem 0;
    background: url("images/gamesLeft.jpg") center center/cover no-repeat;
  }

  .hours-section,
  .features-section,
  .contact-section {
    padding: 4rem 0;
  }

  .hours-card {
    padding: 2rem;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .display-3 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }
   .navbar-logo {
    height: 32px;      /* slightly smaller on tablets/phones */
  }
}

@media (max-width: 480px) {
  .navbar-logo {
    height: 28px;      /* compact for narrow screens */
  }
}

