:root {
  --blue: #1f5ea8;
  --green: #9bd265;
  --dark: #1f2933;
  --muted: #637083;
  --cream: #fffdf4;
  --white: #ffffff;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { width: 180px; }

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

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

.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(31,94,168,0.18);
  transition:.25s;
}

.button:hover{
    transform:translateY(-2px);
}

.button.secondary { background: var(--blue); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  text-align: center;
  padding: 110px 0 240px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,232,92,0.24), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 75%);
}

.hero-logo,
.hero .container {
  position: relative;
  z-index: 5;
}

.hero-logo {
  width: min(560px, 86vw);
  margin: 0 auto 30px;
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 900;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.95;
  margin: 18px auto 22px;
  max-width: 920px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 1.2rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.kawartha-landscape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(150px, 20vw, 260px);
  z-index: 1;
  pointer-events: none;
}

.kawartha-landscape svg {
  width: 100%;
  height: 100%;
}

section {
  padding: 86px 0;
  position: relative;
  background: var(--cream);
}

section.white { background: var(--white); }

.section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  background: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(31,94,168,0.08);
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 92px;
  height: 92px;
  background: url("img/sun.png") center/cover no-repeat;
  opacity: 0.35;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.svg-divider {
  height: 150px;
  background: var(--white);
}

.svg-divider svg {
  width: 100%;
  height: 100%;
}

.feature-band {
  background: var(--blue);
  color: var(--white);
  padding: 80px 0;
}

.feature-band .lead {
  color: rgba(255,255,255,0.78);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  font-weight: 700;
}

.venues {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.venue {
  min-height: 300px;
  border-radius: 30px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(31,94,168,0.96), rgba(31,94,168,0.78)),
    var(--blue);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(31,94,168,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.venue:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(31,94,168,0.24);
}

.venue-logo {
  width: auto;
  max-width: 230px;
  max-height: 115px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 24px;
}

.venue p {
  color: rgba(255,255,255,0.84);
  margin: 0 0 22px;
}

.venue a {
  font-weight: 900;
  color: white;
  border-bottom: 2px solid rgba(255,255,255,0.45);
}

.venue a:hover { border-bottom-color: white; }

.case-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
  margin: 3rem 0 4rem;
}

.case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.case-gallery .gallery-large {
  grid-row: span 2;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 3rem;
  padding: 2.5rem;
  margin: 2rem 0 4rem;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  overflow: hidden;
}

.case-meta span {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #6b7280;
}

.case-meta strong {
  display: block;
  margin-top: .35rem;
  font-size: 1.1rem;
  overflow-wrap: break-word;
}

.testimonial-card {
  max-width: 700px;
  margin: 4rem 0;
  padding: 2.25rem 2.5rem;
  background: #f8fafc;
  border-left: 6px solid #f4b400;
  border-radius: 18px;
}

.testimonial-label {
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6b7280;
}

.testimonial-stars {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: .35rem;
  color: #f4b400;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.55;
  font-style: italic;
  color: #1f2937;
}

.testimonial-author {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,.08);
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
  color: #111827;
}

.testimonial-author span {
  display: block;
  margin-top: .25rem;
  font-size: .9rem;
  color: #6b7280;
}

.quote-name {
  margin-top: 24px;
  color: var(--muted);
  font-weight: 700;
}

.pricing-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border-radius: 36px;
  padding: 44px;
  box-shadow: 0 20px 50px rgba(31,94,168,0.08);
}

.price {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.areas {
  columns: 3;
  font-weight: 700;
  color: var(--blue);
}

.areas div {
  break-inside: avoid;
  margin-bottom: 10px;
}

footer {
  background: var(--blue);
  color: white;
}

.footer-landscape {
  height: 160px;
  background: var(--cream);
}

.footer-landscape svg {
  width: 100%;
  height: 100%;
}

.footer-content {
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  width: 260px;
  margin-bottom: 18px;
}

footer p {
  color: rgba(255,255,255,0.78);
}

@media (max-width: 800px) {
  nav {
    height: auto;
    padding: 18px 0;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero {
    min-height: 720px;
    padding-top: 70px;
  }

  .grid,
  .venues,
  .pricing-box,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .areas {
    columns: 1;
  }

  .case-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .case-gallery img,
  .case-gallery .gallery-large {
    height: auto;
    grid-row: auto;
  }

  .case-meta {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
    margin: 2rem 0 3rem;
  }

  .case-meta strong {
    font-size: 1.15rem;
  }

  .testimonial-card {
    padding: 1.75rem;
  }

  .testimonial-card blockquote {
    font-size: 1.15rem;
  }
}

/* ==========================================================
   DJ Network Footer
   ========================================================== */

.site-footer{
    background:var(--blue);
    color:#fff;
    padding:70px 0 36px;
    overflow:hidden;
}

.footer-network{
    max-width:1000px;
    margin:0 auto;
}

.footer-network h3{
    margin:0 0 20px;
    font-size:clamp(2rem,4vw,2.8rem);
    line-height:1.1;
}

.footer-network p{
    margin:0 0 40px;
    max-width:900px;
    font-size:1.1rem;
    line-height:1.75;
    color:rgba(255,255,255,.82);
}

.footer-network p strong{
    color:#fff;
}

/* ---------- cards ---------- */

.footer-sites{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.footer-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 170px;
  padding: 28px;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .25s, background .25s, border-color .25s, box-shadow .25s;
}

.footer-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.footer-card img {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 150px;
  opacity: .14;
  filter: grayscale(100%) brightness(240%);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, filter .25s ease;
}

.footer-card:hover img {
  opacity: .22;
  transform: scale(1.04);
}

.footer-card.active {
  background: rgba(155,210,101,.16);
  border-color: rgba(155,210,101,.45);
  box-shadow:
    0 0 0 1px rgba(155,210,101,.15),
    0 16px 40px rgba(0,0,0,.16);
}

.footer-card.active strong {
  color: #9bd265;
}

.footer-card.active img {
  opacity: .24;
  filter: none;
}

.footer-card strong,
.footer-card span {
  position: relative;
  z-index: 2;
}

.footer-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.footer-card span {
  display: block;
  max-width: 70%;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}

/* ---------- copyright ---------- */

.footer-bottom{

    margin-top:50px;

    padding-top:28px;

    border-top:1px solid rgba(255,255,255,.12);

}

.footer-bottom p{

    margin:0;

    text-align:center;

    color:rgba(255,255,255,.58);

    font-size:.9rem;

}

/* ---------- responsive ---------- */

@media (max-width:900px){

    .footer-sites{

        grid-template-columns:1fr;

    }

    .footer-card{

        min-height:150px;

    }

}

/* ==========================================================
   DJ in Network Page
   ========================================================== */

.page-hero {
  min-height: 620px;
  padding: 95px 0 210px;
}

.page-hero .hero-logo {
  width: min(420px, 78vw);
  margin-bottom: 34px;
}

.network-section {
  padding: 86px 0;
}

.network-section .section-title {
  margin-bottom: 34px;
}

.network-copy {
  max-width: 820px;
}

.network-copy p {
  margin: 0 0 1.35rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.network-copy p:last-child {
  margin-bottom: 0;
}

.network-dark {
  background: var(--blue);
  color: var(--white);
}

.network-dark .eyebrow {
  color: var(--green);
}

.network-dark .lead,
.network-dark p {
  color: rgba(255,255,255,.80);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.network-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(31,94,168,.10);
}

.network-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 100px;
  height: 100px;
  background: url("../img/sun.png") center/cover no-repeat;
  opacity: .28;
}

.network-card h3,
.network-card p {
  position: relative;
  z-index: 1;
}

.network-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.network-dark .network-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: none;
}

.network-dark .network-card p {
  color: rgba(255,255,255,.78);
}

.network-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 900px;
}

.network-value {
  padding: 11px 17px;
  border-radius: 999px;
  background: rgba(31,94,168,.10);
  color: var(--blue);
  font-weight: 800;
}

.network-quote {
  margin: 2.25rem 0;
  padding: 1.7rem 2rem;
  border-left: 6px solid var(--green);
  border-radius: 0 20px 20px 0;
  background: rgba(31,94,168,.07);
  color: var(--dark);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
  font-weight: 800;
}

.network-about {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.network-about picture {
    display: flex;
    justify-content: center;
}

.network-about img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(31,94,168,.16);
}

.network-contact {
  text-align: center;
}

.network-contact .section-title {
  max-width: 780px;
  margin: 0 auto 28px;
}

.footer-sites {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1000px) {
  .footer-sites {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .page-hero {
    min-height: 650px;
    padding-top: 64px;
  }

  .network-grid,
  .network-about {
    grid-template-columns: 1fr;
  }

  .network-about {
    gap: 30px;
  }

  .network-card {
    min-height: auto;
  }

  .network-quote {
    padding: 1.4rem 1.5rem;
  }
}

@media (max-width: 560px) {
  .footer-sites {
    grid-template-columns: 1fr;
  }
}

