/* Responsive Styles for Pressed Flower Shop */

/* Tablet Styles */
@media (max-width: 992px) {
  :root {
    --section-padding: 3rem 0;
    --font-size-2xl: 1.75rem;
    --font-size-xl: 1.375rem;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-shape-1,
  .hero-shape-2 {
    display: none;
  }
  
  .navbar-brand {
    font-size: var(--font-size-md) !important;
  }
  
  .hero-title {
    font-size: var(--font-size-xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-md);
  }
  
  .service-card,
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  :root {
    --section-padding: 2rem 0;
    --container-padding: 0.75rem;
    --font-size-2xl: 1.5rem;
    --font-size-xl: 1.25rem;
    --font-size-lg: 1.125rem;
  }
  
  body {
  overflow-x: hidden !important;
    font-size: 0.9rem;
  }
  
  /* Header */
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: var(--font-size-base) !important;
  }
  
  .nav-link {
    font-size: var(--font-size-sm);
    margin: 0 0.25rem;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: var(--font-size-lg);
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
  }
  
  .hero-desc {
    font-size: var(--font-size-sm);
    margin-bottom: 1.5rem;
  }
  
  /* Typography */
  h1 { font-size: var(--font-size-lg); }
  h2 { font-size: var(--font-size-md); }
  h3 { font-size: var(--font-size-base); }
  
  p {
    font-size: var(--font-size-sm);
  }
  
  /* Sections */
  .section-title {
    margin-bottom: 2rem;
  }
  
  /* Cards */
  .card-body {
  overflow-x: hidden !important;
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: var(--font-size-sm);
  }
  
  /* Team */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  .form-control {
    padding: 0.6rem 0.75rem;
    font-size: var(--font-size-sm);
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  /* Blog */
  .blog-image {
    height: 150px;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .blog-title {
    font-size: var(--font-size-base);
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer h5 {
    font-size: var(--font-size-base);
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 1.5rem;
  }
  
  /* FAQ */
  .faq-item {
    padding: 1rem 0;
  }
  
  .faq-question {
    font-size: var(--font-size-sm);
  }
  
  .faq-answer {
    font-size: var(--font-size-sm);
    padding-left: 0.5rem;
  }
  
  /* Swiper - Disable autoplay and effects on mobile */
  .swiper {
    --swiper-navigation-size: 24px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  :root {
    --section-padding: 1.5rem 0;
    --font-size-2xl: 1.375rem;
    --font-size-xl: 1.125rem;
  }
  
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 1.5rem 0;
  }
  
  .hero-title {
    font-size: var(--font-size-md);
  }
  
  .service-card,
  .blog-card {
    margin-bottom: 1rem;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
  }
  
  .footer {
    padding: 1.5rem 0 0.5rem;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-section::before {
    background-image: url('../LEG_images/hero-bg@2x.webp');
  }
}

/* Landscape Orientation on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: var(--font-size-md);
  }
  
  .section {
    padding: 1.5rem 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    page-break-inside: avoid;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  a {
    text-decoration: underline;
  }
  
  .gallery-grid {
    display: none;
  }
} 