/* Import police */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}

/* -------- NAVBAR -------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FE5555;
    padding: 15px 20px;
    position: relative;
    z-index: 100;
}

.navbar .logo img {
    max-width: 90px;
    height: auto;
}

.navbar a {
    font-weight: 700;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: background 0.3s ease-in-out, transform 0.2s;
    font-size: 1.1rem;
}

.navbar a:hover {
    background-color: #FE8888;
    transform: scale(1.1);
    border-radius: 5px;
}

.navbar a.active {
    border-bottom: 3px solid white;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: white;
}

/* -------- SECTION ABOUT -------- */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
}

.about-content h1 {
    font-size: 2.2rem;
    color: #FE5555;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* -------- SECTION SERVICES -------- */
.services {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.service-section {
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.service-section h2 {
    font-size: 1.8rem;
    color: #FE5555;
    margin-bottom: 30px;
    text-align: center;
}

.service-box {
    background: #fff;
    border: 2px solid #FE5555;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    font-size: 1.3rem;
    color: #FE5555;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 1rem;
    line-height: 1.5;
}

/* -------- FOOTER -------- */
footer {
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

footer .socials {
    margin-top: 10px;
}

footer .socials a img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
    object-fit: contain;
}

footer .socials a:hover img {
    transform: scale(1.2);
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 992px) {
    .about {
        flex-direction: column;
        text-align: center;
    }
    .about-content {
        order: 2;
    }
    .about-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: -100vh;
        left: 0;
        width: 100%;
        background-color: #FE8888;
        text-align: center;
        transition: top 0.4s ease-in-out;
        z-index: 99;
    }

    .menu a {
        padding: 15px;
        display: block;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .menu-active {
        top: 100%;
    }
}
