/* Grundlayout */
body {
    margin: 0;
	background-color: #fefcf8;
    font-family: 'arial', serif;
    background-color: #fefcf8; /* Winterliches Cremeweiß */
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ermöglicht Footer-Bündigkeit */
	cursor: default;
}
		
/* Header */
header {
    background-color: #b30000; /* Dunkles Weihnachtsrot */
    color: white;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Ermöglicht Flexibilität bei schmalen Ansichten */
	/* border-bottom: 3px solid #ffd700; */
	border-bottom: 3px solid #008800;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700; /* Goldener Akzent */
    margin-right: auto;
}

/* Navigation */
nav ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Passt das Menü bei kleinen Displays an */
}

nav ul.menu li {
    position: relative;
}

nav ul.menu a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
    padding: 5px 10px;
    display: block;
}

nav ul.menu a:hover {
    color: #ffd700;
    transform: scale(1.1);
}

nav ul.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #b30000; /* Hintergrund Dropdown */
    padding: 10px;
    border: 2px solid #ffd700;
    left: 0;
    list-style: none;
    margin: 0;
    z-index: 10;
    border-radius: 5px;
    width: max-content; /* Dynamische Breite für lange Einträge */
}

nav ul.menu li:hover ul.dropdown-menu {
    display: block;
}

nav ul.dropdown-menu li a {
    color: white;
    display: block;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

nav ul.dropdown-menu li a:hover {
    /* background-color: #ffd700; /* Goldener Hover */ */
    color: #b30000; /* Weihnachtsrot */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #ffdfba, #ffe6e6); /* Sanfter Farbverlauf */
    color: #b30000; /* Weihnachtsrot */
    padding: 60px 20px;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Zentriert den Inhalt */
    height: 100%; /* Volle Höhe der Hero-Sektion */
}

.hero-section h1 {
    font-size: 2.4rem;
    margin: 0;
    color: #b30000; /* Dunkles Rot */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #333;
    font-style: italic;
    margin-bottom: 20px; /* Abstand zum Button */
}

/* Button "Radio starten" */
.start-radio-btn {
    /* background-color: #ff6f61; */
    /* color: white; */
    /* padding: 15px 30px; */
    /* font-size: 1.2rem; */
    /* text-decoration: none; */
    /* border-radius: 10px; */
    /* transition: background-color 0.3s ease, transform 0.3s ease; */
    /* text-align: center; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */


    background-color: #008800; /* Kräftiges Rot */
    /* background-color: #ff6f61;  */
    color: white;
    border: 2px solid #ffd700; /* Goldener Rand */
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1.2rem;
	text-decoration: none;
	text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Dezenter Schatten */	
}

.start-radio-btn:hover {
    /* background-color: #b30000; */
    /* transform: scale(1.1); */
	
	
    transform: scale(1.1); /* Leichtes Vergrößern */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8); /* Goldener Glow */
    background-color: #006800; /* Dunkleres Rot */
	cursor: pointer;	
}

/* Content Section */
.content-section {
    padding: 30px;
    background: white;
    margin: 30px auto;
    border: 2px solid #b30000;
    border-radius: 15px;
    max-width: 1000px;
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
    box-shadow: 0 8px 16px rgba(0, 136, 0, 0.2);
}

.content-section h2 {
    color: #b30000;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center; /* Zentriert die Überschrift */
}

.content-section p {
    margin-bottom: 20px;
}

/* Track History */
.content-section .track-history {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Zentriert die Boxen */
    gap: 30px; /* Abstand zwischen den Boxen */
    margin-top: 20px;
}

.content-section .track {
    background-color: #fffbf0; /* Helles Creme für die Tracks */
    padding: 15px;
    border: 2px solid #ffd700; /* Goldene Ränder für die Tracks */
    border-radius: 8px; /* Weniger runde Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Weicher Schatten für Tiefe */
    display: flex;
    flex-direction: column; /* Gestapelte Anordnung */
    justify-content: space-between;
    align-items: flex-start; /* Links ausgerichtet */
    transition: transform 0.3s, box-shadow 0.3s;
	width: 45%;
	max-width: 450px;
	letter-spacing: 0.4px;
}

.content-section .track1 {
    background-color: #f3fdf3; /* Helles Creme für die Tracks */
    padding: 15px;
    border: 2px solid #008800; /* Goldene Ränder für die Tracks */
    border-radius: 8px; /* Weniger runde Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Weicher Schatten für Tiefe */
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
	width: 100%;
	box-sizing: border-box;
}

.song-title, .song-artist {
    font-weight: bold; /* Fett für den Titel und Künstler */
	letter-spacing: 0.4px;
}

#current-song-info {
  text-align: center;  /* Text im Container horizontal zentrieren */
  width: 100%;  /* Damit es die gesamte Breite des übergeordneten Elements ausnutzt */
}

/* Hover-Effekt für die Tracks */
.content-section .track:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(255, 165, 0, 0.2); */
	transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.8); 
}

/* Hover-Effekt für die Tracks */
.content-section .track1:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(255, 165, 0, 0.2); */
	transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 136, 0, 0.8); 
}

/* Text in den Track-Boxen */
.content-section .track span {
    font-size: 1rem;
    color: #333; /* Dunklerer Farbton für den Text */
}

/* Künstlername und Titel */
.track .artist-name {
    font-weight: bold;
    color: #b30000; /* Rot für den Künstlernamen */
    white-space: nowrap; /* Verhindert das Umbrechen */
    overflow: hidden; /* Verhindert Überlauf */
    text-overflow: ellipsis; /* Fügt "..." hinzu, wenn der Text zu lang ist */
    margin-bottom: 5px; /* Abstand zum Titel */
}

.track .track-title {
    color: #555; /* Dunkelgrau für den Titel */
    word-wrap: break-word; /* Ermöglicht Umbruch bei langen Titeln */
    font-style: italic;
}

/* Uhrzeit in eigene Zeile */
.track .time {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px; /* Abstand nach oben */
    text-align: right; /* Rechtbündig */
}

/* Footer bleibt minimalistisch, aber festlich */
footer {
    background-color: #008800;
    color: white;
    padding: 15px;
    text-align: center;
    border-top: 3px solid #ffd700; /* Goldene Linie */
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Buttons für die anderen Sektionen */
.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* .christmas-btn { */
    /* background-color: #4CAF50; */
    /* color: white; */
    /* border: 2px solid #388E3C; */
    /* padding: 12px 20px; */
    /* font-size: 16px; */
    /* font-family: 'Arial', sans-serif; */
    /* cursor: pointer; */
    /* border-radius: 8px; */
    /* text-align: center; */
    /* transition: background-color 0.3s, transform 0.3s; */
    /* white-space: nowrap; */
/* } */

/* .christmas-btn:hover { */
    /* background-color: #388E3C; */
    /* transform: scale(1.05); */
/* } */

.christmas-btn:active {
    transform: scale(0.98);
}

.logo {
	cursor: pointer;
}


/* Stil für den aktiven Menüpunkt */
.menu a.active {
    font-weight: bold;
    color: #ffd700; /* Farbe für den aktiven Menüpunkt */
	transform: scale(1.1);
}

/* Stil für das aktive Dropdown-Link */
.dropdown.active > a {
    color: #ffd700; /* Die Farbe für das aktive Dropdown-Link */
	transform: scale(1.1);
}
    /* color: #ffd700; */
    /* transform: scale(1.1); */



.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Karten mit festlichen Details */
.card {
    background-color: #fffdf0; /* Sanftes Gelb-Weiß */
    border: 2px solid #ffd700; /* Goldener Rand */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Tiefe durch Schatten */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Leichtes Anheben */
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.8); /* Goldener Schimmer */
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #008800;
}

.card-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

/* Festliche Buttons */
.christmas-btn {
    /* background-color: #ff6f61; */
    /* background-color: #d23a2b; */
    background-color: #008800;
    color: white;
    border: 2px solid #ffd700; /* Goldener Rand */
    border-radius: 8px;
    padding: 12px 24px;
    /* font-size: 16px; */
	font-size: 1.0rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Dezenter Schatten */
}

.christmas-btn:hover {
    /* transform: scale(1.1); */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8); /* Goldener Glow */
    background-color: #006800; /* Dunkleres Rot */
	cursor: pointer;
}




/* Responsive Anpassung */
@media (max-width: 768px) {
    .content-section .track-history {
        display: flex;
        flex-direction: column;
        align-items: center;
        column-gap: 0;
        row-gap: 20px;
    }

    .content-section .track {
        padding: 10px;
        width: 90%;
        margin: 10px 0;
    }

    .track .artist-name,
    .track .track-title,
    .track .time {
        text-align: center; /* Text in den Boxen zentrieren */
    }

    .track .time {
        font-size: 0.8rem;
        margin-top: 8px;
    }

    header {
        padding: 15px 10px;
    }

    header .logo {
        font-size: 1.5rem;
    }

    .content-section h2 {
        text-align: center;
    }
}
/* Schriftanpassung für festliche Stimmung */
h1, h2 {
    text-transform: uppercase; /* Alles in Großbuchstaben */
    letter-spacing: 2px; /* Mehr Abstand zwischen den Buchstaben */
    color: #b30000; /* Dunkles Rot */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Leichter Schatten */
}