/* Page Contact - Design Élégant */

.contact-page {
	padding: 8rem 5% 6rem;
	background: white;
	min-height: 100vh;
}

.contact-header {
	margin-bottom: 5rem;
}

.contact-title {
	color: #2c2c2c;
}

.contact-description {
	color: #666;
}

/* Container principal */
.contact-container {
	max-width: 1200px;
	margin: 0 auto 6rem;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
}

/* Cartes d'information */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.info-card {
	background: #fafaf8;
	padding: 2rem;
	border-radius: 8px;
	border-left: 3px solid var(--gold-light);
	transition: all 0.3s ease;
}

.info-card:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.info-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.info-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.3rem;
	color: var(--gold-dark);
	margin-bottom: 0.5rem;
	font-weight: 400;
}

.info-text {
	color: #555;
	line-height: 1.8;
	font-size: 0.95rem;
}

.info-text a {
	color: #555;
	text-decoration: none;
	transition: color 0.3s ease;
}

.info-text a:hover {
	color: var(--gold-light);
}

/* Réseaux sociaux */
.social-card {
	border-left-color: var(--gold-dark);
}

.social-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #555;
	text-decoration: none;
	padding: 0.75rem;
	background: white;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--gold-light);
	color: white;
	transform: translateX(5px);
}

.social-link svg {
	flex-shrink: 0;
}

/* Formulaire de contact */
.contact-form-wrapper {
	background: #fafaf8;
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 2rem;
	color: var(--gold-dark);
	margin-bottom: 2rem;
	font-weight: 400;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-size: 0.9rem;
	color: #555;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.875rem 1rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Arial, sans-serif;
	font-size: 0.95rem;
	background: white;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--gold-light);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	padding: 1rem 2.5rem;
	background: var(--gold-shimmer);
	color: white;
	border: none;
	border-radius: 6px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Arial, sans-serif;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.submit-btn:active {
	transform: translateY(0);
}

.submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Messages du formulaire */
.form-message {
	padding: 1rem;
	border-radius: 6px;
	font-size: 0.9rem;
	display: none;
}

.form-message.success {
	display: block;
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	display: block;
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Google Maps */
.map-container {
	max-width: 1200px;
	margin: 0 auto;
}

.map-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 2rem;
	color: var(--gold-dark);
	margin-bottom: 2rem;
	text-align: center;
	font-weight: 400;
}

.map-wrapper {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
	display: block;
}

/* Responsive - Desktop-First */

/* Ultra-large screens ≤2559px */
@media (max-width: 2559px) {
	/* Écrans ≤2559px */
}

/* Large desktop ≤1919px */
@media (max-width: 1919px) {
	/* Écrans ≤1919px */
}

/* Desktop ≤1439px */
@media (max-width: 1439px) {
	/* Écrans ≤1439px */
}

/* Laptop ≤1279px */
@media (max-width: 1279px) {
	/* Écrans ≤1279px */
}

/* Tablet large ≤1023px */
@media (max-width: 1024px) {
	.contact-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

/* Tablet landscape ≤899px */
@media (max-width: 899px) {
	@media (orientation: landscape) {
		/* Tablette landscape ≤899px */
	}
}

/* Tablet portrait ≤899px */
@media (max-width: 899px) {
	@media (orientation: portrait) {
		/* Tablette portrait ≤899px */
	}
}

/* Small tablet ≤714px */
@media (max-width: 714px) {
	/* Écrans ≤714px */
}

/* Mobile landscape ≤640px */
@media (max-width: 640px) {
	/* Écrans ≤640px */
}

/* Mobile portrait */
@media (max-width: 768px) {
	.contact-page {
		padding: 7rem 5% 4rem;
	}

	.contact-header {
		margin-bottom: 2.5rem;
	}
	
	.page-title {
		font-size: 2rem;
	}
	
	.page-description {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.contact-form-wrapper {
		padding: 2rem 1.5rem;
	}

	.form-title {
		font-size: 1.3rem;
	}
	
	.contact-info-item p {
		font-size: 0.9rem;
	}
	
	.map-wrapper {
		height: 300px;
	}
}

@media (max-width: 480px) {
	.contact-page {
		padding: 6rem 4% 3rem;
	}
	
	.page-title {
		font-size: 1.8rem;
	}
	
	.contact-form-wrapper {
		padding: 1.5rem 1rem;
	}
	
	.form-title {
		font-size: 1.2rem;
	}
	
	.form-group input,
	.form-group textarea {
		font-size: 0.9rem;
		padding: 0.8rem;
	}
	
	.submit-btn {
		padding: 0.9rem;
		font-size: 0.85rem;
	}
	
	.map-wrapper {
		height: 250px;
	}
}

	.map-wrapper iframe {
		height: 350px;
	}
}
