﻿/* Allgemeine Styles */
body {
	font-family: Arial, sans-serif;
	background-color: #060606;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	text-align: center;
}

/* Container für den gesamten Inhalt */
.container {
	max-width: 800px;
	width: 100%;
	margin: 20px;
	padding: 20px;
	background-color: #282626;
	border: 2px solid #7b0b0b;
	border-radius: 10px;
}
h1 {
	text-align: center;
	line-height: 0%;
	--glow-color: rgba(123, 121, 121, 0.18);
	--glow-spread-color: rgba(117, 114, 114, 0);
	--enhanced-glow-color: rgb(215, 200, 230);
	--btn-color: rgb(198, 27, 27);
	border: .25em solid rgb(187, 37, 37);
	padding: 1em 3em;
	color: red;
	font-size: 22px;
	font-weight: bold;
	border-radius: 1em;
	outline: none;
	box-shadow: 0 0 1em .25em rgba(21, 21, 21, 0.09), 0 0 4em 1em rgba(96, 89, 89, 0.78), inset 0 0 .75em .25em rgba(9, 8, 8, 0.15);
	text-shadow: 0 0 .5em rgba(217, 10, 10, 0);
	position: relative;
	transition: all 0.3s;
	cursor: pointer;
	background: linear-Gradient(0deg, rgba(11,11,11,1) 3%, rgb(50, 47, 47) 50%, rgba(9,9,9,1) 98%);
}
/* Überschriften */
h2 {
    color: #ff0000; /* Rote Schrift */
    margin: 0 0 20px 0; /* Abstand unter Überschriften */
}

/* Profilbild */
.profile-picture-container {
    margin-bottom: 20px; /* Abstand nach unten */
}

.profile-picture {
	border-radius: 50%;
	border: 4px solid #db0606;
	width: 150px;
	height: 150px;
	object-fit: cover;
}

/* Profilabschnitte (Beschreibung, Hobbys, Musikrichtung) */
.profile-section {
	margin: 20px 0;
	padding: 20px;
	background-color: #444;
	border: 2px solid #aa0707;
	border-radius: 5px;
	text-align: center;
}

.profile-section h2 {
    margin-top: 0; /* Kein Abstand oben */
    color: #ff0000; /* Rote Schrift */
}
.profile-section p, .profile-section textarea, .profile-section input[type="text"], .profile-section input[type="file"] {
	width: 97%;
	padding: 10px;
	margin: 10px 0;
	background-color: #555;
	border: 1px solid #666;
	border-radius: 5px;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 16px;
	text-align: center;
}
.profile-section textarea {
    resize: vertical; /* Vertikale Größenanpassung */
    min-height: 100px; /* Mindesthöhe */
}

/* Speichern-Button */
.login-button {
    margin-top: 40px; /* Abstand nach oben */
    text-align: center; /* Text zentrieren */
}

.button {
    display: inline-block;
    padding: 10px 20px; /* Innenabstand */
    background-color: #ff0000; /* Roter Hintergrund */
    color: #fff; /* Weiße Schrift */
    text-decoration: none; /* Keine Unterstreichung */
    border-radius: 5px; /* Abgerundete Ecken */
    font-size: 16px; /* Schriftgröße */
    transition: background-color 0.3s ease; /* Sanfter Farbübergang */
    border: none; /* Kein Rahmen */
    cursor: pointer; /* Zeiger-Cursor */
}

.button:hover {
    background-color: #cc0000; /* Dunkleres Rot beim Hover */
}
.logout-container {
    text-align: center;
    margin: 40px 0;
}
.logout-button {
    background-color:rgb(172, 14, 9);
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.logout-button:hover {
    background-color:rgb(253, 8, 0);
}
/* Album-Bilder (falls verwendet) */
.album {
    display: flex;
    flex-wrap: wrap; /* Zeilenumbruch bei Bedarf */
    gap: 10px; /* Abstand zwischen den Bildern */
    justify-content: center; /* Bilder zentrieren */
    margin-top: 20px; /* Abstand nach oben */
}

/* Album-Bilder-Container */
.album-item {
    position: relative;
    background-color: #555; /* Dunkelgrauer Hintergrund */
    border: 1px solid #666; /* Hellgrauer Rahmen */
    border-radius: 5px; /* Abgerundete Ecken */
    padding: 10px; /* Innenabstand */
    text-align: center; /* Text zentrieren */
    width: 150px; /* Feste Breite */
    overflow: hidden; /* Verhindert, dass der Effekt über den Rand hinausgeht */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Sanfte Übergänge */
}

/* Album-Bild */
.album-item img {
    border-radius: 5px; /* Abgerundete Ecken */
    margin-bottom: 10px; /* Abstand nach unten */
    width: 100%; /* Bild auf Containerbreite skalieren */
    height: auto; /* Höhe automatisch anpassen */
    transition: transform 0.3s ease; /* Sanfte Übergänge */
}

/* Beschreibung unter dem Bild */
.album-item p {
    margin: 0; /* Kein Abstand */
    font-size: 14px; /* Kleinere Schrift */
    color: #ccc; /* Hellgraue Schrift */
}

/* Löschen-Button */
.album-item .button {
    margin-top: 10px; /* Abstand nach oben */
    font-size: 14px; /* Kleinere Schrift */
    display: none; /* Standardmäßig ausblenden */
    transition: opacity 0.3s ease; /* Sanfte Übergänge */
}

/* Hover-Effekt für den Album-Container */
.album-item:hover {
    transform: scale(1.2); /* Bild leicht vergrößern */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Schatten hinzufügen */
}

/* Hover-Effekt für das Bild */
.album-item:hover img {
    transform: scale(1.1); /* Bild stärker vergrößern */
}

/* Löschen-Button beim Hover anzeigen */
.album-item:hover .button {
    display: inline-block; /* Button anzeigen */
    opacity: 1; /* Volle Deckkraft */
}
.h4 {
	color: grey;
}
input {
	height: 30px;
	border: 6px;
	border-radius: 4px;
}
/* Speichern-Button */
.button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #ff0000;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	transition: background-color 0.3s ease;
	border: none;
	cursor: pointer;
	margin-top: 10px;
}
.button:hover {
    background-color: #cc0000; /* Dunkleres Rot beim Hover */
}

/* Link zum Login */
p {
    margin-top: 20px; /* Abstand nach oben */
}

a {
    color: #ff0000; /* Rote Schrift */
    text-decoration: none; /* Keine Unterstreichung */
}

a:hover {
    text-decoration: underline; /* Unterstreichung beim Hover */
}

