/* Reset e impostazioni base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #c9a97a;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #fafafa;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container principale */
.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

/* Header section */
.header-section {
    margin-bottom: 3rem;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out;
}

.title-bar {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 1.5rem auto;
    animation: expandWidth 1s ease-out 0.3s both;
}

.subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--light-text);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 0.5s both;
}

/* Message section */
.message {
    margin: 3rem 0;
    padding: 2rem;
}

.message p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--light-text);
    margin-bottom: 1rem;
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--secondary-color);
    font-weight: 600;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Social links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeIn 1s ease-out 0.8s both;
}

.social-links a {
    color: var(--light-text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--light-text);
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Contact */
.contact {
    margin-top: 4rem;
    animation: fadeIn 1s ease-out 1s both;
}

.contact p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.email {
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.email::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.email:hover::after {
    width: 100%;
}

.email:hover {
    color: var(--accent-color);
}

/* Background decoration */
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.background-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 122, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.background-decoration::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .header-section {
        margin-bottom: 2rem;
    }
    
    .title-bar {
        width: 60px;
    }
    
    .message {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .social-links {
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
    .contact {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .name {
        letter-spacing: 1px;
    }
    
    .subtitle {
        letter-spacing: 2px;
    }
    
    .title-bar {
        width: 50px;
    }
}
