/* === RESPONSIVE DESIGN === */

/* Tablets and smaller desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item {
        padding: 20px;
    }
    
    .marquee-content span {
        font-size: 3.5em;
    }
    
    .marquee-icon {
        height: 2.8em;
    }
}

/* Mobile landscape and tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .menu_btn.border-right {
        display: none;
    }
    .hero {
        height: 70vh;
    }

    .welcome {
        padding: 80px 0;
    }

    .welcome-content {
        gap: 40px;
    }

    .icon-wrapper {
        max-width: 100px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 28px;
    }

    .about-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        padding: 16px 35px;
        font-size: 20px;
    }

    .marquee {
        padding: 35px 0;
    }

    .marquee-content span {
        font-size: 3em;
    }

    .marquee-icon {
        height: 2.3em;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        padding: 15px;
        aspect-ratio: 4/5;
    }

    .footer {
        padding-bottom: 40px;
    }

    .footer-logo-img {
        max-width: 350px;
    }

    .footer-column {
        margin-bottom: 25px;
    }

    .footer-heading {
        font-size: 15px;
    }

    .footer-column:not(.footer-links) p {
        font-size: 28px;
    }

    .footer-links {
        font-size: 0.85em;
    }
    .menu_btn {
        padding: 0 20px;
    }
    .back-to-top {
        width: 50px;
        height: 50px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
    .logo {
        padding: 0 15px;
    }
    .logo-img {
        height: auto;
    }
}

/* Mobile portrait */
@media (max-width: 550px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 100svh;
    }

    .landing-img {
       width: 100%;
       padding: 5px 0;
    }

    .scroll-indicator {
        width: 24px;
        height: 40px;
        bottom: 40px;
    }

    .welcome {
        padding: 60px 0;
    }

    .welcome-content {
        gap: 30px;
    }

    .icon-wrapper {
        max-width: 80px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .btn {
        padding: 14px 30px;
        font-size: 18px;
    }

    img.house-icon {
        max-width: 300px;
    }

    .marquee {
        padding: 25px 0;
    }

    .marquee-content span {
        font-size: 2.5em;
    }

    .marquee-icon {
        height: 2em;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        padding: 20px;
        border-right: 0px;
        aspect-ratio: 3/4;
    }

    .footer {
        padding-bottom: 30px;
    }

    .first-column {
        padding-top: 30px;
    }

    .footer-logo-img {
        max-width: 280px;
    }

    .footer-column {
        margin-bottom: 20px;
        gap: 2px;
    }

    .footer-heading {
        font-size: 14px;
    }

    .footer-column:not(.footer-links) p {
        font-size: 24px;
    }

    .footer-links {
        font-size: 0.8em;
        gap: 0.8em;
    }

    .footer-links p {
        padding-right: 0.8em;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        margin-bottom: 50px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

