/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
        --section-padding: 4rem 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero,
    .btn-elegant {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem 0;
    }
    
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 0%;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-base);
        box-shadow: var(--shadow-elegant);
    }
    
    .nav-menu.active {
        padding-top: 35px;
        justify-content: start;
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--foreground);
        font-size: 1.25rem;
        padding: 1rem 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .navbar .btn-booking {
        display: none;
    }
    
    /* Hero Mobile */
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn-hero,
    .btn-elegant {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
    }
    
    .hero-indicators {
        bottom: 1rem;
    }
    
    /* Sections Mobile */
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    /* About Mobile */
    .about-me-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .about-content {
        font-size: 1rem;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        min-height: 250px;
    }
    
    /* Social Banner Mobile */
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .social-subtitle {
        color: var(--primary);
        font-weight: bold;
        text-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }
    
    /* Reviews Mobile */
    .review-card {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .review-card blockquote {
        font-size: 1.1rem;
    }
    
    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Modal Mobile */
    .modal {
        padding: 0.5rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --container-padding: 0.75rem;
        --section-padding: 2.5rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo .logo {
        height: 2.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .about-me-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .modal-header,
    .booking-form {
        padding: 1rem;
    }
    
    .social-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Large Screens */
@media (min-width: 1440px) {
    :root {
        --container-padding: 2.5rem;
        --section-padding: 6rem 0;
    }
    
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: clamp(3rem, 6vw, 5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.25rem, 2vw, 1.75rem);
    }
    
    .section-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
    
    .contact-content {
        max-width: 1200px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo .logo,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .slide {
        transition: none;
    }
    
    .float {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Dark Mode Support 
@media (prefers-color-scheme: dark) {
    .navbar.scrolled {
        background: rgba(20, 20, 20, 0.95);
    }
}*/

/* Print Styles */
@media print {
    .navbar,
    .hero-indicators,
    .review-controls,
    .modal,
    .btn {
        display: none !important;
    }
    
    .hero {
        height: auto;
        page-break-after: always;
    }
    
    .hero-content {
        color: black !important;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .section-title {
        page-break-after: avoid;
    }
    
    .gallery-item,
    .review-card,
    .contact-content {
        page-break-inside: avoid;
    }
}