* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background: #ffffff;
    min-height: 100vh;
}

/* Navigation - IDENTICA A SHOES */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 70px;
}

nav .container {
    padding: 0 20px !important;
}

nav.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #ff6b9d;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ff6b9d;
}

.back-btn {
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    color: #2c3e50 !important;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
}

.back-btn:hover {
    transform: translateY(-1px);
    color: white !important;
}

.back-btn::after {
    display: none;
}

.contact-btn {
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    color: #2c3e50 !important;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
}

.contact-btn:hover {
    transform: translateY(-1px);
    color: white !important;
}

.contact-btn::after {
    display: none;
}

/* Hero Section with Heading - RIDOTTO */
.heading {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 90px 2rem 2.5rem 2rem;
}

.heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="colorful-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23colorful-dots)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(5px) translateY(-5px); }
    50% { transform: translateX(-3px) translateY(5px); }
    75% { transform: translateX(-5px) translateY(-3px); }
}

.heading h1 {
    font-size: clamp(1.8rem, 5.5vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.heading p {
    font-size: clamp(0.95rem, 2.8vw, 1.2rem);
    max-width: 800px;
    opacity: 0.9;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Padding per le sezioni di contenuto */
.heading + .container,
.founders .container,
.gallery .container {
    padding: 2rem 20px;
}

/* About Section - FIX: Layout responsive */
.section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    animation: fadeInSection 1s ease-out;
    margin-bottom: 3rem;
}

.section.reverse {
    grid-template-columns: 1fr 1fr;
}

.section.reverse .content {
    order: 1;
}

.section.reverse .about-image {
    order: 2;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.about-image:hover::before {
    opacity: 1;
}

.content {
    padding: 2rem 0;
}

.content h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

.content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    border-radius: 2px;
}

.content p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Founders Section */
.founders {
    padding: 4rem 0;
    background: white;
}

.founders h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.founders h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    border-radius: 2px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.founder-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    padding: 4px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.founder-card h4 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.founder-role {
    color: #ff6b9d;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
}

.founder-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    display: none;
}

.gallery-item:hover .gallery-overlay {
    display: none;
}

.button {
    margin: 2rem 0 1rem 0;
    text-align: center;
}

.button a {
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}

.button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #4ecdc4, #ff6b9d);
}

/* Responsive Design */
@media (max-width: 834px) {
    nav {
        padding: 0.5rem 0;
        min-height: 60px;
    }

    .heading {
        min-height: 45vh;
        padding: 80px 1.5rem 2rem 1.5rem;
    }

    .container {
        padding: 2rem 1.5rem;
    }

    .section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .section.reverse .content,
    .section.reverse .about-image {
        order: initial;
    }

    .content h3 {
        text-align: center;
    }

    .content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .content p {
        text-align: left;
    }

    .about-image img {
        height: 300px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .heading {
        padding: 70px 1rem 1.5rem 1rem;
        min-height: 40vh;
    }

    .logo {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .back-btn, .contact-btn {
        padding: 0.7rem 1.5rem;
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .button a {
        padding: 0.8rem 2rem;
    }
}

/* Additional decorative gradients */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}