/* ============================================================
   Dark Room Public View — Home View Styles
   ============================================================ */

.hero {
    text-align: center;
    padding: 3.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
}

.badge {
    background: rgba(45,90,76,0.1);
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(45,90,76,0.2);
}

h1 {
    font-family: var(--font-main);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -2px;
    color: var(--text);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #8ab5a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0.8rem;
}

.feature-card {
    background-image: url('../../assets/images/card_paper_texture_v2.png');
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(27, 61, 50, 0.15);
    padding: 2.2rem 1.8rem;
    border-radius: 24px 20px 24px 22px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04), inset 0 0 40px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px) rotate(0.6deg);
    box-shadow: 0 16px 36px rgba(27, 61, 50, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(27, 61, 50, 0.18);
}

.feature-card i {
    font-size: 3rem;
    color: #1b3d32;
    margin-bottom: 1.25rem;
    display: block;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(27, 61, 50, 0.1));
}

.feature-card:hover i {
    transform: translateY(-4px) scale(1.06);
    filter: drop-shadow(0 8px 12px rgba(27, 61, 50, 0.18));
}

.feature-card h3 {
    font-family: var(--font-main);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #1b3d32;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: #2c2c2c;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    .features { grid-template-columns: 1fr; }
    .hero { height: auto; padding: 4rem 0 2rem; }
}
