/* --- HERO SECTION - STREETPARK STYLE --- */
.club-hero {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 500px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 80px; /* Dodaj margines pod menu */
	padding: 0 20px;
	background: #ffffff
}

/* --- VIDEO CONTAINER --- */
.hero-video-container {
	position: absolute;
	top: 0;
	left: 50%; /* Wyśrodkuj kontener */
	transform: translateX(-50%); /* Wyśrodkuj kontener */
	width: 100%;
	height: 100%;
	z-index: 1;
	border-radius: 40px; /* Bardziej zaokrąglone rogi */
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	margin: 0 auto;
	max-width: calc(100% - 40px); /* Dodaj marginesy po bokach jak w Streetpark */
}

/* --- VIDEO --- */
.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center; /* Wyraźnie wyśrodkuj wideo */
	border-radius: 40px; /* Bardziej zaokrąglone rogi */
	display: block; /* Upewnij się, że wideo jest elementem blokowym */
	margin: 0 auto; /* Dodatkowe wyśrodkowanie */
}

/* --- OVERLAY (filtr jak w Streetpark) --- */
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, #ffffff 30%);
	z-index: 2;
	border-radius: 40px; /* Bardziej zaokrąglone rogi */
}

/* --- TREŚĆ NA FILMIE --- */
.hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: #ffffff;
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
}

.hero-content-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem; /* Zwiększono odstęp między tytułem a przyciskami */
}

/* Aloha Riders - AmaticSC-Bold Font */
@font-face {
	font-family: 'AmaticSC-Bold';
	src: url('../fonts/AmaticSC-Bold.ttf') format('truetype');
	font-weight: bold;
	font-display: swap;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	color: #ffffff; /* Wyraźnie ustaw kolor na biały */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	font-family: 'AmaticSC-Bold', cursive;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	animation: fadeInUp 1s ease-out;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-btn {
	display: inline-block;
	padding: 15px 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 5px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	min-width: 200px;
	text-align: center;
}

.hero-btn-primary {
	background-color: #ffffff;
	color: #333333;
	border-color: #ffffff;
}

.hero-btn-primary:hover {
	background-color: transparent;
	color: #ffffff;
	border-color: #ffffff;
	transform: translateY(-2px);
}

.hero-btn-secondary {
	background-color: #d2691e;
	color: #ffffff;
	border-color: #d2691e;
}

.hero-btn-secondary:hover {
	background-color: transparent;
	color: #d2691e;
	border-color: #d2691e;
	transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
	.club-hero {
		height: 75vh;
		min-height: 500px;
		margin-top: 60px; /* Zmniejsz margines na mobile */
		padding: 0 15px; /* Zmniejsz padding */
		margin-bottom: -50px;
		position: relative;
		z-index: 10;
	}
	
	.hero-video-container {
		max-width: calc(100% - 30px); /* Większe marginesy na mobile */
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 30px);
		/* Upewnij się, że kontener jest wyśrodkowany */
		position: absolute;
		top: 0;
	}
	
	.hero-video-container,
	.hero-video,
	.hero-overlay {
		border-radius: 25px; /* Średnie zaokrąglenie na mobile */
	}
	
	.hero-title {
		font-size: 2.5rem;
		margin-bottom: 1rem;
		line-height: 1.1;
	}
	
	.hero-buttons {
		flex-direction: column;
		align-items: center;
		width: 100%;
		gap: 0.8rem;
	}
	
	.hero-btn {
		width: 100%;
		max-width: 300px;
		padding: 12px 25px;
		font-size: 1rem;
	}
	
	.hero-content-inner {
		gap: 2.5rem; /* Zwiększono odstęp na mobile */
	}
}

@media (max-width: 480px) {
	.club-hero {
		height: 70vh;
		margin-top: 50px; /* Jeszcze mniejszy margines */
		padding: 0 10px; /* Minimalny padding */
		margin-bottom: -40px;
	}
	
	.hero-video-container {
		max-width: calc(100% - 20px); /* Mniejsze marginesy na bardzo małych ekranach */
		width: calc(100% - 20px);
	}
	
	.hero-video-container,
	.hero-video,
	.hero-overlay {
		border-radius: 20px; /* Delikatne zaokrąglenie na małych ekranach */
	}
	
	.hero-title {
		font-size: 1.8rem;
		line-height: 1.2;
		margin-bottom: 0.8rem;
	}
	
	.hero-btn {
		padding: 10px 20px;
		font-size: 0.9rem;
		min-width: 180px;
	}
	
	.hero-content {
		padding: 0 10px;
	}
	
	.hero-content-inner {
		gap: 2rem; /* Zwiększono odstęp na małych ekranach */
	}
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
	.club-hero {
		height: 75vh;
		margin-top: 70px;
		padding: 0 25px;
	}
	
	.hero-video-container {
		max-width: calc(100% - 50px);
		width: calc(100% - 50px);
	}
	
	.hero-video-container,
	.hero-video,
	.hero-overlay {
		border-radius: 30px;
	}
	
	.hero-title {
		font-size: 3rem;
	}
}

/* Animacje */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Dodatkowe style dla lepszego efektu peek */
@media (max-width: 768px) {
	.club-hero::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 20px;
		background: linear-gradient(transparent, rgba(0,0,0,0.1));
		z-index: 1;
	}
}

/* Dodatkowe style dla lepszego wyglądu */
.hero-content {
	animation: fadeInUp 1s ease-out 0.1s both;
}

/* Efekt hover dla przycisków */
.hero-btn:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Lepsze style dla nakładki */
.hero-overlay {
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.3) 0%,
		rgba(0, 0, 0, 0.5) 50%,
		rgba(0, 0, 0, 0.4) 100%
	);
}

/* Dodatkowe style dla lepszego wyglądu filmiku */



/* Lepsze pozycjonowanie dla różnych rozmiarów ekranu */
@media (max-width: 1200px) {
	.hero-video-container {
		max-width: calc(100% - 60px);
		width: calc(100% - 60px);
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 900px) {
	.hero-video-container {
		max-width: calc(100% - 40px);
		width: calc(100% - 40px);
		left: 50%;
		transform: translateX(-50%);
	}
}

/* Dodatkowe style dla lepszego kontrastu */
.hero-content {
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-title {
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

/* Dodatkowe style dla lepszego wyśrodkowania wideo */
.hero-video-container {
	display: flex;
	align-items: center;
	justify-content: center;
}



