/* Eco-Tourism Itinerary Design Studio - Responsive CSS */
/* Mobile-First Responsive Design */

/* Base Mobile Styles (up to 575px) */
/* Already defined in main.css - mobile-first approach */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-decorative {
    width: 150px;
    height: 150px;
  }
  
  .services-card {
    margin-bottom: 2rem;
  }
  
  .team-image {
    height: 200px;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.58rem;
  }
  
  h3 {
    font-size: 1.85rem;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-decorative {
    width: 180px;
    height: 180px;
  }
  
  /* Services */
  .services-card {
    margin-bottom: 2rem;
  }
  
  .services-price {
    font-size: 2.56rem;
  }
  
  /* Team */
  .team-image {
    height: 220px;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 220px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 2.5rem;
  }
  
  .contact-info-icon {
    font-size: 3rem;
  }
  
  /* About Features */
  .about-feature-icon {
    font-size: 3.55rem;
  }
  
  /* Process/Timeline Numbers */
  .process-number, .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1.24rem;
  }
  
  /* Price Plan */
  .priceplan-price {
    font-size: 3.61rem;
  }
  
  /* Footer */
  .footer {
    padding: 4rem 0 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* Typography */
  h1 {
    font-size: 3.59rem;
  }
  
  h2 {
    font-size: 2.94rem;
  }
  
  h3 {
    font-size: 2rem;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 4rem 0;
  }
  
  .hero-decorative {
    width: 200px;
    height: 200px;
  }
  
  .hero-decorative-1 {
    top: 10%;
    right: 10%;
  }
  
  .hero-decorative-2 {
    bottom: 10%;
    left: 8%;
  }
  
  /* Services */
  .services-card {
    margin-bottom: 0;
  }
  
  .services-price {
    font-size: 2.93rem;
  }
  
  /* Team */
  .team-image {
    height: 250px;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 250px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 3rem;
  }
  
  .contact-info-icon {
    font-size: 3.53rem;
  }
  
  /* About Features */
  .about-feature-icon {
    font-size: 4rem;
  }
  
  /* Reviews */
  .review-card {
    padding: 2.5rem;
  }
  
  .review-card::before {
    font-size: 5rem;
  }
  
  /* Process/Timeline */
  .process-card, .timeline-card {
    padding: 2rem;
  }
  
  .process-number, .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.60rem;
  }
  
  /* Price Plan */
  .priceplan-card {
    padding: 2.5rem;
  }
  
  .priceplan-price {
    font-size: 4rem;
  }
  
  /* Case Study */
  .casestudy-card {
    padding: 2.5rem;
  }
  
  /* Core Info */
  .coreinfo-icon {
    font-size: 3rem;
  }
  
  /* FAQ */
  .faq-card {
    padding: 2rem;
  }
  
  /* Blog */
  .blog-card img {
    height: 220px;
  }
  
  /* Career */
  .career-card {
    padding: 2rem;
  }
  
  /* Footer */
  .footer {
    padding: 5rem 0 2rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Typography - maintaining conservative sizes */
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  h3 {
    font-size: 2.33rem;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 5rem 0;
  }
  
  .hero-decorative {
    width: 250px;
    height: 250px;
  }
  
  .hero-decorative-1 {
    top: 8%;
    right: 8%;
  }
  
  .hero-decorative-2 {
    bottom: 8%;
    left: 6%;
  }
  
  /* Services */
  .services-price {
    font-size: 3rem;
  }
  
  /* Team */
  .team-image {
    height: 280px;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 280px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 3.5rem;
  }
  
  .contact-info-icon {
    font-size: 4rem;
  }
  
  /* About Features */
  .about-feature-icon {
    font-size: 4.58rem;
  }
  
  /* Reviews */
  .review-card {
    padding: 3rem;
  }
  
  .review-card::before {
    font-size: 6rem;
  }
  
  /* Process/Timeline */
  .process-card, .timeline-card {
    padding: 2.5rem;
  }
  
  .process-number, .timeline-number {
    width: 70px;
    height: 70px;
    font-size: 1.86rem;
  }
  
  /* Price Plan */
  .priceplan-card {
    padding: 3rem;
  }
  
  .priceplan-price {
    font-size: 4.57rem;
  }
  
  /* Case Study */
  .casestudy-card {
    padding: 3rem;
  }
  
  /* Core Info */
  .coreinfo-icon {
    font-size: 3.60rem;
  }
  
  /* FAQ */
  .faq-card {
    padding: 2.5rem;
  }
  
  /* Blog */
  .blog-card img {
    height: 240px;
  }
  
  /* Career */
  .career-card {
    padding: 2.5rem;
  }
  
  /* Footer */
  .footer {
    padding: 6rem 0 3rem;
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  /* Maximum sizes to prevent content from becoming too large */
  h1 {
    font-size: 4.56rem;
  }
  
  h2 {
    font-size: 3.33rem;
  }
  
  h3 {
    font-size: 2.53rem;
  }
  
  /* Hero Section */
  .hero-decorative {
    width: 300px;
    height: 300px;
  }
  
  /* Services */
  .services-price {
    font-size: 3.35rem;
  }
  
  /* Team */
  .team-image {
    height: 300px;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 300px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 4rem;
  }
  
  .contact-info-icon {
    font-size: 4.63rem;
  }
  
  /* About Features */
  .about-feature-icon {
    font-size: 5rem;
  }
  
  /* Reviews */
  .review-card {
    padding: 3.5rem;
  }
  
  /* Process/Timeline */
  .process-card, .timeline-card {
    padding: 3rem;
  }
  
  .process-number, .timeline-number {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  /* Price Plan */
  .priceplan-card {
    padding: 3.5rem;
  }
  
  .priceplan-price {
    font-size: 5rem;
  }
  
  /* Case Study */
  .casestudy-card {
    padding: 3.5rem;
  }
  
  /* Core Info */
  .coreinfo-icon {
    font-size: 4rem;
  }
  
  /* FAQ */
  .faq-card {
    padding: 3rem;
  }
  
  /* Blog */
  .blog-card img {
    height: 260px;
  }
  
  /* Career */
  .career-card {
    padding: 3rem;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 575px) {
  /* Conservative mobile typography */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.85rem;
  }
  
  h3 {
    font-size: 1.57rem;
  }
  
  .navbar-brand {
    font-size: 1.26rem;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 1rem 0;
    min-height: 70vh;
  }
  
  .hero-decorative {
    width: 100px;
    height: 100px;
  }
  
  .hero-decorative-1 {
    top: 5%;
    right: 5%;
  }
  
  .hero-decorative-2 {
    bottom: 5%;
    left: 5%;
  }
  
  /* Services */
  .services-card {
    margin-bottom: 1.80rem;
  }
  
  .services-price {
    font-size: 1.90rem;
  }
  
  /* Team */
  .team-image {
    height: 180px;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 180px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info-icon {
    font-size: 2rem;
  }
  
  /* About Features */
  .about-feature-icon {
    font-size: 2.59rem;
  }
  
  /* Reviews */
  .review-card {
    padding: 1.5rem;
  }
  
  .review-card::before {
    font-size: 3rem;
  }
  
  /* Process/Timeline */
  .process-card, .timeline-card {
    padding: 1.5rem;
  }
  
  .process-number, .timeline-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  /* Price Plan */
  .priceplan-card {
    padding: 1.5rem;
    margin-bottom: 1.86rem;
  }
  
  .priceplan-price {
    font-size: 2.53rem;
  }
  
  .priceplan-card.featured {
    transform: none;
    border-width: 2px;
  }
  
  /* Case Study */
  .casestudy-card {
    padding: 1.5rem;
  }
  
  /* Core Info */
  .coreinfo-icon {
    font-size: 2rem;
  }
  
  /* FAQ */
  .faq-card {
    padding: 1.5rem;
  }
  
  /* Blog */
  .blog-card img {
    height: 160px;
  }
  
  /* Career */
  .career-card {
    padding: 1.5rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  /* Section spacing */
  .section {
    padding: 3rem 0;
  }
}

/* Tablet portrait adjustments */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .services-card {
    margin-bottom: 1.86rem;
  }
  
  .priceplan-card.featured {
    transform: none;
    border-width: 2px;
  }
  
  .section {
    padding: 4rem 0;
  }
}

/* Print styles */
@media print {
  .hero-decorative,
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    padding: 1rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .services-card,
  .team-card,
  .review-card,
  .faq-card,
  .blog-card,
  .career-card,
  .priceplan-card,
  .casestudy-card,
  .coreinfo-card {
    box-shadow: none;
    border: 1px solid #f6f6f6;
  }
  
  .gallery-item img {
    height: auto;
  }
} 

.hero-section h1 {
    padding-top: 125px;
}