/* Landing Page Specific Styles */
.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 24px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.version-badge {
  background-color: rgba(212, 168, 67, 0.2);
  color: #f3d484;
  border: 1px solid rgba(212, 168, 67, 0.4);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  opacity: 1;
  color: var(--brand-accent);
}

.nav-actions .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: white;
}

.nav-actions .btn-outline:hover {
  background-color: white;
  color: var(--text-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #1a1410;
}

/* Force-cover any top-edge artifacts or subpixel body bleed */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #1a1410; /* Dark wood/black color */
  z-index: 9999;
}

.hero-background {
  position: absolute;
  top: -15px; 
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px); 
  background-color: #1a1410;
  background-image: url('/new_hero_page.png');
  background-size: 96%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  animation: blur-in 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes blur-in {
  0% { backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); }
  100% { backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.4); }
  50% { box-shadow: 0 0 20px 0 rgba(212, 168, 67, 0.6); }
}

/* Since the user has hero_page.png, we can set it via inline style or CSS if it is moved to public */
/* We will just use the gradient as a fallback, but the image should be in /public/hero_page.png */

.premium-cta-btn {
  position: absolute;
  top: 57.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
  padding: 14px 36px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: cta-pulse 2.5s infinite;
  text-align: center;
  white-space: nowrap;
}

.premium-cta-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(1.05);
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.1); }
  50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.2); }
}

.hero-text-group {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
}

.hero-main-title {
  color: white;
  font-family: var(--font-display, "Times New Roman", serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-sub-title {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans, sans-serif);
  font-size: clamp(0.7rem, 1vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 1.5px;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 100px;
  height: 100vh;
}

.glass-panel {
  background: rgba(38, 31, 24, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 213, 187, 0.15);
  border-radius: var(--radius-lg);
  padding: 56px;
  max-width: 650px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  color: white;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-cta-group .btn {
  font-size: 1.05rem;
  padding: 14px 32px;
}

.landing-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 24px;
  text-align: center;
  z-index: 10;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .glass-panel {
    padding: 32px 24px;
    margin: 0 16px;
    background: rgba(38, 31, 24, 0.75);
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
}
