/* ===========================================
   Personal Brand Photography Retreats - Responsive CSS
   Mobile-First Responsive Design
   =========================================== */

/* Mobile First - Base Styles (Mobile) */
@media (max-width: 575.98px) {
    /* Conservative Mobile Typography */
    h1, .h1 {
        font-size: 1.75rem;
    }
    
    h2, .h2 {
        font-size: 1.5rem;
    }
    
    h3, .h3 {
        font-size: 1.375rem;
    }
    
    h4, .h4 {
        font-size: 1.25rem;
    }
    
    /* Mobile Navbar */
    .navbar-brand {
        font-size: 1.125rem;
    }
    
    /* Mobile Hero Section */
    #hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-shapes {
        display: none; /* Hide decorative shapes on mobile */
    }
    
    /* Mobile Section Padding */
    section {
        padding: 3rem 0;
    }
    
    /* Mobile Card Spacing */
    .card {
        margin-bottom: 1.5rem;
    }
    
    /* Mobile Button Sizing */
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Mobile Contact Info */
    .contact-info {
        margin-top: 2rem;
        text-align: center;
    }
    
    /* Mobile Gallery */
    #gallery .col-md-4 {
        margin-bottom: 0.5rem;
    }
    
    /* Mobile Process Numbers */
    .process-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem;
    }
    
    /* Disable ALL animations on mobile */
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .card:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    #gallery img:hover {
        transform: none !important;
    }
    
    /* Mobile Footer */
    footer .row > div {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    footer .text-end {
        text-align: center !important;
    }
}

/* Small Devices - Landscape Phones */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Hero Section */
    #hero {
        min-height: 85vh;
    }
    
    /* Section Padding */
    section {
        padding: 4rem 0;
    }
    
    /* Card Grid Adjustments */
    .card {
        margin-bottom: 1.5rem;
    }
    
    /* Disable animations on landscape mobile */
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Medium Devices - Tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Hero Section */
    #hero {
        min-height: 90vh;
    }
    
    /* Section Padding */
    section {
        padding: 4.5rem 0;
    }
    
    /* Tablet Typography */
    h1, .h1 {
        font-size: 1.875rem;
    }
    
    /* Enable limited animations on tablets */
    .card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Large Devices - Desktops */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Full Hero Height */
    #hero {
        min-height: 100vh;
    }
    
    /* Standard Section Padding */
    section {
        padding: 5rem 0;
    }
    
    /* Enable full animations */
    .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    #gallery img {
        transition: transform 0.3s ease;
    }
    
    #gallery img:hover {
        transform: scale(1.05);
    }
}

/* Extra Large Devices - Large Desktops */
@media (min-width: 1200px) {
    /* Enhanced Hero */
    #hero {
        min-height: 100vh;
    }
    
    /* Enhanced Section Padding */
    section {
        padding: 6rem 0;
    }
    
    /* Enhanced Typography for Large Screens */
    .lead {
        font-size: 1.25rem;
    }
    
    /* Enhanced Card Spacing */
    .card {
        margin-bottom: 2rem;
    }
    
    /* Enhanced Process Numbers */
    .process-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    /* Enhanced Decorative Shapes */
    .shape-1 {
        width: 120px;
        height: 120px;
    }
    
    .shape-2 {
        width: 180px;
        height: 180px;
    }
}

/* Landscape Orientation Adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    /* Reduce hero height in landscape mobile */
    #hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    /* Reduce section padding */
    section {
        padding: 2rem 0;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Ensure crisp images on retina displays */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    /* Hide navigation and footer */
    .navbar,
    footer {
        display: none !important;
    }
    
    /* Optimize spacing for print */
    section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
    
    /* Ensure dark text on white background */
    body {
        color: #000 !important;
        background: #fff !important;
    overflow-x: hidden;
}
    
    /* Hide decorative elements */
    .hero-shapes,
    .fas,
    .far {
        display: none !important;
    }
}

/* Focus Visible for Keyboard Navigation */
@media (prefers-reduced-motion: no-preference) {
    .btn:focus-visible,
    .form-control:focus-visible,
    .nav-link:focus-visible {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
    }
}

/* Reduced Motion Global Override */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Container Max Width Adjustments */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Gallery Responsive Grid */
@media (max-width: 767.98px) {
    #gallery .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #gallery .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Team Member Image Responsive Sizing */
@media (max-width: 575.98px) {
    .rounded-circle {
        width: 120px !important;
        height: 120px !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .rounded-circle {
        width: 140px !important;
        height: 140px !important;
    }
} 