/* Responsive Styles for Photography Retreat Website */
/* Mobile-first approach with Bootstrap 5 breakpoints */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-content {
    text-align: left;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
  }
  
  .price-card:hover {
    transform: scale(1.05);
  }
  
  .gallery-item img:hover {
    transform: scale(1.05);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  :root {
    --font-size-hero: 2.25rem;
    --font-size-h1: 1.875rem;
    --section-padding: 4rem 0;
  }
  
  .hero-title {
    font-size: var(--font-size-hero);
    padding-top: 100px;
}
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .contact-form,
  .contact-info {
    padding: 2.5rem;
  }
  
  .price-card {
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .process-step {
    padding: 1.5rem 0.5rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  :root {
    --font-size-hero: 2rem;
    --font-size-h1: 1.75rem;
    --font-size-h2: 1.375rem;
    --section-padding: 3rem 0;
  }
  
  .hero-title {
    font-size: var(--font-size-hero);
    text-align: center;
    padding-top: 100px;
}
  
  .hero-subtitle,
  .hero-desc {
    text-align: center;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .about-feature {
    padding: 1.5rem 1rem;
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
  }
  
  .contact-form,
  .contact-info {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .price-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .price-card .price {
    font-size: 2rem;
  }
  
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  .process-step {
    padding: 1.5rem 0.5rem;
  }
  
  .blog-card-body {
    padding: 1.25rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  :root {
    --font-size-hero: 1.75rem;
    --font-size-h1: 1.5rem;
    --font-size-h2: 1.25rem;
    --font-size-h3: 1.125rem;
    --section-padding: 2.5rem 0;
    --element-margin: 1.5rem;
  }
  
  /* NO ANIMATIONS ON MOBILE - Strict requirement */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Hero adjustments */
  #hero {
    min-height: 80vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: var(--font-size-hero);
    margin-bottom: 1rem;
    padding-top: 100px;
}
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  /* Section spacing */
  .section {
    padding: var(--section-padding);
  }
  
  /* Cards and components */
  .service-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .service-card img {
    height: 150px;
    margin-bottom: 1rem;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  .about-feature {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .about-feature i {
    font-size: 2rem;
  }
  
  .feature-item {
    padding: 1.5rem 1rem;
  }
  
  .feature-item i {
    font-size: 2.5rem;
  }
  
  /* Team section mobile */
  .team-member {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .team-member img {
    width: 80px;
    height: 80px;
  }
  
  /* Price cards mobile */
  .price-card {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }
  
  .price-card .price {
    font-size: 1.75rem;
    margin: 1rem 0;
  }
  
  .price-features {
    margin: 1.5rem 0;
  }
  
  .price-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-info {
    padding: 2rem 1.5rem;
  }
  
  .contact-info-item {
    margin-bottom: 1rem;
  }
  
  .contact-info-item i {
    font-size: 1.25rem;
  }
  
  /* Review cards mobile */
  .review-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .review-text {
    font-size: 0.9rem;
  }
  
  /* Case study mobile */
  .case-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Process section mobile */
  .process-step {
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
  }
  
  .process-step::before {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    top: -5px;
  }
  
  /* Timeline mobile */
  .timeline-item {
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .timeline-item::before {
    width: 12px;
    height: 12px;
    left: -6px;
  }
  
  /* Career section mobile */
  .career-item {
    padding: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  /* Core info mobile */
  .coreinfo-item {
    padding: 1.5rem 0.5rem;
  }
  
  .coreinfo-item i {
    font-size: 2rem;
  }
  
  /* Blog cards mobile */
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .blog-card img {
    height: 160px;
  }
  
  .blog-card-body {
    padding: 1rem;
  }
  
  /* FAQ mobile */
  .faq-item {
    padding: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .faq-question {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
  
  /* Gallery mobile */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Footer mobile */
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-contact-item {
    margin-bottom: 0.5rem;
  }
  
  .footer-contact-item i {
    margin-right: 0.5rem;
    width: 18px;
  }
  
  /* Navigation mobile */
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    text-align: center;
  }
  
  /* Button adjustments mobile */
  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Form controls mobile */
  .form-control {
    padding: 0.625rem 0.75rem;
    font-size: 0.9rem;
  }
  
  /* Text adjustments */
  .text-center-mobile {
    text-align: center;
  }
  
  /* Spacing utilities mobile */
  .mb-mobile-2 {
    margin-bottom: 1rem;
  }
  
  .p-mobile-3 {
    padding: 1.5rem;
  }
}

/* Ultra small devices (phones in portrait, less than 375px) */
@media (max-width: 374.98px) {
  :root {
    --font-size-hero: 1.5rem;
    --font-size-h1: 1.375rem;
    --font-size-h2: 1.125rem;
    --section-padding: 2rem 0;
  }
  
  .hero-title {
    font-size: var(--font-size-hero);
    padding-top: 100px;
}
  
  .service-card,
  .contact-form,
  .contact-info {
    padding: 1.25rem;
  }
  
  .price-card {
    padding: 1.5rem 0.75rem;
  }
  
  .team-member img {
    width: 70px;
    height: 70px;
  }
  
  .process-step::before {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }
  
  .about-feature i,
  .feature-item i,
  .coreinfo-item i {
    font-size: 1.75rem;
  }
}

/* Landscape phone adjustments */
@media (max-width: 767.98px) and (orientation: landscape) {
  #hero {
    min-height: 70vh;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.5rem;
    padding-top: 100px;
}
}

/* Print styles */
@media print {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .navbar,
  .btn,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-light: #666666;
  }
  
  .service-card,
  .price-card,
  .review-card,
  .blog-card,
  .faq-item {
    border: 2px solid #333;
  }
  
  .btn-primary {
    background-color: #000;
    border-color: #000;
  }
  
  .btn-outline-primary {
    color: #000;
    border-color: #000;
  }
}

/* Dark mode support (if needed) */