@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root{--bg:#090b10;--surface:#11151d;--surface2:#171c26;--text:#f5f7fb;--muted:#9ba4b5;--border:rgba(255,255,255,.09);--accent:#8b7cff;--accent2:#5ee7df;--max:1120px}
*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:radial-gradient(circle at 10% 0%,rgba(139,124,255,.14),transparent 30%),radial-gradient(circle at 90% 20%,rgba(94,231,223,.07),transparent 25%),var(--bg);color:var(--text);font-family:Inter,system-ui,sans-serif;line-height:1.65}a{color:inherit;text-decoration:none}.nav{max-width:var(--max);height:72px;margin:auto;display:flex;align-items:center;justify-content:space-between;padding:0 20px}.brand{font-size:1.25rem;font-weight:800}.brand span{color:var(--accent)}header{position:sticky;top:0;z-index:10;background:rgba(9,11,16,.78);backdrop-filter:blur(18px);border-bottom:1px solid var(--border)}.tabs{display:flex;gap:5px}.tabs a{padding:9px 13px;border-radius:10px;color:var(--muted);font-size:.9rem}.tabs a:hover,.tabs a.active{color:var(--text);background:var(--surface2)}.menu{display:none;background:none;border:0;color:white;font-size:1.5rem}.hero,.page-hero,.section{max-width:var(--max);margin:auto;padding-left:20px;padding-right:20px}.hero{min-height:calc(100vh - 72px);display:grid;grid-template-columns:1.35fr .65fr;gap:50px;align-items:center}.eyebrow{font-size:.75rem;letter-spacing:2px;font-weight:800;color:var(--accent);margin:0 0 12px}.hero h1,.page-hero h1{font-size:clamp(3.3rem,8vw,6.8rem);line-height:.96;letter-spacing:-5px;margin:0}.hero h1 span{background:linear-gradient(110deg,var(--accent),#c17cff,var(--accent2));-webkit-background-clip:text;color:transparent}.lead{font-size:1.12rem;color:var(--muted);max-width:700px}.buttons{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}.button{display:inline-block;padding:12px 18px;border:1px solid var(--border);border-radius:12px;background:var(--surface);font-weight:700}.button.primary{background:var(--text);color:#090b10}.hero-card{padding:40px;border:1px solid var(--border);border-radius:28px;background:linear-gradient(145deg,var(--surface2),var(--surface));box-shadow:0 30px 80px rgba(0,0,0,.25)}.hero-icon{font-size:4rem;color:var(--accent);margin-bottom:15px}.hero-card h2{margin:0 0 5px}.hero-card p,.muted{color:var(--muted)}.section{padding-top:100px;padding-bottom:40px}.section-head{margin-bottom:30px}.section h2{font-size:clamp(2rem,5vw,3.5rem);letter-spacing:-2px;margin:0}.grid{display:grid;gap:18px}.grid.four{grid-template-columns:repeat(4,1fr)}.grid.three{grid-template-columns:repeat(3,1fr)}.grid.two{grid-template-columns:repeat(2,1fr)}.card{border:1px solid var(--border);background:rgba(255,255,255,.045);border-radius:20px;padding:25px;transition:.25s}.card:hover{transform:translateY(-4px);background:rgba(255,255,255,.07);border-color:rgba(139,124,255,.35)}.feature{display:block}.icon{font-size:2rem;margin-bottom:18px}.feature h3,.card h3{margin:0 0 7px}.feature p,.card p{color:var(--muted)}.split{display:grid;grid-template-columns:1fr 1fr;gap:60px;padding-top:100px;padding-bottom:100px}.split p{color:var(--muted)}.page-hero{padding-top:100px;padding-bottom:40px}.page-hero h1{font-size:clamp(3rem,7vw,6rem)}.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.art-placeholder{aspect-ratio:1;border-radius:20px;border:1px dashed rgba(255,255,255,.18);background:var(--surface);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center}.art-placeholder span{font-size:4rem}.art-placeholder h3{margin:12px 0 0}.art-placeholder p{color:var(--muted);margin:4px 0}.book-cover{height:190px;border-radius:14px;background:linear-gradient(145deg,#202735,#11151d);display:flex;align-items:center;justify-content:center;font-size:5rem;margin-bottom:20px}.tag,.badge{display:inline-block;font-size:.7rem;letter-spacing:1.5px;font-weight:800;color:var(--accent)}.badge{padding:6px 9px;border:1px solid var(--border);border-radius:999px;letter-spacing:.5px}.course{display:flex;gap:20px;margin-bottom:16px}.course-mark{width:42px;height:42px;flex:none;border-radius:50%;display:grid;place-items:center;background:rgba(94,231,223,.1);color:var(--accent2);font-weight:800}.text-link{color:var(--accent2);font-weight:700}footer{max-width:var(--max);margin:60px auto 0;padding:30px 20px;display:flex;justify-content:space-between;color:var(--muted);border-top:1px solid var(--border);font-size:.85rem}@media(max-width:850px){.menu{display:block}.tabs{display:none;position:absolute;top:72px;left:14px;right:14px;flex-direction:column;padding:10px;background:rgba(17,21,29,.98);border:1px solid var(--border);border-radius:16px}.tabs.open{display:flex}.hero{grid-template-columns:1fr;padding-top:60px}.grid.four{grid-template-columns:repeat(2,1fr)}.grid.three,.gallery{grid-template-columns:repeat(2,1fr)}.split{grid-template-columns:1fr;gap:15px}}@media(max-width:560px){.hero h1,.page-hero h1{letter-spacing:-3px}.grid.four,.grid.three,.grid.two,.gallery{grid-template-columns:1fr}.hero{padding-top:45px}.section,.page-hero{padding-top:65px}footer{flex-direction:column;gap:5px}}
.art-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.art-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 22px;
  transition: 0.3s ease;
}

.art-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 124, 255, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.art-card img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
  background: #f5f5f5;
}

.art-info {
  padding: 18px 20px 20px;
}

.art-info h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  line-height: 1.4;
}

.art-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}


@media (max-width: 850px) {
  .art-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .art-card img {
    height: 350px;
  }
}


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

  .art-card img {
    height: auto;
    max-height: 600px;
  }
}
/* =========================
   ABOUT PAGE
========================= */

.about-page,
.gallery-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.site-header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
}

.site-header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-header nav a {
    text-decoration: none;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.site-header nav a:hover,
.site-header nav a.active {
    opacity: 1;
}


.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    opacity: 0.55;
    margin-bottom: 12px;
}


.about-hero {
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: center;
    gap: 70px;
    margin-bottom: 100px;
}

.about-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    margin: 0 0 30px;
}

.about-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 650px;
    opacity: 0.75;
}

.about-hero img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 24px;
}


.about-section {
    max-width: 750px;
    margin-bottom: 90px;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.75;
}


.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

.about-card {
    padding: 35px;
    border: 1px solid rgba(128, 128, 128, 0.25);
    border-radius: 20px;
    transition: transform 0.25s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card span {
    font-size: 2rem;
}

.about-card h3 {
    margin: 20px 0 10px;
}

.about-card p {
    line-height: 1.6;
    opacity: 0.65;
}


.now-section ul {
    padding-left: 20px;
}

.now-section li {
    margin: 12px 0;
    line-height: 1.6;
}


/* =========================
   GALLERY PAGE
========================= */

.gallery-header {
    margin-bottom: 60px;
}

.gallery-header h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    margin: 0 0 20px;
}

.gallery-header > p:last-child {
    font-size: 1.15rem;
    opacity: 0.65;
    max-width: 600px;
    line-height: 1.7;
}


.gallery-grid {
    columns: 3 280px;
    column-gap: 20px;
}

.gallery-item {
    position: relative;
    margin: 0 0 20px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 18px;
    background: #eee;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 45px 20px 20px;
    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.75)
    );
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover figcaption {
    opacity: 1;
}

.gallery-item figcaption span {
    font-size: 0.85rem;
    opacity: 0.8;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .site-header {
        flex-direction: column;
        gap: 20px;
    }

    .site-header nav {
        justify-content: center;
        gap: 12px;
        font-size: 0.9rem;
    }

    .about-page,
    .gallery-page {
        padding: 50px 18px;
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 70px;
    }

    .about-hero img {
        max-width: 300px;
    }

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

    .gallery-grid {
        columns: 2 150px;
        column-gap: 12px;
    }

    .gallery-item {
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .gallery-item figcaption {
        opacity: 1;
        padding: 30px 12px 12px;
    }
}
.youtube-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.youtube-link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.youtube-icon {
  width: 32px;
  height: 22px;
  border-radius: 6px;
  background: #ff0000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease;
}

.youtube-text {
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s ease;
}

.youtube-link:hover .youtube-text {
  max-width: 150px;
  opacity: 1;
  margin-left: 8px;
}
.youtube-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.youtube-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.youtube-icon {
  width: 32px;
  height: 22px;
  border-radius: 6px;
  background: #ff0000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}.book {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.book:hover {
  text-decoration: none;
}/* Clickable course cards */

.course {
  display: flex;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.course:hover {
  
    text-decoration: none;
}
.text-link {
  color: var(--accent2);
  font-weight: 700;
}
.book-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
}

.book-link {
  color: var(--accent2);
  font-weight: 700;
  text-decoration: none;
}

.book-link:hover {
  text-decoration: underline;
}
