/* ===== HOME PAGE STYLES ===== */
.home-content {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: var(--primary);
  z-index: 0;
}

.home-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

/* ===== HOMEPAGE NAVIGATION ===== */
.home-nav-container {
  position: absolute;
  top: 40%;
  left: 75%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 3;
  margin-top: 4rem;
  padding: 20px;
  background-color: rgba(var(--light-rgb), 0.6);
  border: 1px solid rgba(var(--text-rgb), 0.5);
  border-radius: 8px;
  text-align: center;
  max-width: 300px;
  width: 90%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Navigation button styling */
.home-nav-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  margin: 10px 0;
  font-family: 'Sniglet', cursive;
  font-size: 1rem;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--text);
  border-radius: 6px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.home-nav-button:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(var(--text-rgb), 0.2);
}

/* ===== Call-to-Action Button ===== */
.home-call-to-action-container {
  position: relative;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  width: 100%;
  margin-top: 50px;
}

.home-call-to-action-button {
  padding: 12px 24px;
  background: var(--light);
  border: 2px solid var(--text);
  color: var(--text);
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-call-to-action-button:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(var(--text-rgb), 0.2);
}

/* Social media icons container */
.home-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 1rem;
}

.home-social-icon {
  width: 24px;
  height: 24px;
  fill: var(--text);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 2px 4px rgba(var(--dark-rgb), 0.1));
}

.home-social-icon:hover {
  transform: scale(1.2);
  fill: var(--dark);
  filter: drop-shadow(0 4px 8px rgba(var(--text-rgb), 0.2));
  animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1.2); }
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {
  .home-content {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .home-nav-container {
    display: none;
  }
}

/* ===== ACCESSIBILITY ===== */
.home-nav-button:focus,
.home-call-to-action-button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
 }
}