:root{
  --bg: #000000;
  --accent:#ffd700; /* yellow/gold */
  --muted:#bfbfbf;
  --card:#111111;
  --radius:14px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Poppins", Arial, sans-serif;
  background:var(--bg);
  color:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* container */
.container{
  width:94%;
  max-width:1100px;
  margin:0 auto;
}

/* HEADER */
.site-header {
  background: linear-gradient(90deg, var(--accent), #f2b900);
  color: #000;
  padding: 18px 0;
  border-bottom: 4px solid #000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo-badge img {
  width: 150%;
  height: 150%;
  object-fit: contain;
  image-rendering: crisp-edges;
}

.brand-text h1 {
  margin: 0;
  font-size: 20px;
}
.brand-text .tag {
  margin: 0;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}

/* NAV */
.nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-link {
  position: relative;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
  box-shadow: 0 0 6px rgba(255,255,255,0.8);
}

.nav-link:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: #000; 
  font-weight: bold;
  margin-left: auto;
}

/* MOBILE RESPONSIVE NAV */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .nav {
    display: none !important;
    flex-direction: column;
    background: #000;
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid #444;
  }

  .nav.show {
    display: flex !important;
  }

  .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    color: #fff !important;
  }

  .header-inner {
    align-items: center;
  }
}


/* HERO */
.hero{padding:40px 0}
.hero-inner{display:flex;gap:30px;align-items:center;flex-wrap:wrap}
.hero-left{flex:1;min-width:260px}
.hero-left h2{font-size:2rem;color:var(--accent);margin-bottom:12px}
.hero-left h2 span{color:#fff}
.hero-left p{color:var(--muted);margin-bottom:18px;max-width:650px}
.hero-actions{display:flex;gap:12px;margin-bottom:16px}
.btn{display:inline-block;padding:10px 18px;border-radius:10px;text-decoration:none;font-weight:600;cursor:pointer}
.btn.primary{background:var(--accent);color:#000}
.btn.ghost{background:transparent;border:2px solid var(--accent);color:var(--accent)}
.benefits{list-style:none;margin-top:10px;color:var(--muted);font-size:14px}

/* mockup */
.hero-right{flex:0 0 340px;display:flex;justify-content:center}
.mockup{width:280px;height:380px;border-radius:12px;background:linear-gradient(0deg,#0f0f0f,#191919);display:flex;align-items:center;justify-content:center;border:2px solid rgba(255,215,0,0.06)}
.mockup img{width:92%;height:auto;display:block;border-radius:10px}

/* COURSES GRID */
.section{padding:36px 0}
.section-title{color:var(--accent);font-size:20px;margin-bottom:6px}
.section-sub{color:var(--muted);margin-bottom:22px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px}

.card{background:var(--card);border-radius:var(--radius);overflow:hidden;border:2px solid rgba(255,215,0,0.06);transition:transform .25s,box-shadow .25s}
.card-image{width:100%;height:190px;object-fit:cover;display:block}
.card-body{padding:14px}
.card-body h4{color:var(--accent);margin:0 0 8px}
.card-body p{color:var(--muted);font-size:14px;margin-bottom:12px}
.price-row{display:flex;align-items:center;justify-content:space-between;gap:12px}
.price{font-weight:700;color:#fff;background:rgba(255,215,0,0.08);padding:6px 10px;border-radius:10px}
.btn.small{padding:8px 12px;border-radius:10px}


/* SKILL HUB SECTION */
.skillhub-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

.skillhub-title {
    text-align: center;
    color: #FFD700;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skillhub-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* NEW CARD SHAPE */
.skill-card {
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #FFD700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
    transition: 0.3s;
}

.skill-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 0 22px rgba(255, 215, 0, 0.45);
}

/* Image area */
.skill-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;    
    display: block;
}

/* Text area */
.skill-content {
    padding: 18px;
    color: white;
    text-align: left;
}

.skill-content h3 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 10px;
}

.skill-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* PRICE ROW */
.skill-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-price {
    color: #FFD700;
    font-size: 18px;
    font-weight: 700;
}

/* Buy Button */
.skill-btn {
    background: #FFD700;
    color: #000;
    padding: 6px 14px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}



html {
  scroll-behavior: smooth;
}


/* HOW GRID */
.how-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px;margin-top:18px}
.how-card{background:#0f0f0f;padding:16px;border-radius:12px;border:1px solid rgba(255,215,0,0.05)}
.how-card h4{color:var(--accent);margin:0 0 6px}
.how-card p{color:var(--muted);font-size:14px}


/* ABOUT SECTION */
.about-box {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.about-img img {
  width: 350px;
  max-width: 100%;
  border-radius: 15px;
  display: block;
}

.about-content {
  flex: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-box {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    width: 260px;
  }
}


.site-footer {
    background: #000;
    padding: 50px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-inner-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-col h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #ffd70077;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    color: #e6e6e6;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.footer-col a:hover {
    color: #fff;
    text-shadow: 0 0 8px #ffd700;
    transform: translateX(4px);
}

/* Instagram section */
.socials {
    margin-top: 15px;
}


/* small screens */
@media (max-width:800px){
  .header-inner{flex-direction:column;gap:10px;align-items:flex-start}
  .hero-inner{flex-direction:column-reverse}
  .hero-right{flex:1;display:flex;justify-content:center}
  .brand-text h1{font-size:18px}
  .brand-text .tag{font-size:12px}
}

/* tiny */
@media (max-width:420px){
  .mockup{width:230px;height:320px}
  .hero-left h2{font-size:1.4rem}
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}


/* FORCE MOBILE NAV */
@media (max-width: 768px) {

    /* force hide initially */
    .nav {
        display: none !important;
    }

    /* when hamburger clicked → show menu */
    .nav.show {
        display: flex !important;
        flex-direction: column !important;
        background: #000 !important;
        width: 100% !important;
        padding: 10px 20px !important;
    }
}
#about .section-title,
#how .section-title {
    font-size: 30px !important;
}

/* FIX HAMBURGER MISALIGNMENT ON MOBILE */
@media (max-width: 768px) {

    .header-inner {
        align-items: center !important;
    }

    .hamburger {
    margin-top: -30px !important; 
    position: relative !important;
}

    .brand {
        align-items: center !important; 
    }

    .logo-badge {
        width: 70px;
        height: 70px;
    }

    .brand-text h1 {
        font-size: 18px;
    }

    .brand-text .tag {
        font-size: 11px;
    }
}
