/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow:scroll;
    height: 100%;
}

/* =========================
   LOADER
========================= */
.loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle, #000, #1a0000);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.loader-logo {
    font-size: clamp(4rem, 6vw, 4rem);
    letter-spacing: 10px;
    color: gold;
    animation: pulse 1.5s infinite alternate;
}

/* =========================
   HEADER
========================= */
header {
    position: absolute;
    top: 20px;
    left: 25px;
    z-index: 10;
}

.logo {
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 6px;
    color: gold;
    font-weight: bold;
}

/* =========================
   HERO
========================= */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* =========================
   BACKGROUND ANIMATION
========================= */
.bg-animation {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        #1a0000,
        #5a1a00,
        #2c0202,
        #3a0000,
        #4b2e00,
        #000000
    );
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    filter: blur(80px);
}

/* =========================
   CONTENT BOX
========================= */
.content {
    position: relative;
    text-align: center;
    padding: 40px;
    backdrop-filter: blur(20px);
    border-radius: 25px;
    max-width: 750px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 40px rgba(255, 200, 0, 0.05);
}

/* =========================
   TITLE (Café • Bar • Bistro)
========================= */
.title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: bold;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

/* HEARTBEAT + GRADIENT TEXT */
.title span {
    background: linear-gradient(90deg, white, blue, white, white);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: 
        heartbeat 7.5s infinite,
        textGradient 5s linear infinite,
        glow 2s infinite alternate;
}

/* =========================
   SUBTITLE
========================= */
.subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: gold;
    margin-bottom: 20px;
    animation: fadeIn 2s infinite alternate;
}

/* =========================
   TEXT CONTENT
========================= */
.info-box {
    margin-bottom: 20px;
}

.info-box p {
    margin-bottom: 15px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.6;
    opacity: 0.85;
}

.highlight {
    color: gold;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,200,0,0.4);
}

/* =========================
   CONTACT
========================= */
.contact {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.05);
    padding: 12px;
    border-radius: 12px;
    transition: 0.3s;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-item i {
    margin-right: 10px;
    color: gold;
}

.contact-item:hover {
    background: rgba(255,215,0,0.15);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 15px rgba(255,200,0,0.3);
}

/* =========================
   SOCIAL ICONS
========================= */
.social {
    margin-top: 25px;
}

.social a {
    margin: 0 12px;
    font-size: 1.8rem;
    color: gold;
    transition: 0.3s;
}

.social a:hover {
    transform: scale(1.4);
    color: #ffcc70;
    text-shadow: 0 0 15px gold;
}

/* =========================
   FOOTER
========================= */
footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* =========================
   CONSTRUCTION TEXT (FOCUS)
========================= */
.construction {
    position: absolute;
    display: inline-block;
    margin-bottom: 10px !important;
    padding-bottom: 20px;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-top: -30px;
    margin-left: -150px !important;

    animation: textFocus 2s ease-in-out infinite alternate;
}

/* ANIMIERTE LINIE */
.construction::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        gold,
        #ff4d00,
        #ffcc70,
        #ff0000,
        gold
    );

    background-size: 300%;
    animation: lineMove 4s linear infinite;

    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.8);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textGradient {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.15); }
    40% { transform: scale(1); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 200, 100, 0.3);
    }
    to {
        text-shadow: 0 0 25px rgba(255, 180, 0, 0.9);
    }
}

@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

@keyframes pulse {
    from { transform: scale(1); opacity: 0.5; }
    to { transform: scale(1.2); opacity: 1; }
}

@keyframes lineMove {
    0% { background-position: 0%; }
    100% { background-position: 300%; }
}

@keyframes textFocus {
    from {
        color: rgba(255,255,255,0.6);
        text-shadow: 0 0 5px rgba(255,200,0,0.2);
    }
    to {
        color: #fff;
        text-shadow: 0 0 20px rgba(255,200,0,0.9);
    }
}

/* =========================
   MOBILE OPTIMIERUNG
========================= */
@media (max-width: 600px) {
    .content {
        padding: 20px;
    }

    .title {
        gap: 5px;
    }

    .contact {
        gap: 8px;
    }

    .social a {
        font-size: 1.5rem;
    }
    /* =========================
   CONSTRUCTION TEXT (FOCUS)
========================= */
.construction {
    position: absolute;
    display: inline-block;
    margin-bottom: 10px !important;
    padding-bottom: 20px;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-top: 100px;
    margin-left: -150px !important;

    animation: textFocus 2s ease-in-out infinite alternate;
}

/* ANIMIERTE LINIE */
.construction::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        gold,
        #ff4d00,
        #ffcc70,
        #ff0000,
        gold
    );

    background-size: 300%;
    animation: lineMove 4s linear infinite;

    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.8);
}
}
/* =========================
   AUDIO PLAYER
========================= */
.audio-player {
    position: fixed;
    top: 40px;
    right: 10%;
    display: flex;
    align-items: center;
    gap: 5px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 30px;

    box-shadow: 0 0 20px rgba(255,200,0,0.2);
}

/* BUTTON */
#audio-player button,
#playBtn {
    background: gold;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    color: black;
    font-size: 6px;
}

/* VOLUME */
#volume {
    width: 80px;
    cursor: pointer;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* HEADER */
header {
    position: absolute;
    top: 20px;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: gold;
    letter-spacing: 6px;
}

/* AUDIO PLAYER */
.audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* BUTTON */
#playBtn {
    background: gold;
    border: none;
    border-radius: 50%;
    width: 10px !important;
    height: 10px !important;
    cursor: pointer;
}

/* RANGE */
input[type="range"] {
    cursor: pointer;
}

/* PROGRESS */
#progress {
    width: 120px;
}

/* VOLUME */
#volume {
    width: 70px;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-animation {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, #1a0000, #7e037219, #000);
    animation: gradientMove 15s infinite;
    filter: blur(80px);
}

.content {
    text-align: center;
}

/* TITLE */
.title span {
    color: gold;
    animation: heartbeat 1.5s infinite;
}

/* FOOTER */
footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

/* ANIMATIONS */
@keyframes gradientMove {
    0% { background-position: 0%; }
    100% { background-position: 300%; }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

@keyframes lineMove {
    0% { background-position: 0%; }
    100% { background-position: 300%; }
}

/* =========================
   AUDIO PLAYER PREMIUM
========================= */
.audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-radius: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(255,200,0,0.15);
}

/* PLAY BUTTON */
#playBtn {
    background: gold;
    border: none;
    border-radius: 50%;
    width: 20px !important;
    height: 20px !important;
    cursor: pointer;
    font-size: 12px;
}

/* RANGE BOX (ICON + SLIDER) */
.range-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ICONS */
.range-box i,
#muteBtn i {
    color: gold;
    font-size: 14px;
}

/* MUTE BUTTON */
#muteBtn {
    background: transparent;
    border: none;
    cursor: pointer;
}

/* SLIDER GLEICH GROSS */
#progress,
#volume {
    width: 80px;
    appearance: none;
    height: 4px;
    border-radius: 10px;
    background: rgba(255,255,255,0.3);
}

/* SLIDER KNOB */
#progress::-webkit-slider-thumb,
#volume::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: gold;
    border-radius: 50%;
    cursor: pointer;
}

/* HOVER */
.audio-player:hover {
    box-shadow: 0 0 30px rgba(255,200,0,0.3);
}