﻿/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #003a66, #001d33);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding: 20px;
}

/* -------------------------
   ANIMIERTES LOGO
-------------------------- */
.logo-container {
    position: absolute;
    top: 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border: 3px solid #fff;
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
}

.logo-text {
    margin-top: 8px;
    letter-spacing: 3px;
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes pulse {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.25); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* -------------------------
   CONTENT BOX
-------------------------- */
.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.content {
    max-width: 600px;
    width: 90%;
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255,255,255,0.2);
}

p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.small {
    margin-top: 25px;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* -------------------------
   COUNTDOWN
-------------------------- */
#countdown {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

#countdown div {
    text-align: center;
}

#countdown span {
    font-size: 2.2rem;
    font-weight: bold;
}

#countdown p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* -------------------------
   FADE-IN ANIMATION
-------------------------- */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.4s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* MOBILE */
@media (max-width: 500px) {
    h1 { font-size: 2rem; }
    p { font-size: 1rem; }
    #countdown span { font-size: 1.5rem; }
    #countdown { gap: 10px; }
}


/* -------------------------
   INFO BOX
-------------------------- */
.info-box {
    margin-top: 35px;
    text-align: center;
}

.info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Öffnungszeiten Liste */
.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0 auto 25px;
    width: fit-content;
    text-align: left;
}

.opening-hours li {
    font-size: 1rem;
    margin: 5px 0;
    opacity: 0.9;
}


/* -------------------------
   RUNDE ICON BUTTONS
-------------------------- */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
}

/* Allgemeiner Style */
.call-btn, .insta-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: 0.25s ease;
    box-shadow: 0 0 12px rgba(0,0,0,0.25);
}

/* Anruf-Button */
.call-btn {
    background: #008cff;
}

/* Instagram-Button */
.insta-btn {
    background: linear-gradient(45deg, #feda77, #dd2a7b, #8134af, #515bd4);
}

/* Hover Effekt */
.call-btn:hover, .insta-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 0 16px rgba(255,255,255,0.5);
}

/* Mobile Anpassung */
@media (max-width: 500px) {
    .call-btn, .insta-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}


/* Farben */
.call-btn {
    background: #009bff;
}

.insta-btn {
    background: linear-gradient(45deg, #feda77, #dd2a7b, #8134af, #515bd4);
}

/* Hover Effekt */
.call-btn:hover, .insta-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 500px) {
    .opening-hours li { font-size: 0.9rem; }
}
