/* ============================================================
   Club Natació Felanitx — Estils personalitzats del tema
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
	--garnet:       #7A1B3D;
	--garnet-dark:  #4A0E24;
	--garnet-deep:  #2D0815;
	--garnet-light: #A83258;
	--garnet-soft:  #C4546E;
	--cream:        #FFF8F0;
	--gold:         #D4A853;
	--gold-light:   #F0D9A0;
	--white:        #ffffff;
	--gray-50:      #fafafa;
	--gray-100:     #f5f5f5;
	--gray-200:     #e5e5e5;
	--gray-600:     #525252;
	--gray-800:     #262626;
	--gray-900:     #171717;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* ===== NAVIGATION (site-header) ===== */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.4s ease;
	background: rgba(42, 8, 21, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

/* En la portada el header empieza transparente sobre el hero */
.home .site-header {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.site-header.scrolled {
	background: rgba(42, 8, 21, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding-top: 0.6rem;
	padding-bottom: 0.6rem;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Logo */
.nav-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}

.nav-logo-img {
	width: 46px; height: 46px;
	border-radius: 12px;
	object-fit: contain;
	background: rgba(255,255,255,0.1);
	padding: 4px;
}

.nav-logo-title,
.nav-logo-title a {
	color: white !important;
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.2;
	text-decoration: none;
}

.nav-logo-subtitle {
	font-weight: 400;
	font-size: 0.7rem;
	color: var(--gold-light);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin: 0;
}

/* Navigation links */
.wp-block-navigation__container .wp-block-navigation-item__content {
	color: rgba(255,255,255,0.85) !important;
	font-size: 0.88rem;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.wp-block-navigation__container .wp-block-navigation-item__content:hover {
	color: white !important;
	background: rgba(255,255,255,0.1);
}

/* CTA button in nav */
.nav-cta .wp-block-navigation-item__content {
	background: var(--garnet-light) !important;
	color: white !important;
	font-weight: 600 !important;
	border: 1px solid rgba(255,255,255,0.15) !important;
}

.nav-cta .wp-block-navigation-item__content:hover {
	background: var(--garnet-soft) !important;
	transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero-section {
	min-height: 100vh;
	background: var(--garnet-deep);
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 65% 30%, rgba(122, 27, 61, 0.4) 0%, transparent 60%),
		radial-gradient(ellipse 50% 50% at 20% 80%, rgba(74, 14, 36, 0.5) 0%, transparent 50%),
		linear-gradient(170deg, var(--garnet-deep) 0%, #3D1020 50%, var(--garnet-dark) 100%);
	pointer-events: none;
}

.lane-lines {
	position: absolute;
	inset: 0;
	overflow: hidden;
	opacity: 0.04;
	pointer-events: none;
}

.lane-line {
	position: absolute;
	width: 2px;
	height: 150%;
	background: repeating-linear-gradient(
		0deg,
		var(--gold) 0px, var(--gold) 20px,
		transparent 20px, transparent 32px
	);
	transform: rotate(-20deg);
	transform-origin: top center;
}

.wave-container {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 180px;
	overflow: hidden;
	pointer-events: none;
}

.wave { position: absolute; bottom: 0; left: -5%; width: 110%; height: 100%; }
.wave svg { width: 100%; height: 100%; }
.wave-1 { animation: cnf-wave 8s ease-in-out infinite; opacity: 0.5; }
.wave-2 { animation: cnf-wave 11s ease-in-out infinite reverse; opacity: 0.3; bottom: -10px; }

@keyframes cnf-wave {
	0%, 100% { transform: translateX(0); }
	50%       { transform: translateX(-3%); }
}

.hero-content-wrap {
	position: relative;
	z-index: 10;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 8rem 2rem 6rem;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 3rem;
}

/* Hero badge */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(212, 168, 83, 0.1);
	border: 1px solid rgba(212, 168, 83, 0.25);
	padding: 0.4rem 1rem;
	border-radius: 100px;
	font-size: 0.78rem;
	color: var(--gold-light);
	margin-bottom: 1.5rem;
	font-weight: 500;
	animation: cnf-fadeInUp 0.8s ease forwards;
	opacity: 0;
}

.hero-badge::before {
	content: '';
	width: 8px; height: 8px;
	background: var(--gold);
	border-radius: 50%;
	animation: cnf-pulse 2s ease infinite;
}

@keyframes cnf-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero-section h1 {
	font-size: clamp(2.5rem, 5vw, 3.8rem) !important;
	color: white !important;
	margin-bottom: 1.5rem;
	animation: cnf-fadeInUp 0.8s ease 0.1s forwards;
	opacity: 0;
}

.hero-section h1 em {
	font-style: italic;
	color: var(--gold-light);
}

.hero-description {
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255,255,255,0.55) !important;
	font-weight: 300;
	margin-bottom: 2.5rem;
	max-width: 520px;
	animation: cnf-fadeInUp 0.8s ease 0.2s forwards;
	opacity: 0;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	animation: cnf-fadeInUp 0.8s ease 0.3s forwards;
	opacity: 0;
}

/* Hero photo card */
.hero-photo-card {
	animation: cnf-fadeInUp 0.8s ease 0.4s forwards;
	opacity: 0;
}

.hero-photo-frame {
	border-radius: 24px;
	overflow: hidden;
	border: 2px solid rgba(255,255,255,0.08);
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
	position: relative;
}

.hero-photo-frame img {
	width: 100%;
	display: block;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.hero-photo-overlay {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 2rem 1.5rem 1.5rem;
	background: linear-gradient(transparent, rgba(45, 8, 21, 0.9));
}

.hero-photo-label {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--gold-light);
	margin-bottom: 0.25rem;
}

.hero-photo-title {
	font-size: 1rem;
	color: white;
	font-weight: 500;
}

/* Mini stats */
.hero-stats-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-top: 1rem;
}

.mini-stat {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 1rem;
	text-align: center;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.mini-stat:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(212, 168, 83, 0.2);
	transform: translateY(-2px);
}

.mini-stat-number {
	font-size: 1.5rem;
	font-weight: 800;
	color: white;
	line-height: 1;
}

.mini-stat-label {
	font-size: 0.7rem;
	color: rgba(255,255,255,0.45);
	margin-top: 0.2rem;
}

/* ===== BUTTONS ===== */
.btn-primary,
.wp-block-button__link.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 2rem;
	background: linear-gradient(135deg, var(--garnet), var(--garnet-light));
	color: white !important;
	font-family: 'Outfit', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 12px;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(122, 27, 61, 0.4);
}

.btn-primary:hover,
.wp-block-button__link.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(122, 27, 61, 0.5);
	background: linear-gradient(135deg, var(--garnet-light), var(--garnet-soft));
}

.btn-secondary,
.wp-block-button__link.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 2rem;
	background: rgba(255,255,255,0.05);
	color: white !important;
	font-family: 'Outfit', sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 12px;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-secondary:hover,
.wp-block-button__link.btn-secondary:hover {
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.25);
}

/* ===== SECTION COMMONS ===== */
.cnf-section { padding: 6rem 2rem; }
.cnf-container { max-width: 1200px; margin: 0 auto; }
.cnf-section-header { margin-bottom: 3.5rem; }

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--garnet);
	text-transform: uppercase;
	letter-spacing: 2.5px;
	margin-bottom: 0.75rem;
}

.section-tag::before {
	content: '';
	width: 28px; height: 2px;
	background: var(--garnet);
	border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
	background: var(--cream);
	position: relative;
	overflow: hidden;
}

.about-section::before {
	content: '';
	position: absolute;
	top: -150px; right: -150px;
	width: 500px; height: 500px;
	background: radial-gradient(circle, rgba(122, 27, 61, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-image-wrap {
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image-wrap img {
	width: 100%;
	display: block;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.about-image-badge {
	position: absolute;
	bottom: 1rem; left: 1rem;
	background: rgba(45, 8, 21, 0.85);
	backdrop-filter: blur(10px);
	color: white;
	padding: 0.6rem 1rem;
	border-radius: 10px;
	font-size: 0.8rem;
	font-weight: 500;
	border: 1px solid rgba(255,255,255,0.1);
}

.about-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }

.about-feature { display: flex; gap: 1rem; align-items: flex-start; }

.about-feature-icon {
	width: 46px; height: 46px; min-width: 46px;
	background: linear-gradient(135deg, rgba(122, 27, 61, 0.08), rgba(122, 27, 61, 0.03));
	border: 1px solid rgba(122, 27, 61, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.about-feature h4 { font-size: 1rem; font-weight: 600; color: var(--garnet-dark); margin-bottom: 0.2rem; }
.about-feature p  { font-size: 0.88rem; color: var(--gray-600); line-height: 1.55; font-weight: 300; }

/* ===== SCHEDULE SECTION ===== */
.schedule-section { background: white; }

.schedule-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.25rem;
}

.schedule-card {
	background: white;
	border: 1px solid var(--gray-200);
	border-radius: 20px;
	padding: 1.75rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.schedule-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--garnet), var(--garnet-light));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.schedule-card:hover {
	border-color: rgba(122, 27, 61, 0.2);
	box-shadow: 0 10px 40px rgba(0,0,0,0.06);
	transform: translateY(-3px);
}

.schedule-card:hover::before { opacity: 1; }

.schedule-category {
	display: inline-block;
	padding: 0.25rem 0.7rem;
	border-radius: 6px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.75rem;
}

.cat-prebenjami { background: #fef3c7; color: #92400e; }
.cat-benjami    { background: #d1fae5; color: #065f46; }
.cat-alevi      { background: #dbeafe; color: #1e40af; }
.cat-infantil   { background: #ede9fe; color: #5b21b6; }
.cat-junior     { background: #fce7f3; color: #9d174d; }
.cat-absolut    { background: #FFF0F3; color: var(--garnet); }

.schedule-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--garnet-deep); margin-bottom: 0.15rem; }
.schedule-age     { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 1rem; }
.schedule-times   { display: flex; flex-direction: column; gap: 0.4rem; }

.schedule-time {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.4rem 0;
	border-bottom: 1px solid var(--gray-100);
}

.schedule-time:last-child { border-bottom: none; }
.schedule-day  { font-weight: 500; font-size: 0.85rem; color: var(--gray-800); }

.schedule-hour {
	font-size: 0.8rem;
	color: var(--garnet);
	font-weight: 600;
	background: rgba(122, 27, 61, 0.06);
	padding: 0.2rem 0.5rem;
	border-radius: 6px;
}

/* ===== NEWS SECTION ===== */
.news-section {
	background: var(--garnet-deep);
	position: relative;
	overflow: hidden;
}

.news-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 50% at 80% 20%, rgba(122, 27, 61, 0.2) 0%, transparent 60%),
		radial-gradient(ellipse 40% 40% at 10% 80%, rgba(74, 14, 36, 0.3) 0%, transparent 60%);
	pointer-events: none;
}

.news-section .section-tag          { color: var(--gold-light); }
.news-section .section-tag::before  { background: var(--gold-light); }
.news-section h2                    { color: white !important; }
.news-section h2 em                 { color: var(--gold-light); }
.news-section .section-subtitle     { color: rgba(255,255,255,0.45) !important; }

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	position: relative;
	z-index: 1;
}

.news-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s ease;
	cursor: pointer;
}

.news-card:hover {
	background: rgba(255,255,255,0.07);
	border-color: rgba(212, 168, 83, 0.15);
	transform: translateY(-4px);
}

.news-card-image {
	height: 180px;
	background: linear-gradient(135deg, rgba(122, 27, 61, 0.25), rgba(74, 14, 36, 0.3));
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.news-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
}

.news-card-image-icon { font-size: 2.5rem; opacity: 0.25; }

.news-date-badge {
	position: absolute;
	top: 0.75rem; left: 0.75rem;
	background: rgba(0,0,0,0.45);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 0.4rem 0.65rem;
	text-align: center;
}

.news-date-day   { font-size: 1.2rem; font-weight: 700; color: white; line-height: 1; }
.news-date-month { font-size: 0.6rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: 1px; }
.news-card-body  { padding: 1.25rem; }
.news-card-tag   { font-size: 0.65rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.6rem; }

.news-card h3,
.news-card .wp-block-post-title a {
	font-size: 1rem;
	font-weight: 600;
	color: white !important;
	line-height: 1.4;
	margin-bottom: 0.6rem;
	text-decoration: none;
}

.news-card p,
.news-card .wp-block-post-excerpt__excerpt {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.4);
	line-height: 1.6;
	font-weight: 300;
}

/* ===== SPONSORS ===== */
.sponsors-section { background: white; padding: 4rem 2rem; }
.sponsors-inner   { max-width: 1200px; margin: 0 auto; text-align: center; }
.sponsors-label   { font-size: 0.75rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 2rem; }

.sponsors-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
	opacity: 0.5;
}

.sponsor-item {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--gray-800);
	letter-spacing: 1px;
	padding: 1rem 2rem;
	border: 1px solid var(--gray-200);
	border-radius: 12px;
}

/* ===== COMPETITIONS ===== */
.competitions-section { background: var(--gray-50); }

.comp-timeline { display: flex; flex-direction: column; gap: 0.75rem; max-width: 800px; }

.comp-item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1.25rem;
	align-items: center;
	padding: 1.25rem 1.5rem;
	background: white;
	border-radius: 16px;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.comp-item:hover {
	border-color: rgba(122, 27, 61, 0.15);
	box-shadow: 0 4px 20px rgba(0,0,0,0.04);
	transform: translateX(6px);
}

.comp-date        { text-align: center; min-width: 55px; }
.comp-date-day    { font-size: 1.6rem; font-weight: 800; color: var(--garnet); line-height: 1; }
.comp-date-month  { font-size: 0.7rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 1px; }
.comp-info h4     { font-size: 0.95rem; font-weight: 600; color: var(--garnet-deep); margin-bottom: 0.15rem; }
.comp-info p      { font-size: 0.8rem; color: var(--gray-600); font-weight: 300; }

.comp-status {
	padding: 0.25rem 0.7rem;
	border-radius: 100px;
	font-size: 0.7rem;
	font-weight: 600;
	white-space: nowrap;
}

.status-upcoming { background: #fef3c7; color: #92400e; }
.status-open     { background: #d1fae5; color: #065f46; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--cream); }

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-form  { display: flex; flex-direction: column; gap: 0.85rem; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-group    { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--gray-800); }

.form-group input,
.form-group textarea,
.form-group select {
	padding: 0.8rem 1rem;
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	font-family: 'Outfit', sans-serif;
	font-size: 0.9rem;
	background: white;
	transition: all 0.3s ease;
	outline: none;
	width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-color: var(--garnet);
	box-shadow: 0 0 0 3px rgba(122, 27, 61, 0.08);
}

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

.contact-info-cards { display: flex; flex-direction: column; gap: 0.75rem; }

.contact-info-card {
	background: white;
	border-radius: 14px;
	padding: 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.contact-info-card:hover {
	border-color: rgba(122, 27, 61, 0.15);
	box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.contact-info-icon {
	width: 46px; height: 46px; min-width: 46px;
	background: linear-gradient(135deg, rgba(122, 27, 61, 0.08), rgba(122, 27, 61, 0.03));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.contact-info-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--garnet-dark); margin-bottom: 0.1rem; }
.contact-info-card p  { font-size: 0.82rem; color: var(--gray-600); font-weight: 300; }

.map-placeholder {
	background: linear-gradient(135deg, var(--gray-200), #d4d4d4);
	border-radius: 14px;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-600);
	font-size: 0.85rem;
	margin-top: 0.75rem;
	border: 1px solid var(--gray-200);
}

/* ===== FOOTER ===== */
.site-footer {
	background: var(--garnet-deep);
	padding: 4rem 2rem 1.5rem;
	color: rgba(255,255,255,0.45);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
	font-size: 0.85rem;
	line-height: 1.7;
	margin-top: 0.75rem;
	font-weight: 300;
	color: rgba(255,255,255,0.45);
}

.footer-col h4 {
	color: white;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 0.85rem;
}

.footer-col a {
	display: block;
	color: rgba(255,255,255,0.45);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 300;
	padding: 0.25rem 0;
	transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-social {
	display: flex;
	gap: 0.6rem;
	margin-top: 1.25rem;
}

.footer-social a {
	width: 38px; height: 38px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: rgba(122, 27, 61, 0.3);
	border-color: rgba(122, 27, 61, 0.4);
	color: var(--gold-light);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.5rem;
	font-size: 0.75rem;
}

.footer-federations { display: flex; gap: 1rem; align-items: center; }

.footer-federations span {
	font-size: 0.7rem;
	padding: 0.25rem 0.5rem;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 6px;
}

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

.cnf-animate {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.cnf-animate.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== QUERY LOOP: NEWS POSTS ===== */
.news-posts-grid .wp-block-post {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s ease;
}

.news-posts-grid .wp-block-post:hover {
	background: rgba(255,255,255,0.07);
	border-color: rgba(212, 168, 83, 0.15);
	transform: translateY(-4px);
}

.news-posts-grid .wp-block-post-featured-image img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.news-posts-grid .wp-block-post-title a {
	color: white !important;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
}

.news-posts-grid .wp-block-post-excerpt p {
	color: rgba(255,255,255,0.4);
	font-size: 0.82rem;
	font-weight: 300;
}

/* ===== EL CLUB — TIMELINE ===== */
.club-timeline {
	position: relative;
	padding-left: 2rem;
	border-left: 2px solid rgba(122, 27, 61, 0.2);
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.club-timeline-item {
	position: relative;
}

.club-timeline-item::before {
	content: '';
	position: absolute;
	left: -2.6rem;
	top: 0.35rem;
	width: 12px; height: 12px;
	background: var(--garnet);
	border-radius: 50%;
	border: 2px solid white;
	box-shadow: 0 0 0 2px rgba(122, 27, 61, 0.3);
}

.club-timeline-label {
	display: inline-block;
	background: rgba(122, 27, 61, 0.08);
	color: var(--garnet);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 0.2rem 0.65rem;
	border-radius: 20px;
	margin-bottom: 0.4rem;
}

.club-timeline-item h3 {
	font-size: 1.05rem;
	font-weight: 600;
	color: #2D0815;
	margin: 0 0 0.35rem;
}

.club-timeline-item p {
	font-size: 0.92rem;
	color: #555;
	line-height: 1.65;
	margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
	.hero-content-wrap {
		grid-template-columns: 1fr;
		padding-top: 7rem;
	}

	.about-grid,
	.contact-grid { grid-template-columns: 1fr; }

	.news-grid { grid-template-columns: 1fr; }

	.footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

	.footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

	.comp-item { grid-template-columns: auto 1fr; }
	.comp-status { grid-column: 1 / -1; justify-self: start; }

	.form-row { grid-template-columns: 1fr; }

	.hero-stats-row { grid-template-columns: repeat(3, 1fr); }

	.site-header {
		padding: 0.8rem 1rem;
	}
}

@media (max-width: 480px) {
	.hero-stats-row { grid-template-columns: 1fr 1fr; }
	.sponsors-logos { gap: 1.5rem; }
}
