/* Mobile First Responsive Design */

/* Base styles are mobile-first (already in main.css) */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section h1 {
    font-size: 2.8rem;
  }
  
  .services-card {
    padding: 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 3.2rem;
  }
  
  .hero-section {
    padding: 6rem 0;
  }
  
  section {
    padding: 5rem 0;
  }
  
  .price-card.featured {
    transform: scale(1.08);
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
  
  .contact-form {
    padding: 4rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 3.5rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1.5rem;
  }
  
  .services-card {
    padding: 3rem 2rem;
  }
  
  .price-card {
    padding: 3rem 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 4rem;
  }
  
  .container {
    max-width: 1140px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Mobile specific adjustments */
@media (max-width: 767.98px) {
  /* No animations on mobile per requirements */
  .card:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .blog-card:hover {
    transform: none;
  }
  
  /* Mobile typography */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Mobile spacing */
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 3rem 0;
  }
  
  /* Mobile cards */
  .services-card,
  .price-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
    transform: none;
    border: 2px solid var(--primary-coral);
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  /* Mobile gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Mobile process/timeline */
  .process-item,
  .timeline-item {
    padding-left: 2.5rem;
  }
  
  .process-item::before,
  .timeline-item::before {
    width: 25px;
    height: 25px;
    font-size: 0.75rem;
  }
  
  /* Mobile footer */
  footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  footer .row > div {
    margin-bottom: 2rem;
  }
}

/* Portrait orientation specific */
@media (orientation: portrait) and (max-width: 767.98px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-section .row {
    flex-direction: column-reverse;
  }
  
  .hero-section .col-md-6:first-child {
    margin-top: 2rem;
  }
}

/* Landscape orientation on mobile */
@media (orientation: landscape) and (max-height: 500px) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  section {
    padding: 2rem 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gallery-item::after {
    font-size: 1.8rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: black;
    background: white;
  }
  
  .card {
    border: 1px solid #efe1de;
    box-shadow: none;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
} 

.hero-content {
    padding-top: 175px;
}