


/* About Services Section Styling */
#about-services {
    background-color: black;
    color: white;
    padding: 60px 0;
}

#about-services h2,
#about-services h3,
#about-services p,
#about-services ul li {
    color: white;
}

/* Optional: Adjust bullet color or spacing if needed */
#about-services ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* === Banner Text Shadow Box Styling === */

#banner h1 {
    color: white;
    font-size: 65px;
    margin: 0;
}

/* Button Styling */
.btn-get-started {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 36px;
    margin-top: 15px;
    border-radius: 6px;
    color: #fff;
    border: 2px solid rgb(173, 175, 58);
    background: linear-gradient(135deg, #ffcc00, #FFD700, #C9A02D, #8B7500);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(231, 229, 229, 0.5);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Button Hover Animation */
.btn-get-started:hover {
    background: #d4af37;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(173, 170, 170, 0.8);
}

/* Button Gradient Hover Effect */
.btn-get-started::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.4s ease-in-out;
}

.btn-get-started:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    #banner {
        height: 250px;
        background-size: cover;
    }

    #banner h1 {
        font-size: 40px;
    }

    .banner-text-wrapper {
        padding: 15px 20px;
    }

    #about-services p {
        font-size: 16px;
    }

    .practice-areas ul {
        padding-left: 0;
    }

    .practice-areas ul li {
        font-size: 14px;
    }

    .btn-get-started {
        font-size: 13px;
        padding: 10px 28px;
    }
}

@media (max-width: 576px) {
    .practice-areas .col-md-4,
    .workshops-section {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .header-social-links a {
        font-size: 14px;
    }

    .header .logo img {
        max-width: 120px;
    }
}


/* =====================================
   STEVIE HERO — FIXED MOBILE + BIGGER LOGO
===================================== */

#stevie-hero {
  position: relative;
  background: #ffffff;
  min-height: 85vh;   /* Reduced from 100vh */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 20px;  /* Reduced padding */
}

/* ================================
   CONTENT
================================ */

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 900px;
  opacity: 0;
  animation: contentFade 1s ease 2s forwards;
}

.award-logo {
  width: 100%;
  max-width: 640px;   /* same visual size as 40rem */
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
}

/* Headline */
.hero-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 25px;
}

/* Paragraph */
.hero-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Links */
.award-link {
  color: #b38b2d;
  font-weight: 600;
  text-decoration: none;
}

.award-link:hover {
  text-decoration: underline;
}

.hashtags {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #777;
}

/* ================================
   RED CURTAIN
================================ */

.curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 10;

  background: linear-gradient(
    to right,
    #7a0f1c 0%,
    #a41623 25%,
    #c61f2e 50%,
    #a41623 75%,
    #7a0f1c 100%
  );

  box-shadow:
    inset -10px 0 30px rgba(0,0,0,0.5),
    inset 10px 0 30px rgba(0,0,0,0.5);
}

.curtain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 4px,
    transparent 4px,
    transparent 12px
  );
  opacity: 0.5;
}

.curtain.left {
  left: 0;
  animation: openLeft 1.8s ease forwards;
}

.curtain.right {
  right: 0;
  animation: openRight 1.8s ease forwards;
}

@keyframes openLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-105%); }
}

@keyframes openRight {
  from { transform: translateX(0); }
  to { transform: translateX(105%); }
}

/* Fade content */
@keyframes contentFade {
  to { opacity: 1; }
}

/* ================================
   MOBILE FIXES
================================ */

@media (max-width: 768px) {

  #stevie-hero {
    text-align: center;   /* ensure full center */
  }

  .hero-inner {
    text-align: center;
  }

  .award-logo {
    max-width: 85%;   /* big but fits screen */
  }
}


@media (max-width: 480px) {

  .award-logo {
    max-width: 90%;
  }


  .hero-title {
    font-size: 1.5rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hashtags {
    font-size: 0.85rem;
  }
}
