/* ========================================
   LAYOUT SECTIONS - HERO & FOOTER
   ======================================== */

/* Hero Section Styles */
.hero-section {
  padding: 2rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-section h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-section p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.hero-section p:last-child {
  font-size: 1rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Footer Styles */
.site-footer {
  position: fixed;
  bottom: -1.5rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  z-index: 1000;
  font-size: 0.8rem;
  line-height: 1.4;
}

.site-footer a {
  color: var(--color-link);
  text-decoration: none;
}

/* Mobile footer improvements */
@media (max-width: 700px) {
  .site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(15, 14, 14, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    z-index: 2000;
  }
  
  .site-footer p {
    margin: 0;
    line-height: 1.3;
  }
  
  /* Ensure footer doesn't conflict with social links */
  .frame__tags {
    bottom: 3rem !important;
  }
}