/* Styles pour la page d'attente de Copines Comme Fromages */
@import url('https://fonts.googleapis.com/css2?family=REM:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Play:wght@400;700&display=swap');


/* Réinitialisation des styles par défaut */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables CSS */
:root {
    --primary-color: #BF7447;
    --secondary-color: #935a37;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* Styles de base */
body {
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
}

.logo {
    height: 270px;
    opacity: 0.75;
    margin: 30px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    color: #BF7447;
    font-family: "thirsty-script", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    position: relative;
    min-height: 2.5em;
    display: block;
    cursor: default;
}

.hover-replace {
    position: relative;
    display: inline-block;
}

.hover-replace .default-text,
.hover-replace .hover-text {
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
}

.hover-replace .hover-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(10px);
}

.hover-replace:hover .default-text {
    opacity: 0;
    transform: translateY(-10px);
}

.hover-replace:hover .hover-text {
    opacity: 1;
    transform: translateY(0);
}
.opening-hours {
    margin-top: 20px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}
.subscribe-button {
    background-color: var(--text-color);
    color: var(--white);
    border-radius: 4px;
    padding: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.subscribe-button:hover {
    background-color: #000;
}
footer {
    position: fixed;
    bottom: 0;
    left:0;
    width: 100%;
    text-align: center;
    padding: 6px;
    background-color: var(--text-color);
    color: var(--light-gray);
}
footer p {
    font-size: 0.5em;
    line-height: 1;
    color: var(--light-gray);
    text-transform: uppercase;
}

/* Grille de contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 30px auto;
    text-align: center;
    align-items: start; /* Alignement en haut pour toutes les cellules */
}

.contact-col {
    text-align: center;
    font-size: 0.9rem;
}

.contact-col a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
    display: block; /* Assure que le lien prend toute la largeur */
}

.contact-col a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.contact-col a:hover {
    color: var(--secondary-color);
}

/* Réseaux sociaux */
.social-follow {
    margin: 30px 0 60px;
    text-align: center;
}

.social-follow span {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.social-follow a {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    background-color: var(--text-color);
    color: white;
    margin: 0 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-follow a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-follow i {
    font-size: 0.9rem;
}

/* Style responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .contact-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    p {
        font-size: 1rem;
    }
    
    .logo {
        height: 200px;
        margin-top: 30px;
    }
}
