/* TextScharf Akademie — left-song-833.css */

@font-face {
	font-family: 'century-gotic';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/GOTHIC.ttf') format('truetype');
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--gold: #c57c15;
	--gold-bright: #E69420;
	--gold-alt: #b06f22;
	--gold-footer: #a96d30;
	--bg: #000000;
	--bg-dark: #202020;
	--bg-darker: #161616;
	--bg-sticky: #212121;
	--text: #545454;
	--text-dark: #191919;
	--white: #ffffff;
	--border-light: rgba(84,84,84,0.1);
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg);
	color: var(--text);
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

a {
	color: var(--gold);
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: var(--gold-bright);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'century-gotic', 'Century Gothic', Arial, sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: var(--white);
}

h1 { font-size: 54px; }
h2 { font-size: 40px; }
h3 { font-size: 30px; }
h4 { font-size: 23px; }

@media (max-width: 768px) {
	h1 { font-size: 30px; }
	h2 { font-size: 24px; }
	h3 { font-size: 22px; }
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ==================== HEADER ==================== */

#masthead {
	background-color: #202020 !important;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.site-header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 40px;
	max-width: 1680px;
	margin: 0 auto;
}

.site-logo a {
	display: flex;
	align-items: center;
}

.site-logo svg {
	height: 48px;
	width: auto;
}

/* NAV */
.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 30px;
}

.main-navigation ul li a {
	color: var(--white);
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.2s;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.9), 0 0 8px rgba(0,0,0,0.8);
}

.main-navigation ul li a:hover,
.main-navigation ul li.active a {
	color: var(--gold-bright);
}

.nav-cta {
	background-color: var(--gold-bright) !important;
	color: #000 !important;
	padding: 9px 22px;
	font-weight: 700 !important;
}

.nav-cta:hover {
	background-color: var(--gold) !important;
	color: #000 !important;
}

.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
}

.hamburger span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--gold-bright);
}

@media (max-width: 1024px) {
	.hamburger { display: flex; }
	.main-navigation {
		display: none;
		position: absolute;
		top: 80px;
		left: 0;
		right: 0;
		background: #202020;
		padding: 20px;
		z-index: 999;
	}
	.main-navigation.open { display: block; }
	.main-navigation ul {
		flex-direction: column;
		gap: 16px;
	}
	.site-header-wrapper {
		padding: 14px 20px;
	}
}

/* ==================== HERO ==================== */

.hero {
	position: relative;
	height: 900px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

@media (max-width: 768px) {
	.hero { height: 630px; }
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero::after {
	content: '';
	position: absolute !important;
	inset: 0 !important;
	background: linear-gradient(rgba(12,12,12,0.82) 0%, rgba(12,12,12,0) 50%, rgba(12,12,12,0) 80%, rgba(12,12,12,1) 100%) !important;
	z-index: 1 !important;
	pointer-events: none !important;
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 800px;
	padding: 0 20px;
	text-shadow: 3px 3px 8px #000, 0 0 40px rgba(0,0,0,0.95);
}

.hero-tag {
	display: inline-block;
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 13px;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: var(--gold-bright);
	margin-bottom: 20px;
}

.hero h1 {
	font-size: 54px;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.hero h1 { font-size: 30px; }
}

.hero p {
	font-size: 20px;
	color: rgba(255,255,255,0.85);
	margin-bottom: 35px;
	font-family: 'century-gotic', Arial, sans-serif;
}

@media (max-width: 768px) {
	.hero p { font-size: 16px; }
}

/* ==================== BUTTONS ==================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 36px;
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.25s;
	border: 2px solid transparent;
}

.btn-gold {
	background-color: var(--gold-bright);
	color: #000;
	border-color: var(--gold-bright);
}

.btn-gold:hover {
	background-color: var(--gold);
	border-color: var(--gold);
	color: #000;
}

.btn-outline {
	background-color: transparent;
	color: var(--white);
	border-color: var(--gold-alt);
}

.btn-outline:hover {
	background-color: var(--gold);
	border-color: var(--gold);
	color: #000;
}

/* ==================== SECTIONS ==================== */

section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	color: var(--white);
	margin-bottom: 12px;
}

.section-title p {
	color: var(--text);
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto;
}

.section-label {
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 12px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--gold-bright);
	display: block;
	margin-bottom: 10px;
}

/* ==================== LINKS ICONS (image cards) ==================== */

.links-icons {
	padding: 40px 20px;
	background: var(--bg-dark);
}

.links-icons-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.links-icons-grid { grid-template-columns: 1fr; }
}

.link-card {
	position: relative;
	height: 300px;
	overflow: hidden;
	cursor: pointer;
}

.link-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.link-card:hover img {
	transform: scale(1.05);
}

.link-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
}

.link-card a {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
	letter-spacing: 2px;
	text-transform: uppercase;
}

.link-card a:hover {
	color: var(--gold-bright);
}

/* ==================== ABOUT PREVIEW ==================== */

.about-split {
	background: var(--bg-dark);
}

.about-split-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
}

@media (max-width: 900px) {
	.about-split-inner { grid-template-columns: 1fr; }
}

.about-split img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.about-text h2 { color: var(--white); margin-bottom: 20px; }
.about-text p {
	color: var(--text);
	font-size: 18px;
	line-height: 1.75;
	margin-bottom: 16px;
}

/* ==================== COURSE CARDS ==================== */

.courses {
	background: #0a0a0a;
}

.courses-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 900px) {
	.courses-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	.courses-grid { grid-template-columns: 1fr; }
}

.course-card {
	background: var(--bg-dark);
	border: 1px solid rgba(197,124,21,0.15);
	padding: 32px 28px;
	transition: border-color 0.25s, transform 0.25s;
}

.course-card:hover {
	border-color: var(--gold-alt);
	transform: translateY(-4px);
}

.course-card .icon {
	font-size: 32px;
	color: var(--gold-bright);
	margin-bottom: 18px;
}

.course-card h3 {
	font-size: 20px;
	margin-bottom: 12px;
}

.course-card p {
	color: var(--text);
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 20px;
}

.course-price {
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 22px;
	color: var(--gold-bright);
	font-weight: 700;
}

/* ==================== TESTIMONIALS ==================== */

.testimonials {
	background: var(--bg-dark);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 900px) {
	.testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	.testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
	background: #1a1a1a;
	padding: 30px 24px;
	border-left: 3px solid var(--gold-alt);
}

.testimonial-card p {
	color: rgba(255,255,255,0.8);
	font-style: italic;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 18px;
}

.testimonial-card .stars {
	color: var(--gold-bright);
	margin-bottom: 10px;
	font-size: 14px;
}

.testimonial-card .author {
	color: var(--gold);
	font-weight: 600;
	font-size: 14px;
}

/* ==================== FAQ ==================== */

.faq {
	background: #050505;
}

.faq-list {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 20px;
}

.faq-item {
	border-bottom: 1px solid rgba(197,124,21,0.2);
	padding: 22px 0;
}

.faq-question {
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 17px;
	color: var(--white);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.faq-question::after {
	content: '+';
	color: var(--gold-bright);
	font-size: 22px;
	flex-shrink: 0;
	transition: transform 0.25s;
}

.faq-item.open .faq-question::after {
	transform: rotate(45deg);
}

.faq-answer {
	display: none;
	color: var(--text);
	font-size: 15px;
	line-height: 1.7;
	padding-top: 14px;
}

.faq-item.open .faq-answer {
	display: block;
}

/* ==================== CONTACT FORM SECTION ==================== */

.contact-section {
	background: var(--bg-dark);
}

.contact-form-wrap {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 600px) {
	.form-row { grid-template-columns: 1fr; }
}

.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	color: rgba(255,255,255,0.7);
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	background: #1a1a1a;
	border: 1px solid rgba(84,84,84,0.2);
	border-radius: 0;
	color: var(--white);
	font-size: 15px;
	padding: 12px 16px;
	outline: none;
	transition: border-color 0.2s;
	font-family: Roboto, Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-color: var(--gold);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* ==================== FOOTER ==================== */

#site-footer {
	background: #161616;
	color: #d8d8d8;
}

.footer-widget-area {
	padding: 60px 0 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	border-bottom: 1px solid rgba(176,111,34,0.2);
	padding-bottom: 40px;
}

@media (max-width: 900px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	.footer-grid { grid-template-columns: 1fr; }
}

.footer-col h4 {
	font-size: 14px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--gold-bright);
	margin-bottom: 20px;
}

.footer-col p,
.footer-col address {
	font-size: 14px;
	color: #d8d8d8;
	font-style: normal;
	line-height: 1.8;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul li a {
	color: #d8d8d8;
	font-size: 14px;
	transition: color 0.2s;
}

.footer-col ul li a:hover {
	color: var(--gold-bright);
}

.footer-social {
	display: flex;
	gap: 14px;
	margin-top: 16px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: var(--gold);
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: background 0.2s;
}

.footer-social a:hover {
	background: var(--gold-bright);
	color: #000;
}

.footer-logo svg {
	height: 80px;
	width: auto;
	margin-bottom: 16px;
}

.footer-copyright {
	text-align: center;
	padding: 22px 20px;
	color: var(--gold-footer);
	font-size: 13px;
}

.footer-copyright a {
	color: var(--gold-footer);
}

.footer-copyright a:hover {
	color: var(--gold-bright);
}

/* ==================== PAGE HERO (inner pages) ==================== */

.page-hero {
	background: var(--bg-dark);
	padding: 80px 20px 60px;
	text-align: center;
	border-bottom: 1px solid rgba(197,124,21,0.15);
}

.page-hero h1 {
	font-size: 42px;
	margin-bottom: 14px;
}

@media (max-width: 768px) {
	.page-hero h1 { font-size: 26px; }
}

.page-hero p {
	color: var(--text);
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto;
}

/* ==================== CONTENT BLOCKS ==================== */

.content-block {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.content-block h2 {
	font-size: 28px;
	margin-top: 40px;
	margin-bottom: 14px;
}

.content-block p {
	color: var(--text);
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 14px;
}

.content-block ul {
	color: var(--text);
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 14px;
	padding-left: 20px;
}

.content-block ul li {
	margin-bottom: 8px;
}

/* ==================== COOKIES BANNER ==================== */

#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #1a1a1a;
	border-top: 2px solid var(--gold-alt);
	padding: 20px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

#cookie-banner.hidden {
	display: none;
}

#cookie-banner p {
	color: #d8d8d8;
	font-size: 14px;
	line-height: 1.6;
	flex: 1;
	min-width: 200px;
}

#cookie-banner p a {
	color: var(--gold);
}

.cookie-btns {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-btns button {
	padding: 10px 24px;
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	border: 2px solid var(--gold-alt);
	transition: all 0.2s;
}

#cookie-accept {
	background: var(--gold-bright);
	color: #000;
	border-color: var(--gold-bright);
}

#cookie-accept:hover {
	background: var(--gold);
	border-color: var(--gold);
}

#cookie-decline {
	background: transparent;
	color: var(--white);
}

#cookie-decline:hover {
	background: rgba(197,124,21,0.15);
}

/* ==================== CONTACT DETAILS PAGE ==================== */

.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px 60px;
}

@media (max-width: 768px) {
	.contact-info-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
	background: var(--bg-dark);
	padding: 32px 24px;
	text-align: center;
	border-top: 3px solid var(--gold-alt);
}

.contact-info-card .icon {
	font-size: 30px;
	color: var(--gold-bright);
	margin-bottom: 16px;
}

.contact-info-card h3 {
	font-size: 16px;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.contact-info-card p {
	color: #d8d8d8;
	font-size: 15px;
	line-height: 1.65;
}

.contact-info-card a {
	color: #d8d8d8;
}

.contact-info-card a:hover {
	color: var(--gold-bright);
}

/* ==================== ABOUT PAGE ==================== */

.team-section {
	background: #0a0a0a;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 900px) {
	.team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	.team-grid { grid-template-columns: 1fr; }
}

.team-card img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}

.team-card-info {
	background: var(--bg-dark);
	padding: 20px;
}

.team-card-info h3 {
	font-size: 18px;
	margin-bottom: 6px;
}

.team-card-info p {
	color: var(--gold-bright);
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* ==================== STATS ==================== */

.stats-bar {
	background: var(--gold-bright);
	padding: 50px 20px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

@media (max-width: 768px) {
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item .number {
	font-family: 'century-gotic', Arial, sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: #000;
	line-height: 1;
}

.stat-item .label {
	font-size: 13px;
	color: rgba(0,0,0,0.7);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 6px;
}

/* ==================== MISC ==================== */

.text-gold { color: var(--gold-bright); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.section-dark { background: #0a0a0a; }
.section-mid { background: var(--bg-dark); }

hr.gold-line {
	border: none;
	border-bottom: 1px solid var(--gold-alt);
	margin: 40px 0;
}
