
/*
Theme Name: MonTheme LizStyle
*/
body {
    margin: 0;
    font-family: sans-serif;
    background: #111;
    color: #eee;
}

/* Hero */
.front-hero .hero-area {
    position: relative;
    height: 90vh;
    background: url('https://picsum.photos/2000/1200?blur=3') center/cover no-repeat;
}
.front-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
}
.hero-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.hero-title {
    font-size: 3rem;
    margin-bottom: .5rem;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 1.3rem;
    opacity: .8;
}
.hero-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: .8rem 1.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}
.hero-button:hover {
    background: #fff;
    color: #111;
}

/* About */
.about-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 2rem;
    padding: 3rem 2rem;
}
.feature-card {
    background: #1b1b1b;
    padding: 2rem;
    border-radius: 8px;
    transition: .3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    background: #222;
}
