/* Danifisio Landing Page – pastel theme */

/* Font */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #ddc3cf;
    /* new pastel background */
    /* very light pastel */
    color: #333;
}

/* Banner */
.banner {
    position: relative;
    overflow: hidden;
    max-height: 60vh;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.logo-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    /* 40% of viewport width */
    max-width: 40%;
    height: auto;
    z-index: 10;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.banner-text h1 {
    font-size: 3rem;
    margin: 0;
    color: #FFEBE9;
    /* pastel pink */
}

.banner-text p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: #E0F7FA;
    /* pastel cyan */
}

/* Services */
.services {
    padding: 3rem 1rem;
    background-color: #ddc3cf;
    /* new pastel background */
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #544f9d;
    /* accent color */
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #544f9d;
    /* accent color */
}

.service-card p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #555;
}

/* Footer */
footer {
    background: #544f9d;
    /* accent color */
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: 2.2rem;
    }

    .banner-text p {
        font-size: 1rem;
    }

    .services h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        width: 80vw;
        max-width: 80%;
    }
}

/* Social icons in banner */
.socials-banner {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.socials-banner a {
    color: #544f9d;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.socials-banner a:hover {
    color: #2f4b4d;

}

/* Contact Section */
.contact {
    padding: 3rem 1rem;
    text-align: center;
    background-color: #ddc3cf;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #544f9d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
}

.contact-form button {
    padding: 0.8rem 1.5rem;
    background: #544f9d;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form button:hover {
    background: #2f4b4d;
}

.socials-contact {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.socials-contact a {
    color: #544f9d;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.socials-contact a:hover {
    color: #2f4b4d;
}