/* Responsive Styles */

@media (max-width: 992px) {
   .site-nav {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 50px;
  }

  .hero-image {
    max-width: 80%;
  }
}
.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: rgba(13, 12, 29, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    gap: 15px;
  }

  .site-nav .cta-button {
    text-align: center;
    margin-top: 10px;
  }

  .site-nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-headline {
    font-size: 42px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero-headline {
    font-size: 36px;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .hero-cta a {
    margin-right: 0;
  }

  .section-title {
    font-size: 32px;
  }

  .gallery-item {
    width: 250px;
    height: 350px;
  }
}
