/* ============================================
   VALHALLA COACHING — valhallacoaching.ca
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #0a0a0a;
  --bg-section: #111111;
  --bg-card: #1a1a1a;
  --ice-blue: #7ec8e3;
  --ice-glow: #a8dff0;
  --white: #f5f5f5;
  --gray: #999;
  --text: #e0e0e0;
  --accent: #7ec8e3;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ice-blue); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--ice-glow); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--ice-blue); }

p { margin-bottom: 16px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--ice-blue);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn:hover {
  background: var(--ice-blue);
  color: var(--bg-dark);
}

.btn-filled {
  background: var(--ice-blue);
  color: var(--bg-dark);
  border-color: var(--ice-blue);
}

.btn-filled:hover {
  background: var(--ice-glow);
  border-color: var(--ice-glow);
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(126, 200, 227, 0.1);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
}

.nav-logo span { color: var(--ice-blue); }

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  text-decoration: none;
}

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

.nav-cta {
  padding: 8px 20px !important;
  font-size: 0.8rem !important;
  color: var(--bg-dark) !important;
  background: var(--ice-blue) !important;
  border: 1px solid var(--ice-blue) !important;
  border-radius: 0;
}

.nav-cta:hover {
  background: var(--ice-glow) !important;
}

/* Mobile menu */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(126, 200, 227, 0.1);
  }
  .nav-links.open { display: flex; }
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%),
              url('images/hero-placeholder.jpg') center/cover no-repeat;
  position: relative;
}

.hero-content { max-width: 800px; }

.hero h1 { margin-bottom: 24px; }

.hero p {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero .btn { margin: 0 8px 12px; }

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-section);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Pillars / Cards --- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pillar {
  background: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid rgba(126, 200, 227, 0.1);
  transition: border-color 0.3s, transform 0.3s;
}

.pillar:hover {
  border-color: var(--ice-blue);
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pillar h3 { text-transform: uppercase; }

.pillar p { color: var(--gray); font-size: 0.95rem; }

/* --- About Preview (side by side) --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid rgba(126, 200, 227, 0.1);
}

@media (max-width: 768px) {
  .about-preview { grid-template-columns: 1fr; gap: 30px; }
}

/* --- Testimonial --- */
.testimonial {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-section);
}

.testimonial blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.testimonial cite {
  color: var(--ice-blue);
  font-size: 0.9rem;
  font-style: normal;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.9) 100%),
              url('images/cta-placeholder.jpg') center/cover no-repeat;
}

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--gray); max-width: 600px; margin: 0 auto 30px; }

/* --- About Page --- */
.about-story {
  max-width: 800px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-story em {
  color: var(--ice-blue);
  font-style: italic;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(126, 200, 227, 0.1);
}

.credential-check {
  color: var(--ice-blue);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- Workshop Details --- */
.workshop-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.workshop-step {
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid rgba(126, 200, 227, 0.1);
  border-top: 3px solid var(--ice-blue);
}

.workshop-step .step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--ice-blue);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.detail-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(126, 200, 227, 0.1);
  text-align: center;
}

.detail-card .detail-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(126, 200, 227, 0.1);
  padding: 24px 0;
}

.faq-item h3 {
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: none;
  font-size: 1.1rem;
  letter-spacing: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h3::after { content: '+'; color: var(--ice-blue); font-size: 1.5rem; }
.faq-item.open h3::after { content: '−'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--gray);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

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

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(126, 200, 227, 0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ice-blue);
}

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

.contact-info h3 { margin-bottom: 20px; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gray);
}

.contact-info-item span:first-child { font-size: 1.2rem; }

/* --- Social Links --- */
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.social-links a:hover { color: var(--ice-blue); }

/* --- Footer --- */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(126, 200, 227, 0.1);
  text-align: center;
}

.footer p { color: var(--gray); font-size: 0.85rem; margin-bottom: 8px; }
.footer-social { margin: 16px 0; }
.footer-social a { color: var(--gray); margin: 0 12px; font-size: 0.85rem; }
.footer-social a:hover { color: var(--ice-blue); }
.footer-copy { margin-top: 24px; font-size: 0.75rem; color: #555; }

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, var(--bg-dark) 100%),
              url('images/hero-placeholder.jpg') center/cover no-repeat;
}

.page-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-ice { color: var(--ice-blue); }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none; }

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
