/* ============================================
   Hampstead Motors - Sheds Page Styles
   ============================================ */

/* ============================================
   Hero Section
   ============================================ */
.sheds-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/sheds/MultipleBuildings_SalesLot-600x314.jpg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sheds-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(219, 45, 46, 0.5) 100%);
}

.sheds-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--hm-white);
    padding: 80px 20px 40px;
}

.sheds-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sheds-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.sheds-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sheds-hero-trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.sheds-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sheds-trust-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--hm-primary);
}

@media (max-width: 767px) {
    .sheds-hero {
        min-height: auto;
        padding: 60px 0;
        background-attachment: scroll;
    }

    .sheds-hero-content {
        padding-top: 40px;
    }

    .sheds-hero-title {
        font-size: 2rem;
    }

    .sheds-hero-subtitle {
        font-size: 1rem;
    }

    .sheds-hero-trust {
        gap: 24px;
        margin-top: 32px;
    }

    .sheds-trust-item {
        font-size: 0.8rem;
    }

    .sheds-hero-cta .hm-btn-secondary {
        display: none;
    }
}

/* ============================================
   Introduction Section
   ============================================ */
.sheds-intro {
    padding: 80px 0;
    background-color: var(--hm-white);
}

.sheds-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sheds-intro-content .hm-section-title {
    text-align: left;
    margin-bottom: 24px;
}

.sheds-intro-text {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--hm-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.sheds-intro-image {
    border-radius: var(--hm-border-radius);
    overflow: hidden;
    box-shadow: var(--hm-shadow-lg);
}

.sheds-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .sheds-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sheds-intro-content .hm-section-title {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .sheds-intro {
        padding: 60px 0;
    }
}

/* ============================================
   Building Styles Section
   ============================================ */
.sheds-buildings {
    padding: 80px 0;
    background-color: var(--hm-gray-dark);
    color: var(--hm-white);
}

.sheds-buildings .hm-section-title {
    color: var(--hm-white);
}

.sheds-buildings .hm-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.sheds-buildings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sheds-building-card {
    background-color: var(--hm-white);
    border-radius: var(--hm-border-radius);
    overflow: hidden;
    box-shadow: var(--hm-shadow);
    transition: var(--hm-transition);
    display: flex;
    flex-direction: column;
}

.sheds-building-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sheds-building-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.sheds-building-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sheds-building-card:hover .sheds-building-image img {
    transform: scale(1.05);
}

.sheds-building-info {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sheds-building-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--hm-black);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.sheds-building-desc {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--hm-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.sheds-building-card .hm-btn-small {
    align-self: flex-start;
}

/* Icon-only cards (no image) */
.sheds-building-card--icon {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sheds-building-card--icon:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--hm-primary);
}

.sheds-building-icon {
    width: 72px;
    height: 72px;
    background-color: var(--hm-primary);
    border-radius: var(--hm-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 0 0 24px;
}

.sheds-building-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--hm-white);
}

.sheds-building-card--icon .sheds-building-title {
    color: var(--hm-white);
}

.sheds-building-card--icon .sheds-building-desc {
    color: rgba(255, 255, 255, 0.8);
}

.sheds-building-card--icon .hm-btn-small {
    background-color: var(--hm-white);
    color: var(--hm-black);
}

.sheds-building-card--icon .hm-btn-small:hover {
    background-color: var(--hm-primary);
    color: var(--hm-white);
}

@media (max-width: 991px) {
    .sheds-buildings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .sheds-buildings {
        padding: 60px 0;
    }

    .sheds-buildings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   Interior Showcase Section
   ============================================ */
.sheds-interior {
    padding: 80px 0;
    background-color: var(--hm-gray-lighter);
}

.sheds-interior-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.sheds-interior-item {
    position: relative;
    border-radius: var(--hm-border-radius);
    overflow: hidden;
    box-shadow: var(--hm-shadow-lg);
}

.sheds-interior-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
    transition: transform 0.4s ease;
}

.sheds-interior-item:hover img {
    transform: scale(1.03);
}

.sheds-interior-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--hm-white);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.3px;
}

.sheds-interior-note {
    text-align: center;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--hm-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .sheds-interior {
        padding: 60px 0;
    }

    .sheds-interior-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ============================================
   Features Section
   ============================================ */
.sheds-features {
    padding: 80px 0;
    background-color: var(--hm-white);
}

@media (max-width: 767px) {
    .sheds-features {
        padding: 60px 0;
    }
}

/* ============================================
   Visit Our Lot CTA Section
   ============================================ */
.sheds-lot-cta {
    position: relative;
    padding: 100px 0;
    background-image: url('/images/sheds/SalesLot_MultipleBuildings_SamanthaBassett2-600x628.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sheds-lot-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(219, 45, 46, 0.5) 100%);
}

.sheds-lot-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--hm-white);
    max-width: 700px;
    margin: 0 auto;
}

.sheds-lot-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sheds-lot-cta-text {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.7;
}

.sheds-lot-cta-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.sheds-lot-cta-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.sheds-lot-cta-detail svg {
    width: 20px;
    height: 20px;
    stroke: var(--hm-primary-light);
}

.sheds-lot-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .sheds-lot-cta {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .sheds-lot-cta-title {
        font-size: 1.75rem;
    }

    .sheds-lot-cta-info {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .sheds-lot-cta-text {
        font-size: 1rem;
    }
}

/* ============================================
   Quote Request Section
   ============================================ */
.sheds-quote {
    padding: 80px 0;
    background-color: var(--hm-gray-lighter);
}

.sheds-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.sheds-quote-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sheds-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 991px) {
    .sheds-quote-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .sheds-quote {
        padding: 60px 0;
    }

    .sheds-form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Active Nav State
   ============================================ */
.hm-nav-link.active {
    color: var(--hm-primary) !important;
}

.hm-nav-link.active::after {
    width: 100%;
}
