/* =========================
   0) GLOBAL BASE
   (Simple, beginner-friendly)
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    /* black theme */
    color: #fff;
    font-family: "Abyssinica SIL";
    /* define font here */
    line-height: 1.6;
}

/* Links: no underline by default, inherit color */
a {
    text-decoration: none;
    color: inherit;
}

/* A little container helper (optional) */
.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

/* =========================
   1) HEADER / NAV
========================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #000;
    border-bottom: 1px solid #333;
}

.logo {
    color: #D4AF37;
    /* gold */
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
}

/* The nav uses "glow buttons" for each link */
#navMenu {
    display: flex;
    gap: 10px;
}

/* ==== Glow button (for Home / Services / Blog) ==== */
.button-85 {
    padding: 0.55em 1.1em;
    border: 1px solid #333;
    background: #111;
    /* dark button base */
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Subtle animated glow around the button only */
.button-85::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    /* tight glow */
    border-radius: 10px;
    background: linear-gradient(45deg,
            #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8);
    background-size: 300%;
    filter: blur(3px);
    opacity: 0.28;
    /* soft */
    z-index: -1;
    animation: glowShift 16s linear infinite;
}

.button-85::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: #1a1a1a;
    /* inner surface */
    z-index: -1;
}

@keyframes glowShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Active/hover effect for nav buttons */
.button-85:hover,
.button-85.active {
    border-color: #D4AF37;
    color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

/* Hamburger for mobile */
.hamburger {
    display: none;
    /* shown only on small screens */
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* =========================
   2) HERO SECTION
========================= */
.hero {
    text-align: center;
    padding: 96px 20px 84px;
    background: #111;
}

.hero h1 {
    color: #D4AF37;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 10px;
}

.hero p {
    color: #eaeaea;
    font-size: 18px;
    margin-bottom: 18px;
}

/* ==== CTA buttons (Explore / Enroll / Get Started) ==== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #D4AF37;
    /* gold fill */
    color: #000;
    /* readable on gold */
    font-weight: 700;
    border-radius: 8px;
}

.btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid #D4AF37;
    /* gold outline */
    color: #D4AF37;
    font-weight: 700;
    border-radius: 8px;
}

.btn-outline:hover {
    background: #1a1a1a;
}

/* =========================
   3) ABOUT SECTION
========================= */
.about {
    width: min(900px, 92%);
    margin: 0 auto;
    padding: 56px 20px 20px;
    text-align: left;
    scroll-margin-top: 80px;
    /* so #about anchor isn't hidden by sticky header */
}

.about h2 {
    color: #D4AF37;
    text-align: center;
    margin-bottom: 12px;
}

.about h3 {
    color: #D4AF37;
    margin: 22px 0 10px;
}

.about p {
    color: #eaeaea;
    /* consistent body color */
    margin: 10px 0;
}

.about-list {
    margin: 10px 0 16px 20px;
}

.about-list li {
    margin: 6px 0;
}

/* Row for the two CTA buttons in About */
.about-cta {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================
   4) SERVICES
========================= */
.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
}

.service-card {
    width: 300px;
    background: #111;
    padding: 20px;
    border: 2px solid #D4AF37;
    border-radius: 10px;
    text-align: center;
}

.service-card h2 {
    color: #D4AF37;
}

/* =========================
   5) BLOG
========================= */
.blog-grid {
    padding: 60px 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
    background: #111;
    padding: 20px;
    border: 2px solid #D4AF37;
    border-radius: 10px;
}

.blog-card h3 {
    color: #D4AF37;
}

/* =========================
   6) TESTIMONIALS
========================= */
.testimonials {
    text-align: center;
    padding: 60px 20px;
}

.testimonial-cards {
    display: grid;
    gap: 16px;
    width: min(1000px, 92%);
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.t-card {
    background: #111;
    padding: 20px;
    border: 2px solid #D4AF37;
    border-radius: 10px;
}

/* =========================
   7) FOOTER
========================= */
footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #444;
    margin-top: 40px;
}

/* =========================
   8) MOBILE (one clear breakpoint)
========================= */
@media only screen and (max-width: 820px) {
    #navMenu {
        display: none;
        /* hidden by default on mobile */
        position: absolute;
        top: 60px;
        left: 16px;
        right: 16px;
        background: #000;
        border: 1px solid #333;
        border-radius: 10px;
        padding: 12px;
        flex-direction: column;
        /* vertical list */
        gap: 8px;
    }

    .hamburger {
        display: block;
    }

    /* show burger on small screens */
}



< !-- HTML !--><button class="button-88" role="button">Button 88</button>

/* CSS */
.button-88 {
    display: flex;
    align-items: center;
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    padding: 0.7em 1.4em 0.7em 1.1em;
    color: white;
    background: #ad5389;
    background: linear-gradient(0deg, rgba(20, 167, 62, 1) 0%, rgba(102, 247, 113, 1) 100%);
    border: none;
    box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
    letter-spacing: 0.05em;
    border-radius: 20em;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-88:hover {
    box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.button-88:active {
    box-shadow: 0 0.3em 1em -0.5em #14a73e98;
}



/* ===== FEATURED FIGURE ===== */
.featured-figure {
  width: min(800px, 70%);
  margin: 40px auto;               /* centers the block */
  background: #0d0d0d;
  border: 2px solid #D4AF37;
  border-radius: 12px;
  overflow: hidden;                 /* rounds the image corners too */
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.featured-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;                /* keeps image pleasant if tall */
}

.featured-figure figcaption {
  padding: 12px 16px;
  font-size: 15px;
  color: #eaeaea;
  border-top: 1px solid #1f1f1f;
  position: relative;
}


/* Hover polish on larger screens */
@media (hover:hover) {
  .featured-figure:hover {
    transform: translateY(-2px);
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  }
}

/* Small-screen tweaks */
@media (max-width: 540px) {
  .featured-figure { margin: 28px auto; }
  .featured-figure figcaption { font-size: 14px; }
}
