
:root {
  --pink:   #e8386d;
  --yellow: #f5d400;
  --orange: #f47b20;
  --purple: #9b5fc0;
  --darker: #0f0f1a;
}
@font-face {
  font-family: 'Sculpin';
  src: url('fonts/Sculpin-Regular.woff2') format('woff2'),
       url('fonts/Sculpin-Regular.woff')  format('woff'),
       url('fonts/Sculpin-Regular.ttf')   format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sculpin';
  src: url('fonts/Sculpin-Bold.woff2') format('woff2'),
       url('fonts/Sculpin-Bold.woff')  format('woff'),
       url('fonts/Sculpin-Bold.ttf')   format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
 
/* ── Apply Sculpin to all headings ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sculpin', sans-serif;
  font-weight: 600px;
}
 
/* ── Apply Inter to all p tags ── */
p {
  font-family: 'Inter', sans-serif;
}
* { box-sizing: border-box; }

body {
  background: var(--darker);
  color: #fff;
  overflow-x: hidden;
}

/* ══ HERO ══════════════════════════════════════ */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: url(img/1stbg.png) center/cover no-repeat;
  padding-top: 40px;
}

/* colour blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: .55;
}
.blob-1 { width: 420px; height: 420px; background: var(--pink);   top: -80px;  left: -80px; }
.blob-2 { width: 320px; height: 320px; background: var(--orange); bottom: 60px; right: -60px; }
.blob-3 { width: 280px; height: 280px; background: var(--purple); top: 30%; left: 40%; }

/* sun image */
.hero-sun {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 90px;
  z-index: 2;
}

/* main hero logo / banner image */
.hero-logo-img {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,.55));
}

/* ══ REGISTER BUTTON (hero top) ════════════════ */
.reg-bt {
  position: relative;
  z-index: 2;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
 
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .5px;
  padding: 20px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin-top: 28px;
  text-decoration: none;
  transition: background .2s;
}
.btn-register:hover {
  background: #222;
  color: #fff;
}
.btn-register:active {
  transform: translate(2px, 2px);
}

/* ══ MARQUEE ═══════════════════════════════════ */
.marquee-strip {
  background: var(--yellow);
  color: #111;
 
  font-size: 1.15rem;
  letter-spacing: 1px;
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: 65px;
  margin-bottom: 55px;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee-run 28s linear infinite;
}
.marquee-inner span { padding: 0 32px; }
.marquee-inner span::before {
  content: '★';
  margin-right: 10px;
  color: var(--pink);
}
@keyframes marquee-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══ QUOTE + STEPS BLOCK ═══════════════════════ */
.intro-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.intro-img-wrap img {
  width: 370px;
  height: 370px;
  
  display: block;
}

.intro-title {
      font-weight: 600;
  font-size: 32px;
  color: #06569D;
  line-height: 1.08;
  margin-bottom: 16px;
  text-shadow:
    -2px -2px 0 #93EBFF,
     2px -2px 0 #93EBFF,
    -2px  2px 0 #93EBFF,
     2px  2px 0 #93EBFF;
}

.quote-cite {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ══ INTRODUCTION TEXT BLOCK ═══════════════════ */
.intro-tittle-sec {
  font-size: 48px;
  font-weight: 600;
  line-height: 72px;
  color: #fff;
}

.intro-body {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
}
.intro-body strong { color: #fff; font-weight: 700; }
.intro-body p { margin-bottom: 1rem; }
.intro-body p:last-child { margin-bottom: 0; }

/* Register button inside introduction (white variant) */
.parent {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.parent .register {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .5px;
  padding: 20px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.parent .register:hover {
  background: #e0e0e0;
  color: #000;
}

/* ══ ORANGE BAND ═══════════════════════════════ */
.workshops-band {
  background: #CE4500;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.workshops-band::before,
.workshops-band::after {
  position: absolute;
  font-size: 40px;
  color: rgba(255,255,255,.3);
  top: 50%;
  transform: translateY(-50%);
   content: '';           /* required — empty string */
  display: block;
  width: 90px;           /* set your size */
  height: 90px;
  background-image: url('img/sun.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.workshops-band::before { left: 90px; }
.workshops-band::after  { right: 90px; }

.workshops-text {
    
    font-size: 32px;
    color: var(--yellow);
    letter-spacing: -1px;
    text-align: center;
    margin: 0;
    font-weight: 600;
}

.intro {
  background: url(img/bg.png) center/cover no-repeat;
  padding: 150px 200px 150px;
}

/* ══ ON-CAMPUS SECTION ═════════════════════════ */
.on-campus-section {
  background: url(img/Group1.png) center/cover no-repeat;
  padding: 20px 0 60px;
}

.section-heading {
  
  font-size: 40px;
  color: #A2EFFF;
  letter-spacing: 1px;
  padding-left: 14px;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

/* ── Workshop Card ─────────────────────────── */
.workshop-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}
.workshop-card .card-img-wrap {
  height: 400px;
  overflow: hidden;
  border: 5px solid #fff;
}
.workshop-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.workshop-card:hover .card-img-wrap img {
  transform: scale(1.04);
}
.workshop-card .card-body {
  padding: 16px 18px 20px;
}
.workshop-card .card-title {
 

  font-size: 24px;
  font-weight: 800;
  color: #FFD900;
  margin-bottom: 6px;
}
.workshop-card .card-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

/* wide variant (2-column row) */
.workshop-card-wide .card-img-wrap { height: 400px; }

/* ── Online Feature Card ───────────────────── */
.online-feature-card {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.online-feature-card .card-img-wrap {
  border: 5px solid #fff;
  overflow: hidden;
}
.online-feature-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.online-feature-card .card-title {
 
  font-size: 24px;
  font-weight: 800;
  color: #C8FF00;
  margin-bottom: 8px;
  line-height: 1.3;
  margin-top: 16px;
}
.online-feature-card .card-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.55;
  margin: 0;
}

 
    /* =============================================
       INK IMPRESSION – INTERNAL CSS
       Copy everything between these comment blocks
       into your CSS file.
    ============================================= */

    :root {
      --olive:      #6b7a3a;
      --olive-light:#8a9a4a;
      --rust:       #9c3d2e;
      --rust-deep:  #7a2e22;
      --lime:       #c8d830;
      --cyan:       #3ecfcf;
      --ink:        #1a1a1a;
      --cream:      #f5f0e8;
      --white:      #ffffff;
      --text-body:  #2c2c2c;
    }

   

    /* ── OUTER WRAPPER ─────────────────────────── */
  .page-bg {
    background: url(img/WATERMELON.png);
    padding: 49px 0 72px;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 0;
}

    /* ── HERO SECTION ──────────────────────────── */
    .hero-section {
      position: relative;
      z-index: 2;
    }
     .heroo-section {
      position: relative;
      z-index: 1;
    }


    /* FIX 1: strict 50/50 columns */
    .col-hero-img,
    .col-hero-text {
      flex: 0 0 50%;
      max-width: 50%;
    }
    @media (max-width: 767px) {
      .col-hero-img,
      .col-hero-text {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    .workshop-img-wrap {
      border: 5px solid #fff;
      overflow: hidden;
    }
    .workshop-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .workshop-title {
    
      font-size: 40px;
      font-weight: 900;
      color: #C8FF00;
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .workshop-subtitle {
      font-size: 24px;
      color: #fff;
      font-weight: 500;
      margin-bottom: 16px;
    }
    .workshop-price {
      
      font-size: 24px;
      font-weight: 700;
      color: #C8FF00;
      margin-bottom: 18px;
    }
    .workshop-meta {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
    }
    .workshop-meta li {
      color: #fff;
      font-size:20px;
      padding: 2px 0;
    }

    .btn-register {
      background: var(--ink);
      color: var(--white);
      border: none;
      border-radius: 10px;
      padding: 14px 32px;
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      width: 100%;
      
    }
      .registers {
      background: var(--ink);
      color: var(--white);
      border: none;
      border-radius: 10px;
      padding: 20px 40px;
      font-size: 24px;
      font-weight: 600;
      letter-spacing: 0.04em;
      width: 100%;
      text-decoration: none;
      
    }
   

    .workshop-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.88);
      line-height: 1.7;
      margin-top: 20px;
    }
    .workshop-desc p { margin-bottom: 0.75rem; }
    .workshop-desc p:last-child { margin-bottom: 0; }

    /* ── INSTRUCTOR SECTION ────────────────────── */
    .instructor-section {
      position: relative;
      z-index: 2;
      margin-top: 48px;
    }

    .instructor-avatar {
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: #fff;
      object-fit: cover;
      flex-shrink: 0;
    }

    .instructor-heading {
      
      font-size: 32px;
      font-weight: 700;
      color: #58FCFF;
      margin-bottom: 16px;
    }

    .instructor-name {
      font-weight: 700;
      color: var(--white);
    }

    .instructor-body {
      font-size: 20px;
      color:#fff;
      line-height: 1.75;
    }
    .instructor-body p { margin-bottom: 0.6rem; }
    .instructor-body p:last-child { margin-bottom: 0; }

    /* ── MORE WORKSHOPS SECTION ────────────────── */
    .more-section {
      position: relative;
      z-index: 2;
      margin-top: 56px;
    }

    .more-heading {
     
      font-size: 32px;
      font-weight: 700;
      color: #58FCFF;
      margin-bottom: 28px;
    }

    /* FIX 2: slider track */
    .slider-track-wrap {
      overflow: hidden;
    }
    .slider-track {
      display: flex;
      gap: 24px;
      transition: transform 0.5s ease;
    }
    .slider-track .workshop-card {
      flex: 0 0 calc(33.333% - 16px);
    }

    .workshop-card {
      border-radius: 4px;
      overflow: hidden;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .workshop-card:hover { transform: translateY(-4px); }

    .workshop-card-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 4px;
      display: block;
      background: #555;
    }

    .workshop-card-title {
      
      font-size: 24px;
      font-weight: 700;
      color: #C8FF00;
      margin-top: 12px;
      margin-bottom: 4px;
    }

    .workshop-card-sub {
      font-size: 16px;
      color: #fff;
    }

    /* carousel arrows */
    .carousel-arrow {
      position: absolute;
      top: 35%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.15);
      border: 2px solid rgba(255,255,255,0.4);
      border-radius: 50%;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--white);
      font-size: 1.1rem;
      z-index: 5;
      transition: background 0.2s;
      user-select: none;
    }
    .carousel-arrow:hover { background: rgba(255,255,255,0.3); }
    .arrow-left  { left: -20px; }
    .arrow-right { right: -20px; }

    /* ── RESPONSIVE TWEAKS ─────────────────────── */
    @media (max-width: 767px) {
      .page-bg { padding: 32px 0 48px; }
      .workshop-img-wrap { margin-bottom: 28px; }
      .instructor-avatar { width: 80px; height: 80px; }
      .arrow-left  { left: -8px; }
      .arrow-right { right: -8px; }
      .slider-track .workshop-card { flex: 0 0 100%; }
    }

    /* ============================================= */



/* ══ RESPONSIVE ════════════════════════════════ */
@media (max-width: 991px) {
  .hero-logo-img { width: 95%; }
  .intro-title { font-size: clamp(24px, 5vw, 40px); }
}

@media (max-width: 767px) {
  .hero-sun { width: 60px; right: 16px; top: 16px; }
  .hero-section { padding-top: 24px; }
  .workshop-card .card-img-wrap,
  .workshop-card-wide .card-img-wrap { height: 200px; }
  .online-feature-card .card-img-wrap { height: 260px; }
  .workshops-band::before,
  .workshops-band::after { display: none; }
  .btn-register { padding: 12px 24px; font-size: 1rem; }
  .intro-tittle-sec { font-size: 32px; line-height: 1.3; }
  .parent .register { font-size: 18px; padding: 16px 28px; }

  .intro {
    background: url(img/bg.png) center / cover no-repeat;
    padding: 25px 0px 25px;
}
}

@media (max-width: 575px) {
  .hero-logo-img { width: 100%; }
  .marquee-inner span { padding: 0 20px; }
  .section-heading { font-size: 1.8rem; }
  .intro-title { font-size: 28px; }
}