/* ==========================================
   Alla Serra Comunità Agricola - Simple Landing
   ========================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3E5F5C;
    --secondary-color: #F5F0E8;
    --accent-color: #8B9D83;
    --text-dark: #2C3E3B;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--secondary-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Logo */
.logo-wrapper {
    margin-bottom: 2rem;
}

.logo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(62, 95, 92, 0.2);
}

/* Title */
.title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-break {
    display: none;
}

/* Content */
.content {
    margin-bottom: 2.5rem;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.location {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.opening-soon {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-top: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 95, 92, 0.2);
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(62, 95, 92, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .title {
        font-size: 2.5rem;
    }

    .title-break {
        display: inline;
    }

    .subtitle {
        font-size: 1.15rem;
    }

    .location {
        font-size: 1.1rem;
    }

    .opening-soon {
        font-size: 1.3rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-icon {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .location {
        font-size: 1rem;
    }

    .opening-soon {
        font-size: 1.2rem;
    }

    .social-links {
        gap: 1.2rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon svg {
        width: 28px;
        height: 28px;
    }
}
