/**
 * Sunrise Restorant Responsive Styles
 */

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

/* Medium Devices */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Devices */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .hero-section {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
} 