@import url("https://use.typekit.net/uwv2btq.css");
@import url('https://fonts.cdnfonts.com/css/volgarie');

body {
	background: #1f1f1f;
	color:#FFF;
	margin: 0;
	
	font-family: "poppins", sans-serif;
font-weight: 300;
font-style: normal;
	height: 100vh;
}


body {
	background: #fae8d9;
}
body.impressum {
	background: #1f1f1f;
}

a {
	color:#1f1f1f;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.website-text {
	position: absolute;
	top: 50px;
	background: red;
	padding:8px 16px;
	text-align: center;
	font-family: 'Volgarie', sans-serif;
	text-transform: uppercase;
	background: linear-gradient(90deg,#1f1f1f 50%, #fae8d9 50%);
	font-size: 30px;
	
	
	/* Verlauf für den Text */
    background: linear-gradient(90deg, #fae8d9 50%, #1f1f1f 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
	
}
.website-text b {
	font-size: 40px;
	font-family: 'Volgarie', sans-serif;
}

.studio-logo {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeLogo 0.6s ease-out forwards;
  animation-delay: 0.1s;
}

.studio-logo svg {
  width: 30vw;
  height: auto;
  fill: #fbe8d9;
}

.studio-logo svg * {
  fill: #fbe8d9 !important;
}

@keyframes fadeLogo {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* TEXT Animation */
.studio-logo #text {
    opacity: 0;
    transform: translateX(50px);
    animation: slideOvershoot 1s cubic-bezier(.25,.46,.45,1.4) forwards;
    animation-delay: 1.2s;
}

@keyframes slideOvershoot {
    0%   { opacity: 0; transform: translateX(50px); }
    70%  { opacity: 1; transform: translateX(-5px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* ICON Animation */
.studio-logo #icon {
    opacity: 0;
    transform: scale(0.92);
    animation: iconPop 0.7s ease-out forwards;
    animation-delay: 1s;
}

@keyframes iconPop {
    0%   { opacity: 0; transform: scale(0.92); }
    70%  { opacity: 1; transform: scale(1.03); }
    100% { opacity: 1; transform: scale(1); }
}

/* Linien Animation */
.studio-logo #line1,
.studio-logo #line2 {
    opacity: 0;
    transform: translateY(10px);
}

.studio-logo #line1 {
    animation: lineSlideUp 0.6s ease-out forwards;
    animation-delay: 1.5s;
}

.studio-logo #line2 {
    animation: lineSlideUp 0.6s ease-out forwards;
    animation-delay: 1.7s;
}

@keyframes lineSlideUp {
    0%   { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Mobile Anpassung */
@media (max-width: 780px) {
    .studio-logo svg {
        width: 80vw !important;
    }
}



.logo-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh; 
	overflow: visible !important;
}

/* Linker Bereich */
.logo-left {
    flex: 1;
    background: #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
}

.socialmedia {
	width: 30%;
	padding-top:40px;
	text-align: center;
	position: relative;
}

.socialmedia a {
    display: inline-block;
    margin: 0 10px; /* Abstand zwischen den Icons */
}

.socialmedia img {
    width: 40px;   /* Größe anpassen */
    height: auto;
}


.description {
	width: 80%;
	padding-top:20px;
	text-align: center;
	position: relative;
}
.logo-left .description {
color:#fbe8d9;
}
.logo-right .description {
color:#480c1e;
	padding-top:95px;
}




/* Rechter Bereich */
.logo-right {
    flex: 1;
    background: #fae8d9;
    display: flex;
    justify-content: center;
    align-items: center;
	overflow: visible !important;
	flex-direction: column;
}

/* SVG-Größen wie vorher */
.studio-logo svg,
.drama-logo svg {
    width: auto;
    height: 220px;
}
.drama-logo svg {
    width: auto;
    height: 250px;
}









/* --- DRAMA LOGO ANIMATION --- */

.drama-logo {
    opacity: 0;
    animation: dramaFade 0.8s ease-out forwards;
    animation-delay: 0.2s;
	overflow: visible !important;
}


.drama-logo svg {
    overflow: visible;
}


/* Grundfade + Minisprung */
@keyframes dramaFade {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    80% {
        opacity: 1;
        transform: scale(1.03);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Icon Animation – kräftiger Pop */
.drama-logo #icon {
    opacity: 0;
    transform: scale(0.85) rotate(-3deg);
    animation: dramaIconPop 0.7s cubic-bezier(.25,.46,.45,1.4) forwards;
    animation-delay: 0.7s;
}

@keyframes dramaIconPop {
    0% {
        opacity: 0;
        transform: scale(0.85) rotate(-3deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.08) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Text Animation – stylishes Hochsliden */
.drama-logo #text {
    opacity: 0;
    transform: translateY(25px);
    animation: dramaTextSlide 0.8s ease-out forwards;
    animation-delay: 1.1s;
}

@keyframes dramaTextSlide {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}






/* Impressum Button unten rechts */
.impressum-link {
    position: fixed;
    bottom: 20px;
    right: 25px;
    color: #1f1f1f;
    opacity: 0.7;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 1000;
}

.impressum-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

.impressum-link.back {
	color:#fff;
}


/* Popup Hintergrund */
.impressum-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    animation: fadeIn 0.3s ease forwards;
}

/* Popup Box */
.impressum-content {
    background: #fbe8d9;
    color: #1f1f1f;
    width: 60%;
    max-width: 90%;
    margin: 10% auto;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    animation: popIn 0.3s ease forwards;
	overflow: scroll !important;
}

/* Close Icon */
.impressum-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #1f1f1f;
    opacity: 0.6;
}

.impressum-content .close:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes popIn {
    0%   { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}



@media only screen and (max-width: 767px) {
	

	.content {
		padding:25px 25px;
		width: calc(100% - 50px);
		padding-bottom: 50px;
	}
	.main {
		flex-direction: column;
	}
	
	.logo-wrapper {
		flex-direction: column;
		height: auto;
		overflow:  visible !important;
	}
	.logo-left, .logo-right {
		height: auto;
		width: 100vw;
	}
	
	.studio-logo svg,
.drama-logo svg {
    width: auto;
    height: 150px;
}
	
	.drama-logo svg {
    width: auto;
    height: 180px;
		overflow: visible;
}
	
	
	
	.main {
		margin-top:0px;
		overflow: visible !important;
		height: auto !important;
	}
	.studio-logo {
		padding-top:50px;
	}
	.drama-logo {
		margin-top:0px;
		overflow: visible !important;
		height: 300px;
		padding-top:50px;
	}

	.description, .socialmedia, .website-text {
		width: 90%;
		position: relative;
		bottom: auto;
		top:auto;
	}
	
	.website-text {
		color: #fff;
		background: #1f1f1f;
		width: 100%;
		font-size: 20px !important;
		padding: 0;
		padding-top: 25px;
	}

	.website-text b {
		font-size: 30px;
	}
	.logo-left, .logo-right {
		padding-bottom: 50px;
	}
	
	.impressum-link {
		position: relative;
		right: auto;
		padding-bottom: 25px;
	}
}



body.impressum a {
	color:#FFF;
}
