/**
 * Contact Page Styles
 *
 * @package kadence
 */

/* ===== CONTACT HERO ===== */
.contact-hero {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	background: transparent;
	overflow: hidden;
}

.contact-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.contact-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.0);
	z-index: 2;
}

.contact-hero-content {
	position: relative;
	z-index: 3;
	width: 100%;
	padding: 80px 0;
}

.contact-hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-hero-text {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.contact-hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #d2691e;
	margin: 0 0 30px 0;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero-subtitle {
	font-size: 1.3rem;
	color: #e0e0e0;
	margin: 0 0 40px 0;
	line-height: 1.6;
}

/* ===== TRZYCZĘŚCIOWA SEKCJA ===== */
.contact-hero-three-columns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	margin-top: 60px;
	padding: 40px 0;
}

.contact-column,
.kadra-column,
.seasons-column {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}

.column-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 25px 0;
	text-align: center;
	border-bottom: 3px solid #d2691e;
	padding-bottom: 15px;
}

/* ===== KOLUMNA KONTAKTU ===== */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.contact-info-item:hover {
	background: #e9ecef;
	transform: translateX(5px);
}

.contact-info-item i {
	color: #d2691e;
	font-size: 24px;
	flex-shrink: 0;
}

.contact-info-text h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 5px 0;
	color: #2c3e50;
}

.contact-info-text p {
	font-size: 0.95rem;
	margin: 0;
	color: #6c757d;
	font-weight: 500;
}

/* ===== KOLUMNA KADRY ===== */
.kadra-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.kadra-logo {
	margin-bottom: 25px;
}

.kadra-svg {
	width: 120px;
	height: 120px;
	object-fit: contain;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.kadra-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 10px 0;
}

.kadra-subtitle {
	font-size: 1rem;
	color: #6c757d;
	margin: 0;
	font-style: italic;
}

/* ===== KOLUMNA SEZONÓW ===== */
.seasons-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 30px;
}

.season-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.season-item:hover {
	background: #e9ecef;
	transform: translateX(5px);
}

.season-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #ffffff;
	flex-shrink: 0;
}

.season-icon.winter {
	background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.season-icon.summer {
	background: linear-gradient(135deg, #fdcb6e, #e17055);
}

.season-icon.transition {
	background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.season-content {
	flex: 1;
}

.season-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: #2c3e50;
	margin: 0 0 5px 0;
}

.season-period {
	font-size: 0.9rem;
	color: #d2691e;
	font-weight: 600;
	margin: 0 0 5px 0;
}

.season-desc {
	font-size: 0.85rem;
	color: #6c757d;
	margin: 0;
}

/* ===== INFORMACJA O GRUPACH ===== */
.groups-info {
	background: linear-gradient(135deg, #d2691e, #b8860b);
	border-radius: 15px;
	padding: 20px;
	color: #ffffff;
	text-align: center;
}

.groups-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 1.1rem;
}

.groups-badge i {
	font-size: 20px;
}

.groups-desc {
	font-size: 0.9rem;
	margin: 0 0 15px 0;
	opacity: 0.9;
}

.groups-link {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
	padding: 8px 20px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.groups-link:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.contact-form-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-form-wrapper {
	background: #ffffff;
	border-radius: 12px;
	padding: 50px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-header {
	text-align: center;
	margin-bottom: 40px;
}

.contact-form-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 20px 0;
}

.contact-form-subtitle {
	font-size: 1.1rem;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* ===== FORM STYLES ===== */
.contact-form {
	max-width: 100%;
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
}

.form-group {
	flex: 1;
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #d2691e;
	box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
}

/* ===== CHECKBOX STYLES ===== */
.checkbox-group {
	margin-bottom: 25px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
	width: auto;
	margin: 0;
	transform: scale(1.2);
}

.checkbox-label a {
	color: #d2691e;
	text-decoration: none;
}

.checkbox-label a:hover {
	text-decoration: underline;
}

/* ===== BUTTON STYLES ===== */
.form-submit {
	text-align: center;
	margin-top: 40px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

.btn-primary {
	background: linear-gradient(135deg, #d2691e, #b8860b);
	color: #ffffff;
	border-color: #d2691e;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #b8860b, #d2691e);
	border-color: #b8860b;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(210, 105, 30, 0.4);
}

.btn-large {
	padding: 18px 40px;
	font-size: 1.2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
	.contact-hero {
		min-height: 400px;
	}
	
	.contact-hero-title {
		font-size: 2.5rem;
	}
	
	.contact-hero-subtitle {
		font-size: 1.1rem;
	}
	
	/* Responsywne style dla trzech kolumn */
	.contact-hero-three-columns {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-top: 40px;
		padding: 20px 0;
	}
	
	.contact-column,
	.kadra-column,
	.seasons-column {
		padding: 25px;
	}
	
	.column-title {
		font-size: 1.5rem;
	}
	
	.kadra-svg {
		width: 100px;
		height: 100px;
	}
	
	.season-item {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}
	
	.season-icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	
	.form-row {
		flex-direction: column;
		gap: 0;
	}
	
	.contact-form-wrapper {
		padding: 30px 20px;
	}
	
	.contact-form-title {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.contact-hero-title {
		font-size: 2rem;
	}
	
	.contact-form-wrapper {
		padding: 20px 15px;
	}
	
	.btn {
		padding: 14px 24px;
		font-size: 1rem;
	}
}
