/* CSS Commun - Fairy Nail Art */

/* ==========================================
   RÈGLES BREAKPOINTS (STRICT)
   ========================================== */
/* ✅ Styles généraux AVANT les breakpoints uniquement
   ✅ Ordre des breakpoints : du plus grand au plus petit (STRICT)
   ❌ INTERDICTION de rajouter des breakpoints non listés
   ❌ INTERDICTION de changer l'ordre des breakpoints
   ❌ INTERDICTION de mettre du CSS en dehors des breakpoints (sauf styles généraux) */

/* Smooth scroll pour toute la page */
html {
	scroll-behavior: smooth;
}

/* Variables CSS - Palette dorée élégante */
:root {
	--gold-light: #d4af37;
	--gold-lighter: #f0d58c;
	--gold-dark: #b8941e;
	--gold-shimmer: linear-gradient(135deg, #d4af37 0%, #f0d58c 50%, #d4af37 100%);
}

/* Classe utilitaire - Accent doré avec gradient */
.gold-accent {
	background: var(--gold-shimmer);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 400;
}
/* Headers de pages - Structure commune */
.page-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

/* Titres de pages - Style commun */
.page-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

/* Descriptions de pages - Style commun */
.page-description {
	line-height: 1.8;
	font-size: 1.1rem;
}


/* Animations communes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Footer commun */
footer {
	padding: 6rem 5% 3rem;
	margin-top: 4rem;
}

/* Variantes de couleur selon le thème de la page */
footer.footer-dark {
	background: #1a1a1a;
	color: #fff;
}

footer.footer-light {
	background: white;
	color: #333;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 5rem;
	margin-bottom: 3rem;
}

.footer-container > div {
	position: relative;
}

.footer-container > div:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -1.5rem;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #444;
}

.footer-title {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 300;
	color: var(--gold-light);
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

.footer-title.main {
	font-size: 1.5rem;
}

.footer-text {
	line-height: 2;
	font-size: 0.9rem;
	font-weight: 300;
}

footer.footer-dark .footer-text {
	color: #999;
}

footer.footer-light .footer-text {
	color: #666;
}

.footer-text a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-text a:hover {
	color: var(--gold-light);
}

/* Social icons styling */
a.social-icon {
	color: #ccc;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	text-decoration: none;
}

a.social-icon:link,
a.social-icon:visited {
	color: #ccc;
}

a.social-icon:hover {
	color: white;
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.1);
	text-decoration: none;
}

.social-icon svg {
	width: 20px;
	height: 20px;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.85rem;
}

footer.footer-dark .footer-bottom {
	color: #666;
	border-top-color: rgba(255, 255, 255, 0.1);
}

footer.footer-light .footer-bottom {
	color: #999;
	border-top-color: #f0f0f0;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS (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) {
	/* Écrans ≤1023px */
}

/* 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 ≤480px */
@media (max-width: 480px) {
	footer {
		padding: 4rem 5% 2rem;
	}
	
	.footer-container {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-bottom: 2rem;
	}
	
	.footer-title {
		font-size: 1.1rem;
		margin-bottom: 0.8rem;
	}
	
	.footer-title.main {
		font-size: 1.3rem;
	}
	
	.footer-text {
		font-size: 0.9rem;
		line-height: 1.8;
	}
	
	.footer-bottom {
		font-size: 0.8rem;
		padding-top: 1.5rem;
	}
}

@media (max-width: 480px) {
	footer {
		padding: 3rem 4% 1.5rem;
	}
	
	.footer-title {
		font-size: 1rem;
	}
	
	.footer-title.main {
		font-size: 1.2rem;
	}
	
	.footer-text {
		font-size: 0.85rem;
	}
}
