/* Landing Page Styles */

body {
    padding-top: 0;
}

@media (min-width: 992px) {
    body {
        padding-top: 0;
    }
}

/* Header */
.landing-header {
    background-color: #ffffff;
}

.landing-logo {
    max-height: 80px;
}

/* Feature Section */
.landing-feature {
    margin-top: 0rem;
    min-height: 620px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .landing-feature {
        margin-top: -8rem;
    }
}

.landing-feature-image {
    width: 100%;
    height: 100%;
    background-image: url('images/2026/MetalRoof.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hero Section */
#hero {
    background-color: #ffffff;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 992px) {
    #hero {
        margin-top: -8rem;
    }
}

.hero-title {
    color: rgba(120, 44, 22, 1.00);
}

/* Tagline Box */
.tagline-box {
    padding: 30px 20px;
    background-color: #ffffff;
}

/* Typography */
.letter-spacing-2 {
    letter-spacing: 2px;
}

.divider-centered {
    max-width: 300px;
    margin: 25px auto;
}

/* Gallery */
.gallery-image {
    width: 100%;
}

.gallery-section {
    background-color: rgba(120, 44, 22, 0.2);
    padding: 40px 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.gallery-heading-wrapper {
    text-align: center;
    padding: 20px 0;
}

.gallery-heading {
    color: rgb(120, 44, 22);
    font-weight: 700;
    font-size: 1.75rem;
    text-transform: uppercase;
    margin: 0;
}

.gallery-row {
    padding: 0 80px;
    margin: 0 auto;
    max-width: 1400px;
}

/* Gallery Item Card */
.gallery-item-card {
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.gallery-item-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item-image.clickable {
    cursor: pointer;
}

.gallery-item-caption {
    padding: 20px;
    border-left: 4px solid rgba(203, 150, 63, 1.00);
}

.gallery-item-caption-gold {
    padding: 20px;
    border-left: 4px solid rgba(203, 150, 63, 1.00);
}

.gallery-item-caption-brown {
    padding: 20px;
    border-left: 4px solid rgba(203, 150, 63, 1.00);
}

.gallery-item-caption-text {
    color: rgba(120, 44, 22, 1.00);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Call to Action Section */
.cta-wrapper {
    text-align: center;
}

.cta-container {
    max-width: 750px;
    margin: 0 auto;
}

.qr-image {
    max-width: 250px;
}

.cta-text-primary {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cta-text-secondary {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Address Section */
.address-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.address-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Button */
.cta-button {
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .landing-feature {
        min-height: 300px;
    }

    .landing-feature-image {
        background-attachment: scroll;
    }

    .gallery-row {
        padding: 0 20px;
        max-width: 100%;
    }

    .gallery-heading {
        font-size: 1.3rem;
    }

    .gallery-item-image {
        height: 250px;
    }

    .gallery-item-caption-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .landing-feature {
        min-height: 250px;
    }

    .gallery-row {
        padding: 0 10px;
    }

    .gallery-heading {
        font-size: 1.1rem;
    }

    .gallery-item-image {
        height: 200px;
    }

    .gallery-item-caption-text {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .address-title {
        font-size: 1.2rem;
    }

    .address-text {
        font-size: 0.9rem;
    }
}
