/* ================================
   LAYOUT STYLES
   ================================ */

/* Hero Section - Compact Typography Focus */
.hero {
  background-color: var(--bg-primary);
  padding: 2.5rem 0 0.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.08;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border: 1px solid var(--accent-green);
  border-radius: 50%;
  opacity: 0.04;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 0 1.5rem;
  line-height: 1.2;
}

.hero-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--gold));
  transform: translateY(-50%);
}

.hero-title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-green));
  transform: translateY(-50%);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  opacity: 0.9;
  position: relative;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 0.5rem;
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

/* Section Styles */
.section {
  padding: 1rem 0;
  background-color: var(--bg-primary);
}

/* Footer - Increased space from buttons */
.footer {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  padding: 1.5rem 0 0 0;
  margin-top: 3rem;
  border-top: 0px solid #E0E0E0;
  text-align: center;
}

.footer-content {
  display: none;
}

.footer-bottom {
  padding: 0;
  margin: 0;
  color: var(--text-primary);
  opacity: 0.7;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
  padding: 0;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-title::before,
  .hero-title::after {
    width: 60px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-title::before,
  .hero-title::after {
    width: 70px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 1.5rem 0 0.3rem 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
    padding: 0 1rem;
    margin-bottom: 0.6rem;
  }
  
  .hero-title::before,
  .hero-title::after {
    width: 35px;
    height: 2px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0.8rem 0.3rem;
    margin-bottom: 1rem;
  }
  
  .section {
    padding: 0.8rem 0;
  }
  
  .footer {
    margin-top: 2rem;
  }
}

#visitor-counter {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 9999;

 
}
