/* index.css — homepage specific styles */

/* ── HERO ── */
.hero { background: linear-gradient(135deg, #1e4d35 0%, #2a6647 60%, #1a5c3a 100%); padding: 80px 24px 100px; position: relative; overflow: hidden; }
.hero::before { content: '♠ ♥ ♦ ♣'; position: absolute; bottom: -20px; right: -40px; font-size: 180px; color: rgba(255,255,255,0.04); letter-spacing: 20px; user-select: none; pointer-events: none; }
.hero .hero-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.hero .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.2); border: 1px solid #c9a84c; color: #e8c97a; padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px; letter-spacing: 0.3px; }
.hero .hero-inner h1 { font-size: 64px; color: #ffffff; font-weight: 800; margin-bottom: 20px; }
.hero .hero-inner h1 span { color: #c9a84c; }
.hero .hero-inner > p { font-size: 18px; color: rgba(255,255,255,0.80); max-width: 600px; margin: 0 auto 40px; }

/* search bar */
.hero .search-bar { background: #ffffff; border-radius: 20px; padding: 8px 8px 8px 20px; display: flex; align-items: center; gap: 12px; box-shadow: 0 12px 48px rgba(0,0,0,0.14); max-width: 580px; margin: 0 auto 48px; }
.hero .search-bar .search-icon { color: #c9a84c; display: flex; align-items: center; }
.hero .search-bar input { flex: 1; border: none; outline: none; font-size: 16px; font-family: inherit; color: #2e2820; background: transparent; }
.hero .search-bar input::placeholder { color: #a09880; }
.hero .search-bar .search-btn { background: #1e4d35; color: #ffffff; border: none; border-radius: 12px; padding: 12px 24px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.15s; white-space: nowrap; }
.hero .search-bar .search-btn:hover { background: #3a8a60; }

/* stats */
.hero .hero-stats { display: flex; justify-content: center; gap: 48px; }
.hero .hero-stats .stat { text-align: center; }
.hero .hero-stats .stat .stat-num { font-size: 28px; font-weight: 800; color: #c9a84c; }
.hero .hero-stats .stat .stat-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 2px; }

@media (max-width: 768px) {
  .hero .hero-inner h1 { font-size: 36px; }
  .hero .hero-stats { gap: 24px; }
  .hero .hero-stats .stat .stat-num { font-size: 22px; }
}

/* ── CLUB SECTION ── */
.club-section { background: #1e4d35; padding: 80px 24px; }
.club-section .club-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.club-section .club-text .section-label { color: #e8c97a; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.club-section .club-text h2 { font-size: 40px; font-weight: 800; color: #ffffff; margin-bottom: 16px; }
.club-section .club-text p { color: rgba(255,255,255,0.80); margin-bottom: 32px; font-size: 16px; }
.club-section .club-text ul { margin-bottom: 36px; }
.club-section .club-text ul li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.85); margin-bottom: 14px; font-size: 15px; }
.club-section .club-text ul li .check { color: #c9a84c; font-weight: 700; flex-shrink: 0; }

/* club widget */
.club-section .club-widget { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 32px; }
.club-section .club-widget h4 { color: #ffffff; font-size: 16px; margin-bottom: 20px; }
.club-section .club-widget .plz-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 24px; }
.club-section .club-widget .plz-grid .plz-btn { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; padding: 12px 8px; text-align: center; cursor: pointer; color: #ffffff; font-size: 14px; font-weight: 600; transition: all 0.15s; display: block; }
.club-section .club-widget .plz-grid .plz-btn span { display: block; font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 400; margin-top: 3px; }
.club-section .club-widget .plz-grid .plz-btn:hover { background: #c9a84c; color: #1e4d35; border-color: #c9a84c; }
.club-section .club-widget .plz-grid .plz-btn:hover span { color: #1e4d35; }

@media (max-width: 900px) {
  .club-section .club-inner { grid-template-columns: 1fr; gap: 40px; }
  .club-section .club-text h2 { font-size: 26px; }
}

/* ── CONTENT TEASER ── */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.content-grid .content-featured { background: #ffffff; border-radius: 12px; overflow: hidden; border: 1px solid #e8e4db; display: block; color: #2e2820; transition: box-shadow 0.2s; }
.content-grid .content-featured:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
.content-grid .content-featured .feat-img { height: 220px; background: linear-gradient(135deg, #1e4d35 0%, #3a8a60 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.content-grid .content-featured .feat-img .feat-icon { color: rgba(255,255,255,0.9); }
.content-grid .content-featured .feat-img::after { content: '♠ ♥'; position: absolute; right: 20px; bottom: 10px; font-size: 60px; opacity: 0.1; color: #ffffff; }
.content-grid .content-featured .feat-body { padding: 24px; }
.content-grid .content-featured .feat-body .feat-tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #3a8a60; margin-bottom: 10px; }
.content-grid .content-featured .feat-body h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: #2e2820; }
.content-grid .content-featured .feat-body p { color: #5c5445; font-size: 14px; }

/* content list */
.content-grid .content-list { display: flex; flex-direction: column; gap: 16px; }
.content-grid .content-list .content-item { background: #ffffff; border-radius: 6px; padding: 16px; border: 1px solid #e8e4db; display: flex; align-items: flex-start; gap: 14px; color: #2e2820; transition: box-shadow 0.2s; }
.content-grid .content-list .content-item:hover { box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.content-grid .content-list .content-item .item-icon { flex-shrink: 0; margin-top: 2px; color: #1e4d35; }
.content-grid .content-list .content-item .item-tag { font-size: 11px; font-weight: 700; color: #3a8a60; letter-spacing: 0.5px; text-transform: uppercase; }
.content-grid .content-list .content-item h4 { font-size: 14px; font-weight: 600; margin: 4px 0; color: #2e2820; }
.content-grid .content-list .content-item p { font-size: 12px; color: #5c5445; }

@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
}

/* ── STRIP ── */
.strip { background: #f4f2ed; border-top: 1px solid #e8e4db; border-bottom: 1px solid #e8e4db; padding: 48px 24px; }
.strip .strip-inner { max-width: 1200px; margin: 0 auto; }
.strip .strip-inner h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; color: #2e2820; }
.strip .portals-row { display: flex; gap: 16px; flex-wrap: wrap; }
.strip .portals-row .portal-card { background: #ffffff; border: 1px solid #e8e4db; border-radius: 12px; padding: 16px 20px; display: flex; align-items: center; gap: 12px; color: #2e2820; transition: all 0.15s; flex: 1; min-width: 180px; }
.strip .portals-row .portal-card:hover { border-color: #1e4d35; box-shadow: 0 0 0 2px rgba(30,77,53,0.1); }
.strip .portals-row .portal-card .portal-icon { color: #1e4d35; flex-shrink: 0; }
.strip .portals-row .portal-card .portal-name { font-size: 14px; font-weight: 600; }
.strip .portals-row .portal-card .portal-note { font-size: 12px; color: #a09880; }
.strip .portals-row .portal-card.dashed { background: #f4f2ed; border-style: dashed; }
