/* ===================================
   Responsive Styles
   =================================== */

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .image-wrapper {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amanda-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-image {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile Styles (320px - 768px) */
@media screen and (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-large);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link.btn-book {
        margin: 15px 20px 0;
        width: calc(100% - 40px);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Section */
    .hero {
        height: calc(100vh - 70px);
        min-height: 500px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
    
    /* Services */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* About Preview */
    .about-preview {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-slide {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    /* Instagram Feed */
    .instagram-feed {
        padding: 60px 0;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    /* Footer */
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hours-list li {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Floating Book Button */
    .floating-book-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-book-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Small Mobile (320px - 480px) */
@media screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

/* Landscape Mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: calc(100vh - 60px);
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-scroll {
        display: none;
    }
}

/* Large Desktop (1440px+) */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    
    .nav-container {
        max-width: 1320px;
    }
    
    .services-grid {
        gap: 40px;
    }
    
    .about-grid {
        gap: 80px;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .floating-book-btn,
    .hero-scroll,
    .nav-toggle,
    .instagram-feed,
    .cta-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        margin-top: 0;
        page-break-after: always;
    }
    
    .services,
    .about-preview,
    .testimonials {
        page-break-inside: avoid;
    }
}