/* ----------------------------------------------------------
   Raj Marketing – Home Page Styles
   File: css/home.css
-----------------------------------------------------------*/

.hero {
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    position: relative;
    background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,123,255,0.25));
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 15px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-animation {
    position: absolute;
    right: 5%;
    width: 380px;
    height: 380px;
    background: var(--primary);
    opacity: 0.25;
    filter: blur(80px);
    border-radius: 50%;
}

/* Slider */
.slider-section {
    padding: 40px;
    text-align: center;
}

.slider {
    width: 90%;
    margin: 10px auto;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Categories */
.categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cat-btn {
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cat-btn:hover {
    background: var(--primary-dark);
}

/* Featured Section */
.featured {
    padding: 20px 40px;
}

.featured h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}
