/* Responsive CSS for Personal Branding Consultancy Template */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    padding: 2rem 0;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .services-grid,
  .team-grid,
  .price-plans,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-shape-1 {
    width: 200px;
    height: 200px;
  }
  
  .hero-shape-2 {
    width: 150px;
    height: 150px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    text-align: center;
    padding: 1rem 0;
  }
  
  .hero-shape {
    display: none;
  }
  
  .services-grid,
  .team-grid,
  .gallery-grid,
  .blog-grid,
  .price-plans,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .testimonial-card {
    margin: 0 0.5rem;
    padding: 1.5rem;
  }
  
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
}

/* Mobile Landscape */
@media (max-width: 576px) {
  :root {
    --fs-h1: 1.5rem;
    --fs-h2: 1.25rem;
    --fs-h3: 1.125rem;
    --section-padding: 2rem 0;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.21rem !important;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 80vh;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .service-card,
  .team-member,
  .price-plan {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem 1rem;
    margin: 0.5rem;
  }
  
  .btn-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.96rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .blog-card img {
    height: 150px;
  }
  
  .faq-accordion .accordion-header button {
    padding: 1rem;
    font-size: 0.96rem;
  }
  
  .breadcrumb-nav {
    padding: 0.5rem 0;
  }
  
  .breadcrumb-nav img {
    max-height: 25px;
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  :root {
    --fs-h1: 1.375rem;
    --fs-h2: 1.125rem;
    --fs-h3: 1rem;
    --fs-body: 0.8125rem;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 70vh;
  }
  
  .service-card,
  .team-member,
  .price-plan,
  .feature-item {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
    margin: 0.25rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .price-plan .price {
    font-size: 2rem;
  }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-section::before {
    background-image: url('../GAP_images/hero-background@2x.webp');
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-shape {
    display: none !important;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: auto;
    background: white !important;
    color: black !important;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  a {
    text-decoration: underline !important;
  }
  
  .service-card,
  .team-member,
  .testimonial-card {
    box-shadow: none !important;
    border: 1px solid #ddd2d0 !important;
  }
} 