/* Main layout */
.page-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  scroll-snap-type: y mandatory;
  overflow: hidden; /* TEMPORARY: Disable scrolling - remove this line or change to 'overflow-y: auto' to restore scrolling */
  background-color: #0a0a0a;
}

/* Section styles */
section {
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background-color: #0a0a0a;
}

/* Hero section */
.hero-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background-color: #000000;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.hero-content h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0.8;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  opacity: 0.6;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Social links */
.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: none;
}

.social-links a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.3s ease;
  z-index: -1;
}

.social-links a:hover:before {
  width: 100%;
}

/* Special styling for Request Agent button */
.request-agent {
  background: linear-gradient(135deg, rgba(40, 120, 255, 0.2), rgba(30, 80, 170, 0.1));
  border-color: rgba(100, 180, 255, 0.3) !important;
  box-shadow: 0 0 15px rgba(40, 120, 255, 0.2);
  position: relative;
}

.request-agent:after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(100, 180, 255, 0.3), rgba(40, 120, 255, 0));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.request-agent:hover {
  box-shadow: 0 0 20px rgba(40, 120, 255, 0.4);
}

.request-agent:hover:after {
  opacity: 1;
}

/* Footer section with sphere */
.footer-section {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #0a0a0a;
}

/* Box container */
.box-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #0a0a0a;
}

/* Image optimization for future images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Copyright notice */
.copyright {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 12px;
  font-weight: 300;
  color: #888;
  opacity: 0.8;
  z-index: 10;
}

/* Responsive media queries */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-links a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .footer-section {
    height: 180px;
  }
  
  .copyright {
    bottom: 10px;
    right: 15px;
    font-size: 10px;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1rem;
  }
  
  .hero-content p {
    font-size: 0.8rem;
  }
  
  .social-links {
    flex-direction: column;
    gap: 0.8rem;
    width: 80%;
    margin: 0 auto;
  }
  
  .social-links a {
    width: 100%;
    text-align: center;
  }
  
  .footer-section {
    height: 150px;
  }
}

/* Extra small devices */
@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content h2 {
    font-size: 0.9rem;
  }
}