/* LUXURY CAR AUCTION SITE - RESPONSIVE STYLES */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-car-image {
        max-width: 45%;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-car-image {
        max-width: 40%;
    }
    
    .about-content,
    .contact-container {
        flex-direction: column;
    }
    
    .about-text,
    .about-images,
    .contact-form-container,
    .contact-info {
        flex: 0 0 100%;
    }
    
    .about-images {
        margin-top: var(--spacing-lg);
        order: -1;
    }
    
    .contact-info {
        margin-top: var(--spacing-lg);
        padding-left: 0;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-info,
    .footer-contact,
    .footer-policies {
        flex: 0 0 100%;
        margin-bottom: var(--spacing-lg);
    }
    
    .services-grid,
    .features-list,
    .priceplan-grid,
    .team-grid,
    .coreinfo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-car-image {
        display: none;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--color-secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px var(--spacing-md) var(--spacing-md);
        transition: right var(--transition-normal);
        z-index: 999;
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-menu li {
        margin: 0 0 var(--spacing-sm);
        width: 100%;
    }
    
    .navbar-menu a {
        display: block;
        padding: var(--spacing-xs) 0;
    }
    
    .navbar-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-list,
    .priceplan-grid,
    .team-grid,
    .coreinfo-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-accent {
        width: 50%;
        bottom: -10%;
        right: -5%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
} 