/* CSS für Cocktail Webseite */
/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */
.headernav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 20px 100px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari */
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    transform: translate3d(0,0,0);
    z-index: 200;
}
/* .headernav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transition: .5s;
}
.headernav:hover::before {
    left: 100%;
} */
.logo {
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
}
.navbar a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    margin-left: 35px;
    transition: .3s;
}
.navbar a:hover {
    color: #00ccff;

}
#menu-icon {
    font-size: 36px;
    color: #fff;
    display: none;
}

/* SupHeader */
.header {
    position: absolute;
    top: 70px;
    background: url('/static/images/cocktails/Cocktails_header.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transform: translate3d(0,0,0);
    z-index: 90;
}
.welcome {
    font-family: 'Arial Black', Gadget, sans-serif; /* oder eine beliebige fancy Schriftart */
    font-size: 2em;
    color: #00ccff; /* Helle, auffällige Farbe */
    text-shadow: 
        0 0 5px #000,
        0 0 10px #00ccff, 
        0 0 15px #00ccff, 
        0 0 20px #0099ff, 
        0 0 25px #0099ff, 
        0 0 30px #0066ff, 
        0 0 35px #0033ff;
    letter-spacing: 2px; /* Erhöht den Abstand zwischen den Buchstaben */
    margin: 0;
    padding: 20px;
}
/* Logo */
.logo-image {
    width: 600;;
    height: 50px;
    display: block;
    position: absolute;
    z-index: 1;
}

/* Content */
body {
    position: relative;
    width: 100%;
    background-color: #2c2c2c;
    color: #f2f2f2;
    /* font-family: Arial, sans-serif; */
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    z-index: 97;
}

.content {
    width: 100%;
    position: absolute;
    top: 320px;
}
/* .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
} */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

p {
    text-align: center;
}
.section {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.section h3 {
    text-align: center;
    font-size: 1.5em;
    color: #f2f2f2;
    margin: 20px 0;
}
.card {
    /* background-color: #444;
    border-radius: 8px;
    margin: 10px;
    width: calc(33.333% - 20px); /* 3 Karten pro Zeile auf großen Bildschirmen */
    max-width: 300px; /* Begrenzung der maximalen Breite */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, border-radius 0.3s;
    box-sizing: border-box;
    overflow: hidden; /* Verhindert Überlaufen des Inhalts */
}
.card:hover {
    transform: scale(1.05);
    border-radius: 8px; /* Beibehaltung der abgerundeten Ecken beim Hovern */
} */
.card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.5);
}

.card img {
    border-radius: 8px 8px 0 0; /* Abgerundete Ecken des Bildes */
    width: 100%;
    height: auto;
    display: block; /* Entfernt Lücken unter dem Bild */
}
.card a {
    color: #f2f2f2;
    text-decoration: none;
    display: block;
}
.card a div {
    padding: 10px;
    font-size: 1em;
}
.card a:hover {
    background-color: #555;
}
.cocktail {
    background-color: #2c2c2c;
    color: #f2f2f2;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.cocktail_card {
    background-color: #444;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.cocktail_inhalt {
    text-align: left;
}
.cocktail_card img {
    max-width: 100%;
    border-radius: 8px;
}
.cocktail_card h1 {
    margin-top: 20px;
}
.cocktail_card p {
    margin-top: 10px;
    line-height: 1.6;
    max-width: 800px;
}
/* Galerie */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.gallery a {
    text-decoration: none;
    display: inline-block;
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: relative;
}
.gallery a img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.gallery a img.lazyload {
    opacity: 0;
}
.gallery a img.lazyloaded {
    opacity: 1;
    transition: opacity 0.3s;
}

#gallery-fullview {
    width: 100vw;
    height: 100vh;
    padding: 2em 5vw 8vh 5vw;
    background-color: #888;
    box-sizing: border-box;
    border-radius: 10px;
}
#gallery-fullview::backdrop { 
    background: rgb(200 200 200 / 0.8);
}
#gallery-fullview figure {
    border: thin solid #aaa;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: #ccc;
}
#gallery-fullview img {
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#gallery-fullview figcaption {
    font-style: italic;
    text-align: center;
    background-color: white;
}
#gallery-fullview button {
    position: absolute;
    width: 2rem;
    height: 2rem;
    cursor: pointer;	
    border: 0;
    background-color: transparent;
    --fill: none;
    --stroke: white;
}
#gallery-fullview button:focus {
    outline: none;
}
#gallery-fullview button[value=close],
#gallery-fullview button[value=shuffle],
#gallery-fullview button[value=play] {
    top: 0;
    right: 0;
    --fill: firebrick;
}
#gallery-fullview button[value=close]:hover,
#gallery-fullview button[value=close]:focus,
#gallery-fullview button[value=shuffle]:hover,
#gallery-fullview button[value=shuffle]:focus,
#gallery-fullview button[value=play]:hover,
#gallery-fullview button[value=play]:focus {
    --fill: red;
}
#gallery-fullview button[value=shuffle],
#gallery-fullview button[value=play] {
    right: 4rem;
}
#gallery-fullview .shuffle button[value=shuffle] svg:nth-of-type(1),
#gallery-fullview .play button[value=play] svg:nth-of-type(1) {
    display: none;
}
#gallery-fullview .shuffle button[value=shuffle] svg:nth-of-type(2),
#gallery-fullview .play button[value=play] svg:nth-of-type(2) {
    display: inline;
}
#gallery-fullview button[value=prev],
#gallery-fullview button[value=next] {
    top: calc(50% - 100px);
    width: 100px;
    height: 200px;
    padding: 0;
    --stroke: #fff6;
}
#gallery-fullview button[value=prev]:hover,
#gallery-fullview button[value=prev]:focus,
#gallery-fullview button[value=next]:hover,
#gallery-fullview button[value=next]:focus {
    --stroke: skyblue;
}
#gallery-fullview button[value=prev] {
    left: 2vw;
}
#gallery-fullview button[value=next] {
    right: 2vw;
}
.visually-hidden {
    position: absolute !important; 
    clip: rect(1px, 1px, 1px, 1px) !important; 
    padding: 0 !important; 
    border: 0 !important; 
    height: 1px !important; 
    width: 1px !important; 
    overflow: hidden !important; 
    white-space: nowrap !important; 
}
button {
  padding: 0.6em 2em;
  margin-top: 20px;
  margin-bottom: 20px;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: skyblue;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

button:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
  transform: scale(100%);
}
button:active {
    transform: scale(0.95);
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

button:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0ccf;
  left: 0;
  top: 0;
  border-radius: 10px;
}
/* kontakt */
.kontakt-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.kontakt-container p {
    margin-top: 25px;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;

}

input, textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}


/* upload */
.upload-h1 {
    margin: 35px;
    text-align: center;
}
.upload-container {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 2px dashed #ccc;
    border-radius: 5px;
    text-align: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.upload-container.dragover {
    background-color: #f0f0f0;
}
.upload-container p {
    margin-top: 20px;
    font-size: 20px;
}
.upload-input {
    display: none;
}
#upload-icon {
    margin-top: 25px;
    font-size: 75px;
    color: #fff;
    display: block;
}
.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.preview {
    position: relative;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #ddd;
    cursor: pointer;
}
.preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #4caf50;
}
.progress-bar {
    width: 0;
    height: 100%;
    background-color: #4caf50;
    transition: width 0.2s;
}
.remove-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: red;
    color: white;
    text-align: center;
    border-radius: 50%;
    display: none;
    cursor: pointer;
}
.preview:hover .remove-icon {
    display: block;
}
.upload-btn-container {
    text-align: center;
    margin-top: 20px;
}
.upload_success {
    margin: 20px auto;
    text-align: center;
    align-items: center;
    position: relative;
}
.upload_success h1 {
    text-align: center;
}
.upload_success p {
    margin-top: 25px;
    text-align: center;
}
.upload_success i {
    color: green;
    font-size: 50px;
}

.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 20px auto;
    
    .check-icon {
        width: 80px;
        height: 80px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 4px solid #4CAF50;
        
        &::before {
            top: 3px;
            left: -2px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }
        
        &::after {
            top: 0;
            left: 30px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            animation: rotate-circle 4.25s ease-in;
        }
        
        &::before, &::after {
            content: '';
            height: 100px;
            position: absolute;
            background: #2c2c2c;
            transform: rotate(-45deg);
        }
        
        .icon-line {
            height: 5px;
            background-color: #4CAF50;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 10;
            
            &.line-tip {
                top: 46px;
                left: 14px;
                width: 25px;
                transform: rotate(45deg);
                animation: icon-line-tip 0.75s;
            }
            
            &.line-long {
                top: 38px;
                right: 8px;
                width: 47px;
                transform: rotate(-45deg);
                animation: icon-line-long 0.75s;
            }
        }
        
        .icon-circle {
            top: -4px;
            left: -4px;
            z-index: 10;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            box-sizing: content-box;
            border: 4px solid rgba(76, 175, 80, .5);
        }
        
        .icon-fix {
            top: 8px;
            width: 5px;
            left: 26px;
            z-index: 1;
            height: 85px;
            position: absolute;
            transform: rotate(-45deg);
            background-color: #2c2c2c;
        }
    }
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}
/* impressum */
.impressum_container {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    align-items: center;
}

h2, h3 {
    color: #fff;
    margin-top: 20px;
    text-align: center;
}

.impressum_container p {
    margin-top: 25px;
    color: #a7a6a6;
}

.impressum_container a {
    color: #007BFF;
    text-decoration: none;
}

.impressum_container a:hover {
    text-decoration: underline;
}
/* Ordeer */
/* Bestell-Button */
.order-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

.order-button:hover {
    background-color: #0056b3;
}
.order_section {
    display: grid;
    align-items: center;
    margin: 20px;
}
.order_section p {
    margin-top: 15px;
}
.status-in_warteschlange {
    color: orangered;
}

.status-in_bearbeitung {
    color:yellow;
}

.status-fertig {
    font-size: 24px;
    color: green;
}
.queue {
    font-size: 26px;
    display: flex;
    align-items: center;
    max-width: 800px;
    justify-content: space-between;
}
.qbutton {
    font-size: 26px;
    margin-left: 50px;
}

/* Update-Button */
.update-button {
    display: inline-block;
    padding: 5px 10px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 10px;
}

.update-button:hover {
    background-color: #218838;
}

/* BREAKPOINTS */
@media (max-width: 992px) {
    .headernav {
        padding: 1.25rem 4%;
    }
    .card {
        width: calc(50% - 20px); /* 2 Karten pro Zeile auf mittelgroßen Bildschirmen */
    }
}
@media (max-width: 676px) {
    #menu-icon{
        display: block;
        z-index: 300
    }
    .navbar {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        padding: .5rem 4%;
        display: none;
        transform: translate3d(0,0,0);
        z-index: 300;
    }
    .navbar.active {
        display: block;
    }
    .navbar a {
        display: block;
        margin: 1.2rem 0;
        transform: translate3d(0,0,0);
        z-index: 300;
    }
    .nav-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 320px;
        background: rgba(255, 255, 255, .1);
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); /* Safari */
        display: none;
        transform: translate3d(0,0,0);
        z-index: 100;
    }
    .nav-bg.active {
        display: block;
    }
    .card {
        width: calc(100% - 20px); /* 1 Karte pro Zeile auf kleinen Bildschirmen */
    }
    /* .card:hover {
        font-size: 1.2em;
        height: 200px;
    } */
    .welcome {
        font-size: 1.5em; /* Kleinere Schriftgröße auf mobilen Geräten */
        padding: 10px;
    }
}
/* Timer */ 
.timer {
    font-family: "agency fb";
    width: auto;
    height: auto;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
.timer .flipdown {
    margin: auto;
    text-align: center;
}
.timer .flipdown h2 {
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    color: #00ffd5;
    justify-content: center;
    display: flex;
}
.timer .flipdown h1 {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    justify-content: center;
    display: flex;
}
/* .rotor-group-heading {
    margin-bottom: 10px;
} */
/* flipdown */

  

/* 404 */
