
:root {
    --beige: #F5E6D3;
    --dark-beige: #1A1B26;
    --accent: #E86D3B;
    --shadow: rgba(255, 77, 0, 0.2);
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #d4d4d4;
    background-color: #0a0908;
}

nav {
    padding: 1.5rem;
    background-color: rgba(10, 9, 8, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 3px;
}

.logo span {
    color: var(--accent);
}

.hero {
    background-color: var(--dark-beige);
    min-height: 100vh;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '狐';
    color: #E86D3B;
    position: absolute;
    font-size: 5rem;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 7px;
    opacity: 0.8;
    text-shadow: 0 0 10px var(--shadow);
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #a8a8a8;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--accent);
    text-decoration: none;
    border: 1px solid var(--accent);
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px var(--shadow);
}

.section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section h2 {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 300;
    letter-spacing: 4px;
    color: #fff;
}

.section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: var(--accent);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px var(--shadow);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.card {
    background-color: rgba(26, 24, 20, 0.6);
    padding: 3rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 77, 0, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 77, 0, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}.manifestazioni, .contatti {
    padding: 100px 1rem;
    min-height: 100vh;
}
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label, .submit-button {
    color: #e0e0e0;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.5rem;
    background: #1A1B26;
    border: 1px solid #333;
    color: #e0e0e0;
}
.submit-button {
    background-color: #E86D3B;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
.submit-button:hover {
    background: #a08060;
}

.card:hover::before {
    transform: translateX(100%);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 0, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.card h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
}

footer {
    background-color: rgba(26, 24, 20, 0.8);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    color: #666;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero::before {
        font-size: 6rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card, .hero h1, .hero p, .cta-button {
    animation: fadeIn 1s ease-out forwards;
}