/* ========================================
   ABSENT FRIENDS - RESPONSIVE STYLESHEET
   ======================================== */

/* ========================================
   TABLET STYLES (1024px and below)
   ======================================== */
@media (max-width: 1200px) {
    .hero-content {
        padding-left: 2rem;
    }
    
    .hero-title,
    .hero-subtitle {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-title, 
    .hero-subtitle {
        font-size: 3.5rem;
    }
    
    .hero-content {
        padding: 0 2rem;
    }
    
    .memorial-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .memorial-gallery {
        flex-direction: row;
        flex: none;
        justify-content: center;
    }
    
    .gallery-item {
        width: 200px;
    }
    
    .memorial-title {
        font-size: 3rem;
    }
    
    .about-graphic {
        width: 40vw;
        height: 500px;
    }
    
    .testimonial-main {
        gap: 4rem;
    }
    
    .photo-collages {
        flex: 0 0 500px;
    }
}

@media (max-width: 992px) {
    .nav-brand {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 40px;
    }
    
    .hero-title,
    .hero-subtitle {
        font-size: 3rem;
    }
}

/* ========================================
   MOBILE STYLES (768px and below)
   ======================================== */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        height: auto;
        min-height: calc(100vh - 80px);
        margin-top: 80px;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-image {
        flex: none;
        max-width: 100%;
        height: 50vh;
        order: 1;
    }
    
    .hero-content {
        order: 2;
        padding: 3rem 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title,
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    /* Memorial Section Mobile */
    .memorial-section {
        padding: 60px 0;
    }
    
    .date-line {
        width: 200px;
    }
    
    .memorial-content {
        padding: 0 1rem;
    }
    
    .memorial-gallery {
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 300px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .memorial-text {
        padding-left: 0;
        text-align: center;
    }
    
    .memorial-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        flex-direction: column;
        position: static;
    }
    
    .about-content {
        padding: 0 2rem;
        max-width: 100%;
        text-align: center;
    }
    
    .about-graphic {
        position: static;
        width: 100%;
        height: 300px;
        transform: none;
        margin-top: 2rem;
    }
    
    .about-btn {
        position: static;
        transform: none;
        margin-top: 2rem;
    }
    
    /* Testimonial Section Mobile */
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-container {
        padding: 0 1rem;
    }
    
    .testimonial-main {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .photo-collages {
        flex: none;
        height: 250px;
        width: 100%;
    }
    
    .testimonial-heading {
        font-size: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .quote-mark {
        font-size: 4rem;
        top: -1rem;
        right: 50%;
        transform: translateX(50%);
    }
    
    .testimonial-btn {
        margin-right: 1rem;
    }
}

/* ========================================
   SMALL MOBILE STYLES (480px and below)
   ======================================== */
@media (max-width: 480px) {
    .hero-title,
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .learn-more-btn {
        padding: 12px 35px;
        font-size: 0.8rem;
    }
    
    /* Memorial Section Small Mobile */
    .memorial-section {
        padding: 40px 0;
    }
    
    .memorial-header {
        margin-bottom: 40px;
    }
    
    .date-line {
        width: 150px;
    }
    
    .memorial-title {
        font-size: 2rem;
    }
    
    /* About Section Small Mobile */
    .about-content {
        padding: 0 1rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    /* Testimonial Section Small Mobile */
    .testimonial-heading {
        font-size: 1.5rem;
    }
    
    .testimonial-btn {
        padding: 12px 25px;
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
}