/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=Montserrat:wght@900&display=swap');

/* Color Variables */
:root {
  --primary: #008a45; /* Logo Green */
  --primary-hover: #006e37;
  --primary-light: #e6f4ea;
  --secondary: #111827; /* Slate 900 */
  --secondary-hover: #1f2937;
  --bg-base: #f9fafb; /* Slate 50 */
  --bg-card: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.85);
  --border: #e5e7eb; /* Slate 200 */
  --text-main: #374151; /* Slate 700 */
  --text-title: #111827; /* Slate 900 */
  --text-muted: #6b7280; /* Slate 500 */
  --text-light: #ffffff;
  
  --whatsapp: #25d366;
  --whatsapp-hover: #128c7e;

  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 10px 25px -5px rgba(0, 138, 69, 0.15);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-title);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-nav);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.announcement-bar {
  background-color: var(--primary);
  color: var(--text-light);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  max-height: 40px;
  opacity: 1;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.3px;
}

.announcement-bar .badge {
  background-color: var(--secondary);
  color: var(--text-light);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

header.scrolled .announcement-bar {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 5px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  line-height: 1;
}

.logo-top {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.logo-geek {
  color: var(--primary);
}

.logo-culture {
  color: var(--secondary);
}

.logo-bottom {
  font-size: 8px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 3px;
  padding-left: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-main);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-title);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-title);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(0, 138, 69, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(0, 138, 69, 0.03) 0%, transparent 40%);
  background-image: url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(249, 250, 251, 0.85); /* Smooth backing for text readability */
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-tag {
  align-self: center;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0, 138, 69, 0.15);
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-main);
  max-width: 700px;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 8px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-title);
}

.hero-bullets li i {
  color: var(--primary);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Section Header */
.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
}

/* TCG Brands Grid */
.tcg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tcg-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tcg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.tcg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: rgba(0, 138, 69, 0.2);
}

.tcg-card:hover::before {
  opacity: 1;
}

.tcg-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tcg-logo-wrapper {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: transparent;
}

.tcg-brand-logo {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
  transition: var(--transition);
}

.tcg-card:hover .tcg-brand-logo {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.08));
}

.tcg-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.badge-active {
  background-color: #d1fae5;
  color: #065f46;
}

.badge-soon {
  background-color: #fef3c7;
  color: #92400e;
}

.tcg-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tcg-info h3 {
  font-size: 20px;
  font-weight: 700;
}

.tcg-publisher {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tcg-desc {
  font-size: 14px;
  color: var(--text-main);
  flex-grow: 1;
}

/* Accessories Section */
.accessory-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.accessory-card {
  background-color: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.accessory-card:hover {
  background-color: var(--bg-card);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.acc-logo-wrapper {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  margin-bottom: 4px;
}

.acc-brand-logo {
  max-height: 48px;
  max-width: 150px;
  object-fit: contain;
  transition: var(--transition);
}

.accessory-card:hover .acc-brand-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.accessory-card h4 {
  font-size: 18px;
  font-weight: 700;
}

.accessory-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 138, 69, 0.2);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-main);
}

/* Call to Action Banner */
.cta-banner {
  background: radial-gradient(circle at 10% 20%, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.cta-title {
  color: var(--text-light);
  font-size: 40px;
  font-weight: 800;
}

.cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.cta-banner .btn-whatsapp {
  background-color: var(--text-light);
  color: var(--primary);
  font-size: 16px;
  padding: 16px 36px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-banner .btn-whatsapp:hover {
  background-color: #f3f4f6;
  color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Footer styling */
footer {
  background-color: var(--secondary);
  color: #9ca3af;
  padding: 60px 20px 20px 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand img {
  height: 100px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1); /* makes the logo white for dark footer */
}

.footer-brand p {
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-contact a {
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--text-light);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 16px;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-bullets {
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    height: 350px;
  }
  .card-stack {
    width: 230px;
    height: 320px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100%);
    overflow-y: auto;
    background-color: var(--bg-card);
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
