/* Leadership Development Template - Responsive CSS */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.84rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.57rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 1.86rem;
  }
  
  .service-card,
  .team-member,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .price-value {
    font-size: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.33rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .service-card img,
  .gallery-item img {
    height: 180px;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 90vh;
  }
  
  .hero-title {
    font-size: 2.57rem;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .service-card img,
  .gallery-item img {
    height: 200px;
  }
  
  .about-feature {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.86rem;
  }
  
  .service-card img {
    height: 220px;
  }
  
  .gallery-item img {
    height: 270px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.60rem;
  }
  
  .service-card img {
    height: 240px;
  }
  
  .gallery-item img {
    height: 300px;
  }
}

/* Landscape orientation adjustments */
@media screen and (orientation: landscape) and (max-height: 600px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.60rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-section::before {
    background-size: cover;
  }
}

/* Container adjustments for different screen sizes */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Navbar responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--border-radius);
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: var(--box-shadow);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    text-align: center;
  }
}

/* Card grid responsive adjustments */
@media (max-width: 767.98px) {
  .row > [class*="col-"] {
    margin-bottom: 1.61rem;
  }
  
  .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
}

/* Footer responsive adjustments */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
  
  .footer .row > div:last-child {
    margin-bottom: 0;
  }
}

/* Form responsive adjustments */
@media (max-width: 575.98px) {
  .btn-primary {
    width: 100%;
    padding: 1rem;
  }
  
  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Gallery responsive grid */
@media (max-width: 575.98px) {
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .gallery-item img {
    height: 220px;
  }
}

/* Blog cards responsive */
@media (max-width: 767.98px) {
  .blog-card {
    margin-bottom: 2rem;
  }
}

/* Team section responsive */
@media (max-width: 575.98px) {
  .team-member {
    padding: 1.5rem;
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
  }
}

/* FAQ responsive */
@media (max-width: 575.98px) {
  .faq-question,
  .faq-answer {
    padding: 1rem;
  }
}

/* Price cards responsive */
@media (max-width: 767.98px) {
  .price-card {
    margin-bottom: 2rem;
    padding: 2rem;
  }
}

/* Reviews carousel responsive */
@media (max-width: 767.98px) {
  .review-card {
    margin: 0.5rem;
    padding: 1.5rem;
  }
}

/* Process/Timeline responsive */
@media (max-width: 767.98px) {
  .process-item,
  .timeline-item {
    margin-bottom: 2rem;
    text-align: center;
  }
}

/* About features responsive */
@media (max-width: 575.98px) {
  .about-feature {
    padding: 1.5rem;
  }
  
  .about-feature i {
    font-size: 2.52rem;
  }
}

/* Case studies responsive */
@media (max-width: 767.98px) {
  .casestudy-item {
    margin-bottom: 2rem;
  }
}

/* Career section responsive */
@media (max-width: 767.98px) {
  .career-item {
    margin-bottom: 2rem;
  }
}

/* Core info responsive */
@media (max-width: 575.98px) {
  .coreinfo-item {
    margin-bottom: 1.63rem;
    padding: 1.5rem;
  }
} 