/* =========================================================
   Vertilux – Roller Shades Page Template
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

/* Reset / base */
#vrs-main {
    font-family: 'Jost', sans-serif;
    color: #756b66;
    line-height: 1.6;
}

#vrs-main h1,
#vrs-main h2,
#vrs-main h3,
#vrs-main h4,
#vrs-main h5,
#vrs-main h6 {
    font-family: 'Jost', sans-serif;
    color: #0a0a0a;
}

.vrs-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   HERO
   ========================================================= */
.vrs-hero {
    padding: 0 20px 20px;
}

.vrs-hero-inner {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.vrs-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.vrs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.10) 50%,
        rgba(0, 0, 0, 0) 100%
    );
}

.vrs-hero-text {
    position: absolute;
    bottom: 28px;
    left: 28px;
}

.vrs-hero-text h1 {
    color: #ffffff !important;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
    line-height: 1.1;
}

/* =========================================================
   INTRO DESCRIPTION
   ========================================================= */
.vrs-intro {
    padding: 36px 0 28px;
    background: #fff;
}

.vrs-intro p {
    font-size: 15px;
    color: #333;
    max-width: 640px;
    margin: 0;
    line-height: 1.7;
}

/* =========================================================
   THREE-COLUMN FEATURES
   ========================================================= */
.vrs-features {
    padding: 0 0 48px;
    background: #fff;
}

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

.vrs-feature-col {
    display: flex;
    flex-direction: column;
}

.vrs-feature-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 16px;
}

.vrs-feature-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.vrs-feature-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #111;
}

.vrs-arrow {
    font-size: 18px;
    font-weight: 400;
    color: #111;
}

.vrs-feature-title a {
    color: inherit;
    text-decoration: none;
}

.vrs-feature-title a:hover {
    color: #c0112f;
    text-decoration: none;
}

.vrs-feature-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
    flex: 1;
    margin: 0 0 18px;
}

.vrs-btn {
    display: inline-block;
    padding: 10px 16px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s;
}

.vrs-btn:hover {
    background: #c0112f;
    color: #fff;
    text-decoration: none;
}

/* =========================================================
   RESOURCES
   ========================================================= */
.vrs-resources {
    padding: 0 0 60px;
    background: #fff;
}

.vrs-resources-divider {
    border-top: 1px solid #ddd;
    margin-bottom: 44px;
}

.vrs-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: center;
}

.vrs-resource-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vrs-resource-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #c0112f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.vrs-resource-icon svg {
    width: 32px;
    height: 32px;
}

.vrs-resource-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0 0 12px;
}

.vrs-resource-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    max-width: 260px;
    margin: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .vrs-features-grid,
    .vrs-resources-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .vrs-hero-inner {
        height: 380px;
    }

    .vrs-hero-text h1 {
        font-size: 32px;
    }

    .vrs-hero-text {
        left: 20px;
        bottom: 24px;
    }
}

@media (max-width: 600px) {
    .vrs-hero-inner {
        height: 280px;
    }

    .vrs-hero-text h1 {
        font-size: 24px;
    }
}
