/*
====================================
 GLOBAL STYLES
====================================
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1a1f1c;
  font-family: 'Inter', sans-serif;
  color: #f4f4f4;
  line-height: 1.7;
  font-size: 16px;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 30px 0;
}


/*
====================================
 HERO SECTION
====================================
*/
.hero {
  background-image: url("images/cardpic2b.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}


.hero-text {
  margin-top: 20px;
  text-align: center;
  color: #f4f4f4;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.hero .btn {
  background-color: #f4f4f4;
  color: #1a1f1c;
  padding: 14px 30px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid #1a1f1c;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background-color: #ffd700;
  color: #000;
}


/*
====================================
 TOP BANNER
====================================
.top-banner {
  background-color: #1a1f1c;
  color: #f4f4f4;
  text-align: center;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 1001;
}



/*
====================================
 CARD GAME LAUNCH BANNER
====================================
*/
.card-launch-banner {
  background-color: #222;
  color: #f4f4f4;
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}
.card-launch-banner .launch-content {
  max-width: 800px;
  margin: 0 auto;
}

.card-launch-banner h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #f4f4f4; /* Updated */
}

.card-launch-banner p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f4f4f4; /* Updated */
}

.card-launch-banner form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

card-launch-banner input[type="email"] {
  padding: 12px;
  flex: 1;
  min-width: 250px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #2a2a2a;
  color: #f4f4f4;
  outline: none;
}

.card-launch-banner button {
  padding: 12px 24px;
  background-color: #f4f4f4;
  color: #1a1f1c;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease-in-out;
}

.card-launch-banner button:hover {
  background-color: #e0e0e0;
}


/*
====================================
 NAVIGATION (MOBILE + DESKTOP)
====================================
*/
.navbar {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
  z-index: 10;
  transition: top 0.3s;
}

.navbar-container, .desktop-navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px;
}

.logo-img {
  max-height: 48px;
  height: auto;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-icons .icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.nav-icons .icon:hover {
  color: #ffea8a; /* soft yellow hover */
  transition: color 0.2s ease-in-out;
}

.desktop-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.desktop-nav-links a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.2s ease;
}

.desktop-nav-links a:hover {
  color: #ffd700;
}


@media (max-width: 768px) {
  .desktop-nav-links,
  .desktop-navbar {
    display: none;
  }
}

@media (min-width: 769px) {
  .hamburger,
  .close-btn,
  .nav-links {
    display: none;
  }
}

/*
====================================
 PRODUCT SECTIONS
====================================
*/
.product-wrapper {
  background-color: #161d19;
  color: #ffd700;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);

}

.product-section-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.product-section {
  margin-bottom: 40px;
}

.products {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.product-card {
  background-color: #fff;
  color: black;
  border-radius: 6px;
  padding: 20px;
  width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15); /* yellow glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 350px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card img {
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.product-card h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 15px 0 5px;
  text-align: center;
  white-space: nowrap;
}

.product-card p {
  font-size: 1rem;
  margin: 10px 0 20px;
  color: #333;
}

.hat-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.hat-img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.product-btn {
  padding: 12px 24px;
  font-weight: bold;
  background-color: #ffd700;       /* LOTD yellow */
  color: #000;                      /* Black text for contrast */
  text-decoration: none;
  border: 2px solid #ffd700;       /* Matches the background */
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}


.product-btn:hover {
  background-color: #000;
  color: #ffd700;
  border-color: #000;
}


/*
====================================
 FOOTER + LINKS
====================================
*/
.info-links {
  text-align: center;
  margin-top: 40px;
}

.info-links a {
  color: #ffd700; /* LOTD Yellow */
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}

.info-links a:hover {
  color: white;
  text-decoration: underline;
}

.footer-text {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #ccc; /* Lighter gray for contrast on black */
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  line-height: 1.6;
  color: #111;
}

.top-banner {
  background-color: white;
  color: #111; /* dark gray-black for softer contrast than pure black */
  text-align: center;
  padding: 15px 10px;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #ddd; /* optional: adds separation from hero */
}


.about-video {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.about-video iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border-radius: 10px;
}

.about-video {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-video iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border-radius: 10px;
}

.video-caption {
  margin-top: 12px;
  font-style: italic;
  text-align: center;
  color: #333;
}

/* === MOBILE DRAWER === */
.hamburger {
  font-size: 28px;
  color: black
  cursor: pointer;
  z-index: 1002;
  transition: color 0.3s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: #000; /* true black for clean contrast */
  color: #ffd700;          /* same yellow as desktop nav links */
  transition: right 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: flex-end;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.drawer-links {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.drawer-links a:hover {
  color: #aaa;
  font-weight: bold;
}
