:root {
    --primary: #CE2D78;
    --dark: #3A3A3A;
    --light: #f8f8f8;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    font-weight: 500;
    margin-left: 1rem;
    color: var(--dark);
}

.nav-link:hover {
    color: var(--primary);
}

/* HERO */
.hero {
    height: 100vh;
    background: url('../assets/img/hero.jpg') center/cover no-repeat;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 15px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #b02165;
    color: #fff;
}

/* TITLES */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

/* ABOUT */
.about {
    padding: 80px 0;
    background: #ffffff;
}

/* SERVICES */
.services {
    padding: 80px 0;
    background: var(--light);
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* PRODUCTS */
.products {
    padding: 80px 0;
    background: #fff;
}

.product-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* CONTACT */
.contact {
    padding: 80px 0;
    background: var(--light);
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.contact-card i {
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #fff;
    padding: 18px 0;
    font-size: 0.9rem;
    text-align: center;
    color: var(--dark);
    border-top: 1px solid #eee;
}

/* RESPONSIVE */
@media (max-width: 767.98px) {
    .hero {
        height: 80vh;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
