* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	min-height: 100%;
	height: 100%;
	background: linear-gradient(135deg, #667eea, #764ba2);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: cover;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: linear-gradient(135deg,
		#667eea 0%,
		#7786e8 25%,
		#7c6fb0 50%,
		#764ba2 100%);
	min-height: 100vh;
	color: white;
	overflow-x: hidden;
	position: relative;
}

body::after {
	content: "";
	position: fixed;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	pointer-events: none;
	z-index: 100;
	opacity: 0.09;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABg1c6RAAAAQ0lEQVRoge3OIQEAAAgDoJvcqF6EBhGRZ9S7P6/p6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enp6enpy9yRXYg1Z3K4AAAAAElFTkSuQmCC');
}

.floating-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
}

.background-animation {
	position: fixed;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	z-index: 0;	/* oder -1, wenn kein anderes Element z-index: 0 hat! */
	pointer-events: none; /* Wichtig, damit Animation nicht klickbar ist */
}

/* Nur auf die Formen die Transparenz */
.shape {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float 20s infinite linear;
	animation-fill-mode: backwards;
}

.shape:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-delay: 0s; }
.shape:nth-child(2) { width: 120px; height: 120px; left: 70%; animation-delay: 3s; }
.shape:nth-child(3) { width: 60px; height: 60px; left: 30%; animation-delay: 8s; }
.shape:nth-child(4) { width: 100px; height: 100px; left: 90%; animation-delay: 16s; }
.shape:nth-child(5) { width: 140px; height: 140px; left: 50%; animation-delay: 12s; }

@keyframes float {
	0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(20px);
	padding: 1rem 2rem;
	z-index: 1000;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	background: rgba(0, 0, 0, 0.8);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.logo {
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
}

/* --- Hier die neue und zusammengefasste Section --- */
.language-switcher {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.translate-info {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.translate-text {
	font-size: 0.9rem;
	opacity: 0.8;
	white-space: nowrap;
}

.language-flags {
	display: flex;
	gap: 0.3rem;
}

.flag-item {
	font-size: 1.2rem;
	cursor: pointer;
	padding: 0.2rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	opacity: 0.7;
}

.flag-item:hover {
	opacity: 1;
	transform: scale(1.1);
	background: rgba(255, 255, 255, 0.1);
}
/* --- Ende der neuen Section --- */

.lang-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	font-weight: 600;
}

.lang-btn:hover, .lang-btn.active {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.google-translate {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 25px;
	padding: 0.5rem;
}

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 2rem;
}

.hero-content {
	max-width: 800px;
	animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(50px); }
	to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.hero p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.section {
	padding: 5rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.section h2 {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 3rem;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	opacity: 0.9;
	margin-bottom: 3rem;
}

.about-container {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.about-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-icon {
	font-size: 4rem;
	display: block;
	margin-bottom: 1rem;
}

.about-card h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #4ecdc4;
}

.about-card p {
	font-size: 1.2rem;
	line-height: 1.6;
	opacity: 0.9;
}

.island-icon {
	font-size: 4rem;
}

.coming-soon-icon {
	font-size: 4rem;
}

.scroll-arrow {
	font-size: 2rem;
}

.islands-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.island-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.island-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.island-image-placeholder {
	height: 200px;
	background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
}

.island-info {
	padding: 1.5rem;
}

.island-info h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #4ecdc4;
}

.island-info p {
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.island-code {
	background: rgba(0, 0, 0, 0.3);
	padding: 0.8rem;
	border-radius: 10px;
	margin-bottom: 1.5rem;
	text-align: center;
	font-family: 'Courier New', monospace;
}

.island-code strong {
	color: #4ecdc4;
	font-size: 1.1rem;
}

.island-link {
	display: inline-block;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	color: white;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	width: 100%;
	text-align: center;
}

.island-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.coming-soon-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	border: 2px dashed rgba(255, 255, 255, 0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 300px;
}

.coming-soon-card h3 {
	font-size: 1.5rem;
	margin: 1rem 0;
	color: #4ecdc4;
}

.coming-soon-card p {
	opacity: 0.7;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.contact-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

.contact-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #4ecdc4;
}

.contact-card p {
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.contact-link {
	display: inline-block;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	color: white;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.contact-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer {
	background: rgba(0, 0, 0, 0.3);
	text-align: center;
	padding: 2rem;
	margin-top: 5rem;
}

.mobile-menu {
	display: none;
}

.scroll-indicator {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
	cursor: pointer;
	z-index: 100;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-10px); }
	60% { transform: translateX(-50%) translateY(-5px); }
}

.hidden {
	display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.navbar {
		padding: 1rem;
	}
	
	.hero h1 {
		font-size: 2.5rem;
	}
	
	.hero p {
		font-size: 1.2rem;
	}
	
	.section {
		padding: 3rem 1rem;
	}
	
	.section h2 {
		font-size: 2rem;
	}
	
	.contact-grid {
		grid-template-columns: 1fr;
	}
	
	.islands-grid {
		grid-template-columns: 1fr;
	}
	
	.language-switcher {
		flex-direction: column;
		gap: 0.5rem;
	}
}
.logo {
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.logo-image {
	height: 50px;
	width: auto;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
	transition: all 0.3s ease;
}

.logo-image:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
