/*
Theme Name: Kitesurf Camp Breeze
Theme URI: https://example.org/kitesurfcamp-breeze
Author: OpenAI
Author URI: https://openai.com
Description: Lightweight custom WordPress theme for kitesurf camp landing pages, trips, blog and contact pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: kitesurfcamp-breeze
*/

:root {
  --bg: #f6fbfd;
  --surface: #ffffff;
  --text: #123243;
  --muted: #5f7684;
  --primary: #1394c9;
  --primary-dark: #0d5b7a;
  --accent: #f4b942;
  --line: rgba(18, 50, 67, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 60px rgba(14, 52, 72, 0.10);
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(246,251,253,0.84);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:24px; min-height: 82px; }
.brand { display:flex; align-items:center; gap:14px; font-weight:800; letter-spacing: .02em; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; display:grid; place-items:center; font-weight: 800;
  box-shadow: var(--shadow);
}
.primary-nav ul, .footer-nav ul { list-style:none; margin:0; padding:0; display:flex; gap:24px; flex-wrap:wrap; }
.primary-nav a { color: var(--muted); font-weight:600; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--primary-dark); }
.header-actions { display:flex; align-items:center; gap:14px; }
.btn, button, input[type=submit] {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 22px; border-radius: 999px; border: 0; cursor:pointer;
  font-weight: 700; transition: .25s ease; font-size: 15px;
}
.btn-primary, button, input[type=submit] { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color:#fff; box-shadow: var(--shadow); }
.btn-primary:hover, button:hover, input[type=submit]:hover { transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.82); color: var(--primary-dark); border: 1px solid var(--line); }
.hero {
  position: relative; overflow:hidden;
  background:
    linear-gradient(rgba(9,32,44,.58), rgba(9,32,44,.38)),
    url('https://kitesurfcamp.net/wp-content/uploads/2024/08/Kite-surf-Camp-Egypt-Red-Sea.jpg') center/cover no-repeat;
  color:#fff;
}
.hero::after {
  content:''; position:absolute; inset:auto -12% -120px auto; width:420px; height:420px;
  border-radius:50%; background: rgba(255,255,255,0.12); filter: blur(8px);
}
.hero-inner { min-height: 78vh; padding: 110px 0 96px; display:grid; align-content:center; max-width: 720px; position:relative; z-index:1; }
.eyebrow { display:inline-flex; width:max-content; padding: 9px 14px; background: rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.18); border-radius:999px; font-weight:700; font-size:13px; letter-spacing:.04em; text-transform:uppercase; }
.hero h1, .page-hero h1 { font-size: clamp(40px, 7vw, 72px); line-height: 1.03; margin: 18px 0 18px; }
.hero p { font-size: clamp(18px, 2vw, 22px); color: rgba(255,255,255,.92); margin: 0 0 28px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
section { padding: 88px 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 48px); line-height:1.08; margin:0 0 12px; }
.section-head p { color: var(--muted); margin:0; }
.card-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card, .info-box, .date-card, .post-card, .schedule-day, .content-shell, .contact-card {
  background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.date-card { padding: 24px; }
.date-card strong { display:block; font-size:20px; margin-bottom:8px; }
.date-card span { color: var(--muted); display:block; }
.date-card .price { color: var(--primary-dark); font-weight: 800; margin-top: 14px; }
.lesson-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:22px; }
.info-box { padding: 28px; }
.info-box h3 { margin-top:0; font-size:28px; }
.tick-list { list-style:none; padding:0; margin:16px 0 0; display:grid; gap:10px; }
.tick-list li { padding-left:28px; position:relative; }
.tick-list li::before { content:'✓'; position:absolute; left:0; top:0; color:var(--primary); font-weight:800; }
.schedule-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.schedule-day { padding: 24px; }
.schedule-day .day { font-size: 13px; letter-spacing:.06em; text-transform: uppercase; color: var(--primary); font-weight:800; }
.schedule-day h3 { margin: 10px 0 8px; font-size: 22px; }
.schedule-day p { margin:0; color: var(--muted); }
.content-shell { padding: 34px; }
.two-col { display:grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items:start; }
.content-shell p:first-child { margin-top:0; }
.badge-list { display:flex; gap:10px; flex-wrap:wrap; margin-top:20px; }
.badge { padding: 10px 14px; border-radius:999px; background: rgba(19,148,201,.09); color: var(--primary-dark); font-weight:700; }
.page-hero { padding: 80px 0 40px; }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 18px; }
.entry-content, .archive-wrap, .contact-wrap, .blog-grid { padding-bottom: 48px; }
.entry-content .content-shell, .contact-wrap .content-shell { max-width: 920px; }
.site-footer { padding: 34px 0 52px; border-top: 1px solid var(--line); }
.footer-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap:24px; align-items:start; }
.site-footer p { color: var(--muted); margin:8px 0 0; }
.socials { display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.socials a { padding:10px 14px; border-radius:999px; background:#fff; border:1px solid var(--line); font-weight:700; }
.post-card { overflow:hidden; }
.post-card-content { padding:22px; }
.post-card h2, .post-card h3 { margin-top:0; }
.post-card p { color: var(--muted); }
.archive-title { margin:0 0 24px; font-size: clamp(32px, 5vw, 52px); }
.meta { color: var(--muted); font-size: 14px; }
.wp-block-image, .entry-content figure { margin: 28px 0; }
input, textarea {
  width:100%; padding: 14px 16px; border-radius: 14px; border:1px solid var(--line); font: inherit;
  background: #fff;
}
textarea { min-height: 160px; }
.contact-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap:22px; }
.contact-card { padding: 26px; }
.contact-card h3 { margin-top:0; }
.contact-card ul { list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.placeholder-form { display:grid; gap:14px; }
.mobile-menu-toggle { display:none; }
@media (max-width: 980px) {
  .primary-nav { display:none; }
  .mobile-menu-toggle { display:inline-flex; }
  .card-grid, .lesson-grid, .schedule-grid, .two-col, .footer-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-inner { min-height: 72vh; }
}
@media (max-width: 640px) {
  .header-inner { min-height:72px; }
  .hero-inner { padding: 88px 0 70px; }
  section { padding: 70px 0; }
  .date-card, .info-box, .schedule-day, .content-shell, .contact-card { padding: 20px; }
  .header-actions .btn-ghost { display:none; }
}



.home-editor-content {
  padding: 0 0 24px;
}

.home-page-shell {
  max-width: 100%;
}

.home-page-shell > :first-child {
  margin-top: 0;
}

.home-page-shell .hero {
  background:
    linear-gradient(rgba(9,32,44,.58), rgba(9,32,44,.38)),
    var(--home-hero-image, url('https://kitesurfcamp.net/wp-content/uploads/2024/08/Kite-surf-Camp-Egypt-Red-Sea.jpg')) center/cover no-repeat;
}

.home-page-shell .hero .container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.home-page-shell > *:not(.hero) {
  position: relative;
  z-index: 1;
}
