/* 
 * Brandrise Creatives Website Responsive Styles (Redesign)
 * Author: Brandrise Creatives
 * Version: 2.0
 */

/* Large Devices (Desktops) */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

/* Medium Devices (Tablets) */
@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/* Small Devices (Landscape Phones) */
@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .btn {
    width: 100%;
  }

  .nav-list {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .footer-info {
    flex-direction: column;
    align-items: center;
  }
}

/* Extra Small Devices (Portrait Phones) */
@media screen and (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: var(--spacing-md);
  }

  .footer-nav-list,
  .footer-social {
    justify-content: center;
  }
}