/* Responsive Styles */

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .hero h1 {
  padding-top: 50px !important;
    font-size: 3.62rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  

}

/* Large Devices (992px and up) */
@media (min-width: 992px) {
  .hero h1 {
  padding-top: 50px !important;
    font-size: 3.29rem;
  }
  
  .navbar-nav {
    margin-left: auto;
  }
  
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium Devices (768px and up) */
@media (min-width: 768px) {
  .hero {
    text-align: left;
  }
  
  .hero-content {
  padding-top: 50px !important;
    padding-right: 2rem;
  }
  
  .section-title {
    font-size: 2.85rem;
  }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial {
    padding: 3rem;
  }
  
  .card {
    padding: 2.5rem;
  }
}

/* Small Devices (576px and up) */
@media (min-width: 576px) {

  
  .hero h1 {
  padding-top: 50px !important;
    font-size: 2.95rem;
  }
  
  .section-title {
    font-size: 2.24rem;
  }
}

/* Extra Small Devices (less than 576px) */
@media (max-width: 575.98px) {
  .hero {
    min-height: 80vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero h1 {
  padding-top: 50px !important;
    font-size: 2.25rem;
    margin-bottom: 1.55rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.17rem;
  }
  
  .section-desc {
    font-size: 1.04rem;
    margin-bottom: 2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .card {
    padding: 1.5rem;
    margin-bottom: 1.67rem;
  }
  
  .card-title {
    font-size: 1.26rem;
  }
  
  .testimonial {
    padding: 1.5rem;
    margin-bottom: 1.56rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery img {
    height: 200px;
  }
  
  .faq-question,
  .faq-answer {
    padding: 1rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer .container {
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
  
  .price {
    font-size: 1.38rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .form-control {
    padding: 0.6rem;
    font-size: 1.00rem;
  }
  
  .navbar-brand {
    font-size: 1.38rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.4rem 0.8rem;
    margin: 0.2rem;
    font-size: 0.95rem;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) and (orientation: portrait) {
  .hero {
    min-height: 70vh;
  }
  
  .hero h1 {
  padding-top: 50px !important;
    font-size: 2.56rem;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) and (orientation: landscape) {
  .hero {
    min-height: 90vh;
  }
}

/* Navigation Mobile Menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    box-shadow: var(--box-shadow);
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    display: block;
    margin: 0.5rem 0;
    padding: 0.75rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .breadcrumb {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: white;
  }
  
  .hero h1 {
  padding-top: 50px !important;
    font-size: 24pt;
    color: black;
  }
  
  .section-title {
    font-size: 18pt;
    color: black;
  }
  
  .card {
    border: 1px solid #e2d1ce;
    box-shadow: none;
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
    height: auto !important;
  }
} 