

:root {
  /* ---- Brand Palette (EDIT THESE) ---- */
  --brand-blue:   #0E5AA7;  /* Primary from logo */
  --brand-orange: #F15A24;  /* Secondary from logo */
  --brand-navy:   #0B1221;  /* Page background */
  --brand-surface:#1F2937;  /* Panels/cards/hero base */
  --text:         #E5E7EB;  /* Text on dark */
  --muted:        #9CA3AF;  /* Secondary text */

  /* Semantic accents (derived) */
  --accent:   var(--brand-blue);
  --accent-2: var(--brand-orange);
  
  --header-height: 64px; /* adjust to your actual fixed header height */
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, var(--brand-navy), #0a0f1e);
  color: var(--text);
}

/* The fade-in keyframes */
@keyframes bgFadeIn {
  from { opacity: 0; filter: blur(2px); }
  to   { opacity: 1; filter: blur(0);   }
}

/* Respect users who prefer reduced motion (accessibility) */
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
    opacity: 1;
    filter: none;
  }
}

a { color: var(--accent); text-decoration: none; }
a[aria-current="page"] { color: var(--accent-2); font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; background: rgba(17,24,39,0.85); backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header nav a { margin-right: 1rem; }
.site-header nav a:last-child { margin-right: 0; }
.brand { display:flex; align-items:center; gap:.75rem; }
.site-logo { height:48px; width:auto; display:block; }
@media (min-width: 900px) { .site-logo { height:60px; } }

.home .hero {	
/* Full-screen banner */
  min-height: calc(100vh - var(--header-height));
  padding-top: calc(var(--header-height) + 1.5rem); /* clear the fixed header + breathing space */
  padding-bottom: 2.5rem;

  display: grid;
  place-items: center;
  position: relative;
  text-align: center;
  padding: 2rem;

  background-image: url("assets/icons/SchoolShoes.png"); /* change to your actual path */
  background-size: cover;            /* fills the screen */
  background-position: center center;/* perfect centering */
  background-repeat: no-repeat;      /* no tiling */
  background-attachment: fixed;      /* smooth parallax-like effect */
  
  /* start transparent and animate in */
  opacity: 0;
  animation: bgFadeIn 900ms ease-out forwards;
}

/* Soft dark overlay to keep text readable on bright areas */
.home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  pointer-events: none;
}

/* Keep hero content above overlay */
.home .hero > * { position: relative; z-index: 1; }

/* Logo and text styling */
.home .hero-logo {
  width: clamp(160px, 18vw, 240px);
  height: auto;
  margin-bottom: 1rem;
}

/* (3) Make the heading white on the Home hero */
.home .hero-title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  margin: 0.25rem 0 0.25rem;
}

/* Tagline below the title */
.home .hero-tagline {
  color: #e8eefc;
  font-size: clamp(16px, 2.2vw, 22px);
  margin: 0.25rem 0 1.25rem;
}

/* Buttons on hero */
.home .hero-actions .btn {
  display: inline-block;
  padding: .75rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  margin: 0 .4rem;
  transition: transform .12s ease, filter .12s ease;
}
/* Primary */
.home .hero-actions .btn {
  background: #0a66c2;   /* adjust to brand */
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.22);
}
.home .hero-actions .btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
/* Secondary */
.home .hero-actions .btn.btn-secondary {
  background: #ef6c37;   /* adjust to brand */
  color: #fff;
}



.container { max-width: 1000px; margin: 0 auto; padding: 1.5rem; }

/* Hero base */
.hero { border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 2rem; margin: 1rem 0 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.hero-centered { text-align:center; display:flex; flex-direction:column; align-items:center; }
.hero-logo { max-width: 180px; width: 40vw; height:auto; margin-bottom: 1rem; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35)); }
.hero-actions { margin-top: 1rem; display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap; }
.btn { display: inline-block; background: var(--accent); color: #0a0f1e; padding: .6rem 1rem; border-radius: 8px; font-weight: 600; }
.btn:hover { filter: brightness(1.1); }
.btn-secondary { background: var(--accent-2); color:#0a0f1e; }
@media (min-width: 900px) { .hero-logo { max-width: 220px; } }


/* Themed hero: subtle gradient + diagonal pattern echoing logo colors */
.hero-themed {
  background:
    radial-gradient(1200px 400px at 20% 0%, color-mix(in srgb, var(--brand-blue) 20%, transparent), transparent),
    radial-gradient(1000px 500px at 80% 0%, color-mix(in srgb, var(--brand-orange) 15%, transparent), transparent),
    linear-gradient(135deg,
      color-mix(in srgb, var(--brand-blue) 22%, transparent) 0%,
      color-mix(in srgb, var(--brand-orange) 18%, transparent) 100%),
    var(--brand-surface);
  position: relative;
}

.hero-themed::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 6px,
    transparent 6px,
    transparent 14px
  );
  pointer-events: none; border-radius: inherit;
}


/*.btn {
  display: inline-block;
  background: var(--accent);
  color: #0a0f1e;
  padding: .6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}
.btn:hover { filter: brightness(1.08); }

.btn-secondary {
  background: var(--accent-2);
  color: #0a0f1e;
}

/* Keyboard focus ring—brand-colored and accessible */
/*:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 60%, white 40%);
  outline-offset: 2px;
}*/


/* Base button */
.btn {
  display: inline-block;
  border: 0;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .06s ease, filter .12s ease, box-shadow .12s ease;
  text-decoration: none;
  user-select: none;

  /* Primary (logo blue) */
  background: var(--accent);
  color: #0a0f1e; /* dark text for contrast on bright btns */
  box-shadow: 0 6px 14px rgba(14,90,167,0.25); /* tint of blue */
}

/* Secondary (logo orange) */
.btn.btn-secondary {
  background: var(--accent-2);
  color: #0a0f1e;
  box-shadow: 0 6px 14px rgba(241,90,36,0.22); /* tint of orange */
}

/* Optional: gradient version for a richer look (uncomment if you prefer)
.btn {
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--accent) 94%, white 6%) 0%,
    color-mix(in srgb, var(--accent) 88%, black 12%) 100%);
}
.btn.btn-secondary {
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--accent-2) 94%, white 6%) 0%,
    color-mix(in srgb, var(--accent-2) 88%, black 12%) 100%);
}
*/

/* Hover & active feedback */
.btn:hover,
.btn.btn-secondary:hover {
  filter: brightness(1.06);
}
.btn:active,
.btn.btn-secondary:active {
  transform: translateY(1px);
  filter: brightness(0.98);
}

/* Keyboard focus ring in brand color */
.btn:focus-visible,
a.btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 65%, white 35%);
  outline-offset: 2px;
}

/* Disabled state */
.btn[disabled],
.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
}

/* Link buttons (if you use <a class="btn">) */
a.btn, a.btn.btn-secondary { color: #0a0f1e; }



.card,
section.about,
.contact-details,
.contact-form {
  background: var(--brand-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.card figcaption { color: var(--muted); }


/* About page */
section.about { background: var(--surface); border:1px solid rgba(255,255,255,0.06); border-radius:12px; padding:1.25rem; }
section.about h3 { margin-top: 0.75rem; }
ul, ol { padding-left: 1.1rem; }

/* Gallery */
.gallery-actions { margin: .5rem 0 1rem; }
.gallery-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.card { background: #0b1221; border: 1px solid rgba(255,255,255,0.08); border-radius:12px; overflow:hidden; }
.card img { width:100%; height:auto; display:block; }
.card figcaption { padding:.6rem .8rem; color: var(--muted); }
.muted { color: var(--muted); }

/* Contact */
section.contact { display:grid; grid-template-columns: 1fr; gap: 1rem; }
.contact-details { background: var(--surface); border:1px solid rgba(255,255,255,0.06); border-radius:12px; padding:1rem; }
.contact-form { background: var(--surface); border:1px solid rgba(255,255,255,0.06); border-radius:12px; padding:1rem; }
.form-status { margin-top:.5rem; color: var(--muted); }
@media (min-width: 900px) { section.contact { grid-template-columns: 1fr 1fr; } }
.row { display: grid; gap: .35rem; margin-bottom: .75rem; }
input, textarea { width: 100%; padding: .6rem .7rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); background: #0b1221; color: var(--text); }

/* Footer */
.site-footer { text-align: center; padding: 2rem 1rem; color: var(--muted); }


/* WhatsApp Floating Button */
.wa-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
  text-decoration: none;
  transition: transform .1s ease, filter .15s ease;
}
.wa-floating:hover { filter: brightness(1.06); transform: translateY(-1px); }
/*.wa-floating svg { width: 28px; height: 28px; }*/

.wa-floating { /* same as above */ }
.wa-floating i.fa-whatsapp { font-size: 24px; }

.social-media {
	position: fixed;
	right: 0;
	top: 40%;
	font-size: 36px;
	
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.social-media {
	display: inline-block
	margin 10px 5px
	background: #222;
    box-shadow: 0 6px 12px rgba(0,0,0,.15);
}

.social-media-icons-color a {
	colour: white;
	font-size: 28px;
}

