/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-title .business-name {
        font-size: 4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .content-section {
        padding: 60px 0;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Header Mobile */
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        gap: 20px;
    }
    
    .main-navigation.mobile-menu-open {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-content {
        position: relative;
    }
    
    /* Hero Mobile */
    .hero-section {
        background-attachment: scroll;
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .welcome-text {
        font-size: 1.8rem;
    }
    
    .hero-title .business-name {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    /* Social Icons Mobile */
    .social-icons {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Content Mobile */
    .content-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
    }
    
    .contact-info li {
        flex-wrap: wrap;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .welcome-text {
        font-size: 1.5rem;
    }
    
    .hero-title .business-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* High Resolution Displays */
@media (min-width: 1400px) {
    .container,
    .header-content,
    .content-section {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-title .business-name {
        font-size: 6rem;
    }
}

/* Print Styles */
@media print {
    .social-icons,
    .mobile-menu-toggle,
    .cta-button {
        display: none;
    }
    
    .hero-section {
        height: auto;
        background: none;
        color: black;
        padding: 20px 0;
    }
    
    .header-container {
        box-shadow: none;
        border-bottom: 1px solid #ccc;
    }
    
    .site-footer {
        display: none;
    }
}