/* Reusable Component Styles */

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px; /* Pill shape */
  font-family: var(--font-sans);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

/* --- NAVIGATION HEADER --- */
.nav-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--accent-gold);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.nav-logo h1 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.nav-logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-primary);
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
}

/* Hamburger Menu Logic */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--accent-gold);
  transition: 0.3s;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: var(--header-height);
    right: -100%;
    flex-direction: column;
    background-color: var(--bg-secondary);
    width: 60%;
    height: calc(100vh - var(--header-height));
    padding: 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--accent-gold);
  }
  .nav-links.active {
    right: 0;
  }
}

/* --- HERO SECTION --- */
.hero-section {
  height: 100vh;
  margin-top: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--bg-secondary);
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 2px solid var(--accent-gold);
}

/* Add a dark overlay to hero to make text readable */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- TRUST BANNER --- */
.trust-banner {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  padding: 1.5rem;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- CARDS (Pricing/Services) --- */
.card {
  background-color: var(--bg-secondary);
  border: 1px solid #333;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.card h3 {
  color: var(--accent-gold);
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.card .price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.card ul {
  list-style: none;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.card ul li {
  margin-bottom: 0.5rem;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--bg-secondary);
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- LITE YOUTUBE EMBED --- */
.lite-youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 1px solid #333;
}
.lite-youtube::before {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.9;
  transition: opacity 0.3s;
  z-index: 2;
}
.lite-youtube:hover::before {
  opacity: 1;
  color: #fff;
}
.lite-youtube iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
