:root {
    --primary-color: #5C4B3C;
    --secondary-color: #8B7355;
    --accent-color: #D4B59E;
    --background-color: #FDF5E6;
    --text-color: #2C1810;
}

.nav-menu {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.nav-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
}

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

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, var(--background-color), white);
    color: var(--text-color);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    min-height: 100vh;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.header-image {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-image img {
    max-width: 50%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.coffee-flower {
    width: 80px;
    height: 80px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.flower-petal {
    fill: var(--accent-color);
}

.flower-center {
    fill: var(--primary-color);
}

h1 {
    font-size: 3rem;
    color: var(--primary-color);
}

.announcement {
    margin: 2rem 0;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-item span {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    background: white;
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.countdown-item label {
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info {
    text-align: center;
    margin: 2rem 0;
}

.info p {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.pre-opening-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.pre-opening-text p {
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

address {
    font-style: normal;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.coffee-animation {
    margin-top: auto;
}

.steam-cup {
    width: 150px;
    height: 150px;
}

.cup, .handle {
    fill: var(--primary-color);
}

.steam {
    stroke: var(--accent-color);
    stroke-width: 2;
    fill: none;
    opacity: 0;
    animation: steam 3s infinite;
}

.steam-2 { animation-delay: 0.3s; }
.steam-3 { animation-delay: 0.6s; }

@keyframes steam {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(1.5);
    }
}

.social-links {
    margin: 2rem 0;
}

.facebook-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.facebook-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: #f8f8f8;
}

.facebook-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
.main-content {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.presentation, .notre-histoire, .horaires, .contact, .services {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.histoire-content {
    text-align: center;
    line-height: 1.8;
}

.histoire-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.histoire-content p {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.day-time {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--accent-color);
}

.day-time span:last-child {
    text-align: right;
}

.day-time span:last-child br {
    display: block;
    content: "";
    margin: 2px 0;
}

.contact-info {
    margin-top: 2rem;
}

.services p {
    margin: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item span {
        font-size: 2rem;
        min-width: 70px;
        padding: 0.5rem;
    }

    .countdown-item label {
        font-size: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .coffee-flower {
        width: 60px;
        height: 60px;
    }

    .info p {
        font-size: 1.2rem;
    }

    .pre-opening-text p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .facebook-link {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .facebook-icon {
        width: 20px;
        height: 20px;
    }

    .main-content {
        padding: 0 0.5rem;
    }

    .presentation, .notre-histoire, .horaires, .contact, .services {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .histoire-content h3 {
        font-size: 1.3rem;
    }

    .map-container {
        margin-top: 1rem;
    }
    
    .map-container iframe {
        height: 250px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 0;
    }

    .nav-list.active {
        display: flex;
    }

    .logo {
        flex-direction: column;
        text-align: center;
    }

    .day-time {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.8rem 0;
    }

    .day-time span:last-child {
        text-align: center;
    }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .header-image img {
    max-width: 75%;
  }
}