/* ==========================================================================
   VROOR DECOR - RESPONSIVE STYLESHEET
   ========================================================================== */

/* Laptop & Medium Screens (1200px and below) */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .bento-col-8 { grid-column: span 12; }
  .bento-col-4 { grid-column: span 12; }
  .bento-col-6 { grid-column: span 12; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Tablet Screens (992px and below) */
@media (max-width: 992px) {
  .nav-menu, .header-actions .btn-vroor {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  
  .section-padding {
    padding: 60px 0;
  }

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

  .hero-section {
    height: calc(85vh - 70px);
  }
  
  .hero-title {
    font-size: 2.6rem;
  }

  .showroom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  .brand-logo .logo-text {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.1rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-vroor {
    width: 100%;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card {
    min-height: 280px;
  }

  .showroom-highlights {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .modal-content {
    padding: 24px;
    width: 95%;
  }
}
