/* ----------------------------------------------------------
:: Template Name: Studio - Creative Photography Template
:: Author: Colorlib
:: Author URL: https://colorlib.com
:: Version: 1.0.0
:: Created: 31 January 2018
:: Last Updated: 31 January 2018
---------------------------------------------------------- */

/* ============ CUSTOM HOMEPAGE DESIGN ============ */

body {
    background: linear-gradient(135deg, #fbfcfaf6 0%, #def5ef 100%);
    color: #ee0505;
}

.modern-showcase {
    padding: 90px 0 40px;
    position: relative;
}

.modern-showcase .container {
    max-width: 1200px;
}

.section-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.06);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.modern-showcase h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111111;
}

.modern-showcase p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5d5d5d;
    max-width: 520px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.studio-btn {
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
    border-radius: 999px;
    padding: 1px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.studio-btn:hover {
    background: #2c2c2c;
    color: #ffffff;
    transform: translateY(-2px);
}

.studio-btn.btn-light {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.studio-btn.btn-light:hover {
    background: #f2f2f2;
    color: #111111;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 300px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.feature-card.large {
    grid-row: span 2;
    min-height: 720px;
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover img {
    transform: scale(1.04);
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.68) 100%);
}

.feature-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    color: #ffffff;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.feature-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.insight-strip {
    padding-bottom: 90px;
}

.stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.stat-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.stat-card p {
    margin: 0;
    color: #666666;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.large {
        min-height: 500px;
    }
}
