/*
Theme Name: Wembley 1969
Theme URI: https://wembley1969-chania.gr
Author: Wembley 1969 FC
Author URI: https://wembley1969-chania.gr
Description: Επίσημο θέμα για τον Σύλλογο Βετεράνων Ποδοσφαιριστών Χανίων - Wembley 1969
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: wembley1969
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark: #0a1628;
  --blue-mid: #102040;
  --blue-primary: #0a3a8a;
  --red: #e63329;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.55);
  --text-dim: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--blue-dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  border-bottom: none !important;
}

.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 40px, rgba(255,255,255,0.018) 40px, rgba(255,255,255,0.018) 80px),
    linear-gradient(135deg, #060d1a 0%, #0a1628 40%, #0d1a30 70%, #160305 100%);
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
  position: relative;
  overflow: hidden;
}

.hero-glow-blue {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,58,138,0.25) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}

.hero-glow-red {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(230,51,41,0.15) 0%, transparent 70%);
  bottom: 0; right: 0;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-left { flex: 1; }

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 6px;
}

.hero-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { transform: translateY(-1px); opacity: 0.9; }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.7); }

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--white);
  line-height: 1;
}

.stat-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.hero-right { flex-shrink: 0; }

.hero-logo-wrap {
  width: 280px;
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.hero-logo-img,
.hero-logo-wrap img {
  width: 220px !important;
  height: 220px !important;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.hero-logo-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  animation: spin 20s linear infinite;
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  position: relative;
  z-index: 1;
}

/* ── COLOR BAR ── */
.colorbar {
  height: 5px;
  background: linear-gradient(90deg, var(--blue-primary) 33.33%, var(--white) 33.33%, var(--white) 66.66%, var(--red) 66.66%);
}

/* ── SECTIONS ── */
.section-wrap {
  background: 
    repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 120px),
    linear-gradient(180deg, #0a1628 0%, #0d1a30 100%);
}

.section-wrap.alt {
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(255,255,255,0.01) 60px, rgba(255,255,255,0.01) 120px),
    linear-gradient(180deg, #060d1a 0%, #0a1020 100%);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--white);
}

.section-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.section-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.player-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.player-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}

.player-card.captain { border-top: 3px solid var(--red); }

.player-photo {
  height: 160px;
  background: linear-gradient(135deg, #0a1628, #0d1f38);
  position: relative;
  overflow: hidden;
  object-position: top center;
}

.player-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 10px, rgba(255,255,255,0.015) 10px, rgba(255,255,255,0.015) 20px);
}

.player-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 1;
}

.player-photo .no-photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.08);
  z-index: 1;
}

.player-num {
  position: absolute;
  top: 8px; right: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  z-index: 2;
}

.player-info { padding: 12px 14px 14px; }

.player-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.player-pos {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.player-card.captain .player-pos { color: var(--red); }

.btn-ghost {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* ── MATCHES ── */
.matches-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.match-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.2s;
}

.match-card:hover { border-color: rgba(255,255,255,0.12); }

.match-date { min-width: 60px; text-align: center; }

.match-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1;
  color: var(--white);
}

.match-month {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}

.match-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

.match-info { flex: 1; }

.match-vs {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.match-loc { font-size: 12px; color: var(--text-muted); }

.match-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  flex-shrink: 0;
}

.tag-friendly { background: rgba(10,58,138,0.3); color: #6ba3e0; border: 1px solid rgba(10,58,138,0.5); }
.tag-charity { background: rgba(30,100,30,0.3); color: #7ecb7e; border: 1px solid rgba(30,100,30,0.5); }
.tag-upcoming { background: rgba(200,120,0,0.2); color: #f0a040; border: 1px solid rgba(200,120,0,0.4); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-inner {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1628, #0d1f38);
  overflow: hidden;
}

.gallery-item:first-child .gallery-inner {
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}

.gallery-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-inner img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── NEWSLETTER ── */
.newsletter-wrap {
  background: linear-gradient(135deg, #060d1a, #0a1628);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ── BALL DECORATION ── */
.ball-decoration-wrap {
  background: var(--blue-dark);
  display: flex;
  justify-content: center;
  padding: 20px 0;
  overflow: hidden;
}

.ball-decoration {
  font-size: 80px;
  opacity: 0.06;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(230,51,41,0.3));
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

/* ── NEWSLETTER LOGO ── */
.nl-logo {
  flex-shrink: 0;
}

.nl-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

/* ── HERO LOGO IMG ── */
.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  position: relative;
  z-index: 1;
}

.nl-text { flex: 1; }

.nl-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 6px;
}

.nl-sub { font-size: 13px; color: var(--text-muted); }

.nl-form { display: flex; gap: 10px; flex-shrink: 0; }

.nl-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  width: 240px;
  outline: none;
}

.nl-input::placeholder { color: rgba(255,255,255,0.3); }

.nl-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  white-space: nowrap;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  outline: none;
  width: 100%;
}

.form-input::placeholder { color: rgba(255,255,255,0.3); }
textarea.form-input { min-height: 120px; resize: vertical; }

/* ── FOOTER ── */
.site-footer {
  background: #040a14;
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left { font-size: 12px; color: rgba(255,255,255,0.25); }

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ── NEWS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

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

.news-img {
  height: 180px;
  background: linear-gradient(135deg, #0a1628, #0d1f38);
  overflow: hidden;
}

.news-img img { width: 100%; height: 100%; object-fit: cover; }

.news-body { padding: 20px; }

.news-date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.news-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.news-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-logo-wrap { width: 200px; height: 200px; }
  .section-inner { padding: 60px 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .newsletter-inner { flex-direction: column; text-align: center; padding: 40px 20px; }
  .nl-form { flex-direction: column; width: 100%; }
  .nl-input { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .news-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; gap: 16px; text-align: center; padding: 20px; }
}
/* CONTACT FORM 7 */
.wpcf7-form p { margin: 0 0 14px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: white !important;
  padding: 13px 16px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  width: 100% !important;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: rgba(255,255,255,0.45) !important;
}
.wpcf7-form input[type="submit"] {
  background: #e63329 !important;
  color: white !important;
  border: none !important;
  padding: 14px !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  width: 100% !important;
  cursor: pointer !important;
}
.wpcf7-form label { 
  font-size: 0 !important;
  height: 0 !important;
  margin: 0 !important;
}
/* Newsletter input dark background */
.newsletter_widget input[type="email"],
#newsletter_form input[type="email"],
.newsletter-form input[type="email"],
div.newsletter_form input[type="email"] {
  background: rgba(10,22,40,0.8) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: white !important;
}
/* Newsletter - force dark background */
input[name="ne"] {
  background: #0a1628 !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: white !important;
  padding: 12px 16px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
}

input[name="ne"]::placeholder {
  color: rgba(255,255,255,0.4) !important;
}

/* CF7 placeholders more visible */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(255,255,255,0.45) !important;
  font-size: 13px !important;
}
nav .hero-logo-ring {
  display: none !important;
}
.filter-btn {
    text-decoration: none;
}