@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg-dark: #0d0d0d;
	--bg-card: #1a1a1a;
	--bg-elevated: #242424;
	--accent: #E3000F;
	--accent-light: #fb2424;
	--accent-dark: #d90606;
	--text-primary: #fafafa;
	--text-secondary: #a3a3a3;
	--text-muted: #737373;
	--border: #2e2e2e;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Space Grotesk', sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(13, 13, 13, 0.9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logoimg {
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--accent);
}

.nav-cta {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 0.6rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s;
}

.nav-cta span {
	display: inline;
	background: transparent;
	padding: 0;
}

.nav-cta:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 2rem 4rem;
	position: relative;
	overflow: hidden;
	background-image: url(./images/hero.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	padding: 0.5rem 1rem;
	border-radius: 100px;
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.hero-badge span {
	color: var(--accent);
}

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.hero h1 .highlight {
	color: var(--accent);
}

.hero-description {
	font-size: 1.15rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	max-width: 480px;
}

.hero-buttons {
	display: flex;
	gap: 2rem;
	margin-bottom: 3rem;
}

.btn-primary {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
	margin-top: 20px;
}

.btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--border);
	transition: all 0.2s;
	margin-top: 20px;
}

.btn-secondary:hover {
	border-color: var(--text-secondary);
	background: var(--bg-card);
}

.hero-stats {
	display: flex;
	gap: 3rem;
}

.stat {
	text-align: left;
}

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* Leistungen */
.features {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-label {
	font-size: 0.85rem;
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.section-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.feature-card {
	background: var(--bg-dark);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s;
}

.feature-card a {
	  text-decoration: none;
	  cursor: pointer;	
}
.feature-card a h3 {
	color:white;
}


.feature-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}

.feature-icon {
	width: 85px;
	height: 85px;
	background: var(--bg-elevated);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--accent);
	transition: all 0.3s;
}
.feature-icon img {
	padding:5px;
	overflow: hidden;
}

.feature-card:hover .feature-icon {
	background: var(--accent);
	color: var(--bg-dark);
}

.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* Kundenrezensionen */
.testimonials {
	padding: 6rem 2rem;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
}

.testimonial-stars {
	color: var(--accent);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.testimonial-text {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-name {
	font-weight: 600;
	font-size: 0.95rem;
}

.testimonial-title {
	color: var(--text-muted);
	font-size: 0.8rem;
}

/* CTA Call to action */
.cta {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(245, 11, 11, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* Footer */
footer {
	padding: 4rem 2rem 2rem;
	border-top: 1px solid var(--border);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-top: 1rem;
	max-width: 280px;
}

.footer-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--accent);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.footer-bottom a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-bottom a:hover {
	color: var(--accent-light);
}


.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content {
		order: 1;
	}

	.guitar-wrapper {
		order: 0;
		max-width: 500px;
		margin: 0 auto;
	}

	.hero-description {
		margin: 0 auto 2rem;
		color: white
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.features-grid,
	.pricing-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

	.billing-toggle {
		flex-wrap: wrap;
		justify-content: center;
	}

	.billing-option {
		padding: 0.6rem 1.2rem;
		font-size: 0.85rem;
	}

	.instructors-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 880px) {

	.nav-links,
	.nav-cta {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	/* Mobiles Menü*/
	.nav-links.active {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(13, 13, 13, 0.98);
		backdrop-filter: blur(20px);
		padding: 0.5rem 0 0 0;
		gap: 0;
	}

	.nav-links.active li {
		border-bottom: 1px solid var(--border);
	}

	.nav-links.active li:last-child {
		border-bottom: none;
	}

	.nav-links.active a {
		display: block;
		padding: 1.35rem 2rem;
		font-size: 1.1rem;
	}

	.nav-cta.active {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		text-align: center;
		background: var(--bg-dark);
		padding: 1.5rem 2rem;
		border-top: 1px solid var(--border);
	}

	.nav-cta.active span {
		display: block;
		background: var(--accent);
		color: var(--bg-dark);
		padding: 1rem;
		border-radius: 8px;
		font-weight: 600;
	}

	.hero {
		padding: 6rem 1rem 3rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.stat {
		text-align: center;
	}

	.guitar-card {
		padding: 1rem;
	}

	.fretboard-grid {
		grid-template-rows: repeat(6, 28px);
	}

	.string-labels {
		height: calc(6 * 28px);
		left: -24px;
	}

	.string-label {
		height: 28px;
		font-size: 0.6rem;
	}

	.note-marker {
		width: 14px;
		height: 14px;
		font-size: 0.4rem;
	}

	.instructors-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-brand p {
		margin: 1rem auto;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

 	 .footer-brand {

    	text-align: center;

 	 }

 	 .footer-brand .logoimg {

   	 display: block;

  	margin: 0 auto 1rem auto;

 	 }

}

/* Cookie-Banner */
#cookie-banner {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.196);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.cookie-box {
	position: relative;
	width: min(720px, 100%);
	padding: 2rem;
	background: rgba(26, 26, 26, 0.885);
	border: 1px solid var(--border);
	border-radius: 16px;
	color: var(--text-primary);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.816),
		0 0 30px rgba(227, 0, 15, 0.08);
	animation: cookie-banner-in 0.35s ease;
}

.cookie-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 2rem;
	right: 2rem;
	height: 3px;
	border-radius: 0 0 4px 4px;
	background: var(--accent);
}

.cookie-box h2 {
	margin: 0 0 0.75rem;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text-primary);
}

.cookie-box p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
}

.cookie-box a {
	display: inline-block;
	margin-top: 0.25rem;
	color: var(--text-secondary);
	font-size: 0.85rem;
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color 0.2s;
}

.cookie-box a:hover {
	color: var(--accent-light);
}

.cookie-buttons {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.5rem 0 0.75rem;
}

.cookie-buttons button {
	min-height: 46px;
	padding: 0.75rem 1.4rem;
	border-radius: 9px;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition:
		background 0.2s,
		border-color 0.2s,
		color 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
}

.cookie-buttons button:hover {
	transform: translateY(-2px);
}

.cookie-buttons button:focus-visible {
	outline: 2px solid var(--accent-light);
	outline-offset: 3px;
}

#cookie-reject {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text-primary);
}

#cookie-reject:hover {
	background: var(--bg-elevated);
	border-color: var(--text-muted);
}

#cookie-accept {
	background: var(--accent);
	border: 1px solid var(--accent);
	color: var(--text-primary);
	box-shadow: 0 8px 24px rgba(227, 0, 15, 0.2);
}

#cookie-accept:hover {
	background: var(--accent-light);
	border-color: var(--accent-light);
	box-shadow: 0 10px 30px rgba(227, 0, 15, 0.3);
}

@keyframes cookie-banner-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 600px) {
	#cookie-banner {
		padding: 1rem;
	}

	.cookie-box {
		padding: 1.5rem;
		border-radius: 14px;
	}

	.cookie-box::before {
		left: 1.5rem;
		right: 1.5rem;
	}

	.cookie-box h2 {
		font-size: 1.25rem;
	}

	.cookie-buttons {
		flex-direction: column-reverse;
	}

	.cookie-buttons button {
		width: 100%;
	}
}