/*

Tooplate 2126 Antique Cafe

https://www.tooplate.com/view/2126-antique_cafe

*/


body {
    font-family: 'Raleway', sans-serif;
    background-color: #666;
}

.parallax-window {
    min-height: 1064px;
    background: transparent;
}

p a {
	color: #096B6B;
}

p a:hover {
	color: #9FF;
}

#about p a { color: #066; }
#about p a:hover { color: #F36; }

#contact p a { color: #066; }

footer span a { color: #FFF; }

.tm-logo-font {
    font-family: 'Oswald', sans-serif;
}

.tm-container {
    max-width: 1200px;
}

.tm-text-yellow {
    color: #FC6;
}

.tm-text-gold {
    color: #CC9966;
}

.tm-text-brown {
    color: #544639;
}

.tm-text-green {
    color: #006666;
}
.tm-text-white {
    color: #fff;
}


a.tm-bg-green:hover {
    background-color: #0a8585;
}

.tm-bg-brown {
    background-color: #544639;
}

.tm-bg-green {
    background-color: #006666;
}

.tm-border-gold {
    border-color: #CC9966;
}

.tm-intro-width {
    max-width: 436px;
}

.tm-item-container {
    max-width: 520px;
}

.input:focus {
    outline: none !important;
    border:1px solid #CC9966;
    box-shadow: 0 0 10px #b67533;
}

input::placeholder,
textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(214, 212, 212);
    opacity: 1; /* Firefox */
}
  
input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgb(214, 212, 212);
}
  
input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
    color: rgb(214, 212, 212);
}

#tm-nav {
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(0,0,0,0.7);
}

#tm-nav.scroll {
    background-color: rgba(0,0,0,0.7);
}
#tm-nav, #tm-nav.scroll {
    transition: background-color 0.3s;
}

#tm-nav li a {
    border-bottom-color: transparent;
    transition: all 0.3s ease;
}

#tm-nav li a.current,
#tm-nav li a:hover {
      border-bottom: 4px solid #CC9966;
}

.tm-text-2xl {
    font-size: 1.2rem;
    line-height: 2rem;
}
.icons{
    height: 2rem;
    width: 2rem;
    margin-right: 0.5rem;
}
    .horaires-container {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 12px;
      padding: 30px 40px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      max-width: 400px;
      width: 100%;
    }

    .horaires-container h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #333;
    }

    .horaire {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid #ddd;
      color: #444;
    }

    .horaire:last-child {
      border-bottom: none;
    }

    .jour {
      font-weight: bold;
    }

    .ferme {
      color: #c00;
      font-style: italic;
    }
#overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: none;
}

.popup {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fffbea;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 2.5rem 2rem 2rem 2rem;
    z-index: 1010;
    min-width: 320px;
    max-width: 90vw;
    display: none;
    text-align: center;
    animation: popupFadeIn 0.4s;
}
#popup-mentions-legales {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            max-width: 600px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            padding: 20px;
            z-index: 1000;
        }
        #popup-mentions-legales h1 {
            margin-top: 0;
        }
        #popup-mentions-legales .close-btn-mentions {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: red;
            color: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            cursor: pointer;
        }
        /* Styles pour le fond sombre des mentions légales */
        #overlay-mentions-legales {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

@keyframes popupFadeIn {
    from { opacity: 0; transform: translate(-50%, -60%);}
    to   { opacity: 1; transform: translate(-50%, -50%);}
}

.popup-message {
    font-size: 1.3rem;
    color: #7c5e2c;
    margin-bottom: 2rem;
    font-weight: bold;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.popup-button {
    padding: 0.7rem 2.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(124,94,44,0.08);
}

.popup-button.accept {
    background: linear-gradient(90deg, #ffe082, #ffd54f);
    color: #7c5e2c;
}

.popup-button.accept:hover {
    background: linear-gradient(90deg, #ffd54f, #ffe082);
    color: #5d3b00;
}

.popup-button.decline {
    background: #f5f5f5;
    color: #b71c1c;
}

.popup-button.decline:hover {
    background: #ffeaea;
    color: #d32f2f;
}
.txt-ml:hover{
    color:#7c5e2c;
}


@media (min-width: 768px) {
    #tm-nav.scroll .tm-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 767px) {
    #tm-nav {
        width: auto;
        right: 0;
        border-radius: 5px;
    }
    .parallax-window {
        min-height: 400px;
        background-position: center center !important;
    }
    #nav-items {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.95);
        position: absolute;
        top: 60px;
        right: 0;
        width: 100vw;
        z-index: 999;
        padding-bottom: 2rem;
    }
    #nav-items.open {
        display: flex;
    }
    #tm-nav {
        position: fixed;
        width: 100vw;
        top: 0;
        left: 0;
    }
}

@media (max-width: 639px) {
    .parallax-window {
        min-height: 600px;
    }
}

@media (max-width: 370px) {
    .tm-menu-item {
        flex-direction: column;
    }

    .tm-menu-item-2 {
        flex-direction: column-reverse;
    }

    .tm-menu-item img {
        margin-bottom: 10px;
    }

    .tm-menu-item-2 img {
        margin-bottom: 10px;
    }
}
.sousform {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    display:none;
}
#successModal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  #successContent {
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 20px #0006;
  }

  #successContent button {
    margin-top: 1em;
    padding: 0.5em 1em;
    background: #4CAF50;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
  }
.brgd-404{

    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}