/*
Theme Name: MPWine - Coming Soon
Theme URI: https://mpwine.ch
Author: Gioacchino Poletto
Author URI: https://gioacchinopoletto.info
Description: Splash page "Coming Soon" per MPWine. Un tema minimalista ed elegante per annunciare il lancio del sito.
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mpwine
Tags: one-column, custom-colors, accessibility-ready, blog
*/

/* Body e layout principale */
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #f8f8f8;
    color: #333333;
    overflow-x: hidden;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.language-switcher .lang-link {
    display: inline-block;
    padding: 0 8px;
    color: #8b4513;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: normal;
    transition: all 0.3s ease;
}

.language-switcher .lang-link:hover {
    color: #6d3610;
    text-decoration: underline;
}

/* Container principale */
.coming-soon-container {
    animation: fadeIn 1.5s ease-in-out;
}

/* Tagline */
.tagline {
    letter-spacing: 1px;
}

/* Contatti */
.contact-item {
    color: #8b4513;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #6d3610;
    transform: translateY(-2px);
}

/* Social links */
.social-links a {
    color: #8b4513;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #6d3610;
    transform: translateY(-3px);
}

/* Admin link */
.admin-link {
    color: #8b4513;
    text-decoration: none;
}

.admin-link:hover {
    color: #6d3610;
}

/* Animazioni */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Language Switcher */
@media (max-width: 480px) {
    .language-switcher {
        position: static;
        justify-content: center;
        margin-bottom: 20px;
        padding-top: 10px;
    }
}