* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --verde-logo: #2F4B24;
    --oro-gf: #D9A441;
    --rosso-caldo: #A93322;
    --giallo-coltello: #E6BB52;
    --nero-profondo: #1A1A1A;
    --bianco-caldo: #FAF9F6;
    --grigio-beige: #D7C9BD;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--nero-profondo);
    background-color: var(--bianco-caldo);
    line-height: 1.6;
    overflow-x: hidden;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: none; /* nasconde il logo in alto a sinistra */
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--bianco-caldo);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--oro-gf);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--oro-gf);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.language-selector {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--oro-gf);
    color: var(--oro-gf);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--oro-gf);
    color: var(--nero-profondo);
}

.lang-btn.active {
    background: var(--oro-gf);
    color: var(--nero-profondo);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: var(--nero-profondo);
    margin-top: 70px;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    color: var(--bianco-caldo);
    text-align: center;
}

.hero-logo {
    width: 540px;           /* dimensione più equilibrata del logo */
    max-width: 40vw;        /* limite su schermi grandi */
    height: auto;
    display: block;
    margin: 0 auto 40px;    /* centrato sopra i bottoni */
    transform: none;        /* niente spostamento a destra */
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--oro-gf);
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-tagline {
    font-size: 16px;
    color: var(--grigio-beige);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--oro-gf);
    color: var(--nero-profondo);
}

.btn-primary:hover {
    background: var(--giallo-coltello);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 164, 65, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--bianco-caldo);
    border: 2px solid var(--bianco-caldo);
}

.btn-secondary:hover {
    background: var(--bianco-caldo);
    color: var(--nero-profondo);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: var(--oro-gf);
    letter-spacing: 3px;
}

.services {
    padding: 100px 60px;
    background: var(--nero-profondo);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--grigio-beige);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--verde-logo);
    padding: 25px 25px 15px;
}

.service-card p {
    padding: 0 25px 20px;
    color: var(--nero-profondo);
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    padding: 0 25px 25px;
    color: var(--rosso-caldo);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--oro-gf);
}

.why-choose {
    padding: 100px 60px;
    background: var(--bianco-caldo);
}

.why-choose .section-title {
    color: var(--verde-logo);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--verde-logo);
    margin-bottom: 15px;
}

.why-item p {
    color: #555;
    line-height: 1.7;
}

.about-section {
    padding: 100px 60px;
    background: var(--grigio-beige);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-section .section-title {
    color: var(--verde-logo);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--verde-logo);
    margin-bottom: 30px;
}

.about-bio p {
    margin-bottom: 20px;
    color: var(--nero-profondo);
    line-height: 1.8;
    text-align: justify;
}

.specialties {
    padding: 100px 60px;
    background: var(--nero-profondo);
}

.specialties-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.specialties-text h2 {
    text-align: left;
    margin-bottom: 40px;
}

.specialties-list {
    list-style: none;
    padding-left: 0;
}

.specialties-list li {
    font-size: 20px;
    padding: 18px 0;
    padding-left: 35px;
    position: relative;
    color: var(--bianco-caldo);
}

.specialties-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--oro-gf);
    font-size: 30px;
}

.specialties-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.specialties-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.milestones {
    padding: 100px 60px;
    background: var(--grigio-beige);
}

.milestones .section-title {
    color: var(--verde-logo);
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.milestone-card {
    background: white;
    border: 2px solid var(--oro-gf);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.milestone-card:hover {
    background: var(--oro-gf);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(217, 164, 65, 0.3);
}

.milestone-card:hover h3,
.milestone-card:hover p {
    color: var(--nero-profondo);
}

.milestone-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.milestone-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--verde-logo);
    margin-bottom: 10px;
}

.milestone-card p {
    font-size: 14px;
    color: #555;
}

.consulting-section {
    padding: 100px 60px;
    background: var(--nero-profondo);
}

.consulting-container {
    max-width: 1400px;
    margin: 0 auto;
}

.consulting-intro {
    text-align: center;
    font-size: 18px;
    color: var(--grigio-beige);
    max-width: 800px;
    margin: 0 auto 60px;
}

.consulting-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.consulting-card {
    background: var(--grigio-beige);
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.consulting-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.3);
}

.consulting-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--verde-logo);
    margin-bottom: 15px;
}

.consulting-card p {
    color: var(--nero-profondo);
    line-height: 1.7;
}

.consulting-cta {
    text-align: center;
    background: var(--grigio-beige);
    padding: 50px;
    border-radius: 20px;
}

.consulting-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--verde-logo);
    margin-bottom: 25px;
}

.private-chef-section {
    padding: 100px 60px;
    background: var(--bianco-caldo);
}

.private-chef-container {
    max-width: 1400px;
    margin: 0 auto;
}

.private-chef-section .section-title {
    color: var(--verde-logo);
}

.private-chef-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
}

.subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--verde-logo);
    text-align: center;
    margin-bottom: 40px;
}

.chef-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.chef-type-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.chef-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.chef-type-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--verde-logo);
    margin-bottom: 15px;
}

.chef-type-card p {
    color: #555;
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--oro-gf);
    color: var(--nero-profondo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--verde-logo);
    margin-bottom: 12px;
}

.step-item p {
    color: #555;
    line-height: 1.6;
}

.private-chef-cta {
    text-align: center;
}

.courses-section {
    padding: 100px 60px;
    background: var(--grigio-beige);
}

.courses-container {
    max-width: 1400px;
    margin: 0 auto;
}

.courses-section .section-title {
    color: var(--verde-logo);
}

.courses-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--verde-logo);
    margin-bottom: 30px;
    text-align: center;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.course-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.course-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.course-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--verde-logo);
    margin-bottom: 12px;
}

.course-item p {
    color: #555;
    line-height: 1.7;
}

.courses-cta {
    text-align: center;
}

.testimonials {
    padding: 100px 60px;
    background: var(--nero-profondo);
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.testimonials-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.testimonials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-list {
    list-style: none;
    padding-left: 0;
}

.testimonials-list li {
    font-size: 18px;
    padding: 20px 0;
    padding-left: 35px;
    position: relative;
    color: var(--bianco-caldo);
    font-style: italic;
}

.testimonials-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--oro-gf);
    font-size: 24px;
    font-style: normal;
}

.next-steps {
    padding: 100px 60px;
    background: var(--grigio-beige);
}

.next-steps-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.next-steps-title h2 {
    text-align: left;
    color: var(--verde-logo);
}

.next-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(10px);
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--verde-logo);
    margin-bottom: 15px;
}

.step-card ul {
    list-style: none;
    padding-left: 0;
}

.step-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.step-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--oro-gf);
    font-weight: bold;
}

.contact {
    padding: 100px 60px;
    background: var(--nero-profondo);
    color: var(--bianco-caldo);
}

.contact .section-title {
    color: var(--oro-gf);
}

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--grigio-beige);
    margin-bottom: 60px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--oro-gf);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--grigio-beige);
    border-radius: 10px;
    background: rgba(250, 249, 246, 0.1);
    color: var(--bianco-caldo);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--oro-gf);
    background: rgba(250, 249, 246, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 10px;
}

.contact-direct {
    background: var(--grigio-beige);
    padding: 40px;
    border-radius: 20px;
    color: var(--nero-profondo);
}

.contact-direct h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--verde-logo);
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.contact-icon {
    font-size: 24px;
}

.contact-item a {
    color: var(--verde-logo);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--oro-gf);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.btn-whatsapp:hover {
    background: #20BA5A;
}

.faq-section {
    padding: 100px 60px;
    background: var(--bianco-caldo);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section .section-title {
    color: var(--verde-logo);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--verde-logo);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(47, 75, 36, 0.05);
}

.faq-icon {
    font-size: 24px;
    color: var(--oro-gf);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
}

.main-footer {
    background: var(--nero-profondo);
    color: var(--bianco-caldo);
    padding: 60px 60px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--oro-gf);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--grigio-beige);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--grigio-beige);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--oro-gf);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(215, 201, 189, 0.2);
    color: var(--grigio-beige);
    font-size: 14px;
}

@media (max-width: 1200px) {
    .services-grid,
    .why-grid,
    .chef-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .milestones-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s ease;
    }
    .nav-menu.active {
        left: 0;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-image {
        height: 50vh;
    }
    .services-grid,
    .why-grid,
    .consulting-services,
    .
    chef-types-grid,
.courses-categories {
grid-template-columns: 1fr;
}
.about-content,
.specialties-content,
.testimonials-content,
.next-steps-content,
.contact-container {
grid-template-columns: 1fr;
gap: 40px;
}
.next-steps-title h2 {
text-align: center;
}
.specialties-text h2 {
text-align: center;
}
.milestones-grid {
grid-template-columns: repeat(2, 1fr);
}
.steps-grid {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
gap: 40px;
}
}
@media (max-width: 640px) {
.hero-content {
padding: 40px 20px;
}
.hero-title {
font-size: 36px;
}
.section-title {
font-size: 28px;
}
.services,
.why-choose,
.about-section,
.specialties,
.milestones,
.consulting-section,
.private-chef-section,
.courses-section,
.testimonials,
.next-steps,
.contact,
.faq-section {
padding: 60px 20px;
}
.milestones-grid {
grid-template-columns: 1fr;
}
.hero-cta {
flex-direction: column;
width: 100%;
}
.hero-cta .btn {
width: 100%;
}
.nav-container {
padding: 0 20px;
}
}
