/* Reset & Base */
:root {
    --primary-color: #1B263B;
    /* Deep Navy */
    --secondary-color: #0D1B2A;
    /* Darker Navy */
    --accent-color: #C5A059;
    /* Gold/Bronze */
    --accent-hover: #A88645;
    --text-color: #333333;
    --light-text: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-nav {
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(27, 38, 59, 0.85), rgba(27, 38, 59, 0.7)), url('hero-image.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 90px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.gold-text {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Intro Section */
.section-intro {
    padding: 60px 0;
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
}

.intro-box {
    max-width: 800px;
    margin: 0 auto;
}

.intro-box h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Studio Section */
.section-studio {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.overline {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.studio-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.studio-text p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.studio-text h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.collaborators-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.collaborators-list li {
    position: relative;
    padding-left: 20px;
    color: var(--text-color);
    font-weight: 500;
}

.collaborators-list li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.mt-4 {
    margin-top: 2rem;
}

/* Attività Section */
.section-attivita {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.service-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--light-text);
    padding-left: 15px;
    position: relative;
}

.service-card ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Pareri Section */
.section-pareri {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.pareri-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.pareri-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-info p,
.footer-info address {
    margin-bottom: 15px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

.footer-info a {
    color: var(--white);
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}

.footer-info a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.footer-hours h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }

    .hero {
        margin-top: 70px;
        height: auto;
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding-top: 40px;
        transition: 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .studio-content {
        max-width: 900px;
        margin: 0 auto;
        text-align: justify;
    }

    .studio-text p {
        margin-bottom: 20px;
        color: var(--light-text);
    }

    .studio-text h3 {
        margin-top: 40px;
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

    .collaborators-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-bottom: 30px;
    }

    .collaborators-list li {
        position: relative;
        padding-left: 20px;
        color: var(--text-color);
        font-weight: 500;
    }

    .collaborators-list li::before {
        content: "•";
        color: var(--accent-color);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    .mt-4 {
        margin-top: 2rem;
    }

    /* Attività Section */
    .section-attivita {
        padding: 100px 0;
        background-color: var(--bg-light);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        background-color: var(--white);
        padding: 40px;
        border-radius: 4px;
        box-shadow: var(--shadow);
        transition: transform 0.3s ease;
        border-top: 3px solid transparent;
    }

    .service-card:hover {
        transform: translateY(-5px);
        border-top-color: var(--accent-color);
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }

    .service-card ul li {
        margin-bottom: 10px;
        font-size: 0.95rem;
        color: var(--light-text);
        padding-left: 15px;
        position: relative;
    }

    .service-card ul li::before {
        content: "›";
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-weight: bold;
    }

    /* Pareri Section */
    .section-pareri {
        padding: 80px 0;
        background-color: var(--primary-color);
        color: var(--white);
        text-align: center;
    }

    .pareri-content h2 {
        color: var(--white);
        margin-bottom: 20px;
    }

    .pareri-content p {
        max-width: 700px;
        margin: 0 auto 30px;
        opacity: 0.9;
    }

    /* Footer */
    .footer {
        background-color: var(--secondary-color);
        color: var(--white);
        padding: 80px 0 20px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-info h3 {
        color: var(--white);
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

    .footer-info p,
    .footer-info address {
        margin-bottom: 15px;
        font-style: normal;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer-info a {
        color: var(--white);
        border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    }

    .footer-info a:hover {
        color: var(--accent-color);
        border-bottom-color: var(--accent-color);
    }

    .footer-hours h4 {
        color: var(--accent-color);
        margin-bottom: 20px;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .navbar {
            height: 70px;
        }

        .hero {
            margin-top: 70px;
            height: auto;
            padding: 100px 0;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .nav-links {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background-color: var(--white);
            flex-direction: column;
            padding-top: 40px;
            transition: 0.3s;
        }

        .nav-links.active {
            left: 0;
        }

        .studio-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: justify;
        }

        .studio-text p {
            margin-bottom: 20px;
            color: var(--light-text);
        }

        .studio-text h3 {
            margin-top: 40px;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .collaborators-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }

        .collaborators-list li {
            position: relative;
            padding-left: 20px;
            color: var(--text-color);
            font-weight: 500;
        }

        .collaborators-list li::before {
            content: "•";
            color: var(--accent-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .mt-4 {
            margin-top: 2rem;
        }

        /* Attività Section */
        .section-attivita {
            padding: 100px 0;
            background-color: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            padding: 40px;
            border-radius: 4px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            border-top: 3px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-top-color: var(--accent-color);
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 15px;
        }

        .service-card ul li {
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: var(--light-text);
            padding-left: 15px;
            position: relative;
        }

        .service-card ul li::before {
            content: "›";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* Pareri Section */
        .section-pareri {
            padding: 80px 0;
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
        }

        .pareri-content h2 {
            color: var(--white);
            margin-bottom: 20px;
        }

        .pareri-content p {
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        /* Footer */
        .footer {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 80px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-info h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .footer-info p,
        .footer-info address {
            margin-bottom: 15px;
            font-style: normal;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-info a {
            color: var(--white);
            border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
        }

        .footer-info a:hover {
            color: var(--accent-color);
            border-bottom-color: var(--accent-color);
        }

        .footer-hours h4 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-family: var(--font-sans);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                height: 70px;
            }

            .hero {
                margin-top: 70px;
                height: auto;
                padding: 100px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--white);
                flex-direction: column;
                padding-top: 40px;
                transition: 0.3s;
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-buttons {
                flex-direction: column;
            }
        }

        .email-text {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: 4px;
            font-family: var(--font-sans);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.2);
            border-color: var(--accent-color);
        }

        .contact-form button {
            align-self: center;
            min-width: 200px;
            margin-top: 10px;
            border: none;
            font-size: 1rem;
        }