/* --- VARIABILI COLORI --- */
:root {
    --rosa-dominante: #E91E63;
    --rosa-hover: #D81B60;
    --blu-scuro: #0A192F;
    --grigio-chiaro: #F4F6F8;
    --testo-scuro: #333333;
    --bianco: #FFFFFF;
}

/* --- RESET BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', Arial, sans-serif; }
body { background-color: var(--grigio-chiaro); color: var(--testo-scuro); line-height: 1.6; }
html { scroll-behavior: smooth; }
a { text-decoration: none; }

/* --- HEADER & MENU MOBILE (Menu Sandwich) --- */
header {
    background-color: var(--blu-scuro);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rosa-dominante);
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}
.logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

/* Stile Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 30px; height: 3px; background-color: var(--bianco); transition: 0.3s; }

/* Menu Nascosto */
nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--blu-scuro);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
nav.active { max-height: 300px; /* Apre il menu */ }
nav ul { list-style: none; text-align: center; }
nav ul li a { display: block; padding: 15px; color: var(--bianco); border-bottom: 1px solid rgba(255,255,255,0.1); }
nav ul li a:hover { color: var(--rosa-dominante); }
.btn-nav { color: var(--rosa-dominante) !important; font-weight: bold; }

/* --- HERO SECTION --- */
.hero {
    background-color: var(--blu-scuro);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--bianco);
}
.hero h1 { font-size: 36px; margin-bottom: 20px; color: var(--bianco); }
.hero p { font-size: 16px; margin-bottom: 30px; color: #ddd; }
.hero-logo {
    margin-bottom: 20px;
}
.hero-logo img {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    background: transparent;
}
.btn {
    background-color: var(--rosa-dominante); color: var(--bianco);
    padding: 15px 30px; font-weight: bold; border-radius: 5px;
    text-transform: uppercase; transition: 0.3s; display: inline-block; border: none; cursor: pointer;
}
.btn:hover { background-color: var(--rosa-hover); }

/* --- SEZIONI GENERICHE --- */
.section { padding: 40px 16px; }
.container { max-width: 1000px; margin: 0 auto; }
.section-title { color: var(--blu-scuro); font-size: 32px; margin-bottom: 10px; text-align: center; }
.section-subtitle { text-align: center; margin-bottom: 40px; color: #666; }

/* --- SEZIONE SERVIZIO --- */
.service-card {
    background: var(--bianco);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.service-img { width: 100%; height: 250px; object-fit: cover; }
.service-text { padding: 30px; text-align: left; }
.service-text h3 { color: var(--rosa-dominante); margin-bottom: 15px; font-size: 24px; }
.service-list { margin-top: 15px; padding-left: 20px; }
.service-list li { margin-bottom: 10px; }

.service-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.service-box {
    background: var(--bianco);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.service-box h3 {
    padding: 20px 20px 10px;
    color: var(--rosa-dominante);
    font-size: 20px;
}
.service-box p {
    padding: 0 20px 20px;
}

/* --- FORM CONTATTI --- */
.contact-section { background-color: var(--bianco); }
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--grigio-chiaro);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.input-group { margin-bottom: 20px; }
.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box; /* Previene sbavature fuori dal form */
}
.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--rosa-dominante);
    box-shadow: 0 0 5px rgba(233, 30, 99, 0.2);
}
.btn-submit { width: 100%; font-size: 16px; margin-top: 10px; }

.form-status {
    margin-top: 15px;
    font-size: 14px;
    color: var(--blu-scuro);
}

/* --- FOOTER --- */
footer { background-color: var(--blu-scuro); color: var(--bianco); padding: 32px 16px 20px; }
.footer-container { display: flex; flex-direction: column; gap: 30px; max-width: 1000px; margin: 0 auto; }
footer h4 { color: var(--bianco); margin-bottom: 15px; font-size: 18px; }
footer a { color: var(--bianco); }
footer a:hover { color: var(--rosa-dominante); }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: var(--rosa-dominante); }

.social-icons {
    display: flex;
    gap: 12px;
    margin: 8px 0;
    justify-content: center;
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--bianco);
    color: var(--blu-scuro);
}
.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}
.social-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: var(--bianco);
}
.social-icon.tiktok {
    background-color: #000000;
    color: #ffffff;
}

.highlight {
    background-color: var(--grigio-chiaro);
}
.highlight-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.highlight-box {
    background: var(--bianco);
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.highlight-box h3 {
    color: var(--rosa-dominante);
    margin-bottom: 10px;
}

/* --- DESKTOP MEDIA QUERY (min-width: 768px) --- */
@media (min-width: 768px) {
    .hamburger { display: none; }
    nav { position: static; max-height: none; width: auto; background: none; }
    nav ul { display: flex; gap: 30px; }
    nav ul li a { border: none; padding: 0; }
    .hero h1 { font-size: 54px; }
    .hero p { font-size: 20px; max-width: 700px; margin: 0 auto 30px; }
    .service-card { display: flex; align-items: stretch; }
    .service-img { width: 50%; height: auto; }
    .service-text { width: 50%; padding: 40px; }
    .footer-container { flex-direction: row; justify-content: space-between; }
}