/* Responsive Styles for Luxury Decor Auction Platform */

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Standard Desktops (992px - 1199px) */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .price-plan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: var(--spacing-md) 0;
  }
  
  /* Header & Navigation */
  .navbar-nav {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .navbar-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .nav-item {
    margin: 10px 0;
  }
  
  /* Hero Section */
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-bottom: var(--spacing-md);
  }
  
  /* Services Section */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  /* Features Section */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  /* Price Plan Section */
  .price-plan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  /* Team Section */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  /* Core Info Section */
  .core-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  /* Contact Section */
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    margin-top: var(--spacing-md);
  }
  
  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }
  
  .footer-info, .footer-contact {
    grid-column: span 2;
    margin-bottom: var(--spacing-md);
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section {
    padding: var(--spacing-sm) 0;
  }
  
  /* Hero Section */
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  /* Services Section */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  /* Price Plan Section */
  .price-plan-grid {
    grid-template-columns: 1fr;
  }
  
  /* Team Section */
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  /* Core Info Section */
  .core-info-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-info, .footer-contact, .footer-links {
    grid-column: span 1;
    margin-bottom: var(--spacing-md);
  }
}

/* Small Phones (Up to 575px) */
@media (max-width: 575px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
  
  /* Hero Section */
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-desc {
    display: none;
  }
  
  /* About Section */
  .about-image img {
    box-shadow: 15px 15px 0px -7px var(--accent-color);
  }
  
  /* Services Section */
  .service-item {
    padding: var(--spacing-sm);
  }
  
  /* Reviews Section */
  .review-text {
    font-size: 1rem;
  }
  
  .review-text:before,
  .review-text:after {
    font-size: 3rem;
  }
  
  /* Contact Section */
  .contact-form {
    padding: var(--spacing-sm);
  }
  
  .form-control {
    padding: 10px;
  }
  
  /* Footer */
  .footer {
    padding-top: var(--spacing-md);
  }
} 