
:root {

  /**
   * colors
   */

  --flourescent-blue:hsla(166, 100%, 50%, 0.74);
  --heliotrope-gray: hsl(0, 0%, 99%);
  --russian-violet:#C61212;
  --dark-violet: hsl(0, 97%, 56%) ;
  --space-cadet: hsl(255, 7%, 77%);
  --blue-ryb:hsla(166, 100%, 50%, 0.74);
  --white: hsl(0, 0%, 100%);

  --gradient: linear-gradient(to right, var(--flourescent-blue), var(--blue-ryb));

  /**
   * typography
   */

  --ff-josefin: 'Josefin sans', sans-serif;

  --fs-1: 25px;
  --fs-2: 18px;
  --fs-3: 17px;
  --fs-4: 15px;

  --fw-500: 500;
  --fw-700: 700;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 30px;

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input {
  font: inherit;
  border: none;
  width: 100%;
}

:focus { outline-offset: 4px; }

html {
  font-family: var(--ff-josefin);
  scroll-behavior: smooth;
}

body {
  background: var(--dark-violet);
  color: var(--white);
}

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track {
  background: var(--dark-violet);
  border-left: 1px solid var(--space-cadet);
}

::-webkit-scrollbar-thumb { background: hsla(0, 0%, 100%, 0.8); }

::-webkit-scrollbar-thumb:hover { background: hsla(0, 0%, 100%, 0.6); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.btn {
  color: var(--white);
  font-size: var(--fs-4);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 9px 10px;
  border-radius: 4px;
}

.btn-primary {
  background: var(--gradient);
  background-size: 500%;
  background-position: right;
  padding: 15px 25px;
  gap: 8px;
  transition: background var(--transition);
}

.btn-primary:is(:hover, :focus) { background-position: left; }

.btn-primary > ion-icon { font-size: 18px; }

.btn-primary > span { margin-top: 3px; }

.container { padding: 0 15px; }

.h3 {
  color: var(--white);
  font-size: var(--fs-2);
  line-height: 1.5;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

header {
  position: fixed;
  top: -90px;
  left: 0;
  width: 100%;
  padding-block: 25px;
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
  background: var(--russian-violet);
  transition: var(--transition);
  z-index: 4;
}

header.active { top: 0; }

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

.nav-toggle-btn {
  color: var(--white);
  font-size: 35px;
  border-radius: 4px;
}

.nav-toggle-btn ion-icon { --ionicon-stroke-width: 40px; }

.navbar {
  position: fixed;
  bottom: -270px;
  left: 0;
  width: 100%;
  background: var(--russian-violet);
  border-radius: 8px 8px 0 0;
  padding: 30px 10px 10px;
  box-shadow: 0 -1px 10px hsla(0, 0%, 0%, 0.5);
  z-index: 2;
  visibility: hidden;
  transition: 0.15s ease-in;
}

.navbar.active {
  bottom: 0;
  visibility: visible;
  transition: 0.25s ease-out;
}

.navbar-list {
  padding-bottom: 5px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
  margin-bottom: 5px;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: hsla(0, 0%, 100%, 0.05);
  border-radius: 5px;
}

.navbar-link {
  color: var(--white);
  font-size: var(--fs-4);
  padding: 10px;
  border-radius: 4px;
}

.navbar-link:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.1); }

.navbar-actions {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.navbar-btn {
  color: var(--white);
  font-size: 25px;
  padding: 5px;
  border-radius: 4px;
}

.navbar-btn:is(:hover, :focus),
.navbar-actions .btn:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.1); }

.overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  transition: var(--transition);
}

.overlay.active {
  pointer-events: all;
  background: hsla(0, 0%, 0%, 0.7);
}


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero { padding: 140px 0 var(--section-padding); }

.hero-title {
  width: 100%;
  margin-bottom: 20px;
}

.hero-text {
  color: var(--white);
  font-size: var(--fs-4);
  line-height: 1.8;
  margin-bottom: 20px;
}

.hero .btn-primary { margin-bottom: 25px; }

.btn-title {
  background: var(--gradient);
  width: max-content;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  margin-bottom: 25px;
}

.hero .btn-link {
  color: var(--white);
  font-size: var(--fs-4);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  background: var(--gradient);
  padding-bottom: 5px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 97%;
  border-radius: 4px;
  transition: background var(--transition);
}

.hero .btn-link:is(:hover, :focus) { background-size: 100% 2px; }

.hero .btn-link { margin-bottom: 15px; }

.hero-banner { display: none; }





/*-----------------------------------*\
  #NEWSLETTER
\*-----------------------------------*/

.newsletter { padding: var(--section-padding) 0; }

.newsletter-card {
  background: url("../images/newsletter-bg.jpg") center no-repeat;
  background-size: cover;
  padding: 60px 20px;
  border-radius: 12px;
}

.newsletter-card .card-title {
  font-size: var(--fs-1);
  line-height: 1.3;
  margin-bottom: 10px;
}

.newsletter-card .card-text {
  font-size: var(--fs-4);
  line-height: 1.5;
  margin-bottom: 20px;
}

.newsletter-card .input-field {
  padding: 18px 15px;
  border-radius: 4px;
  background: hsla(0, 2%, 82%, 0.116);
  color: var(--white);
  font-size: var(--fs-4);
  border: 1px solid var(--white);
  margin-bottom: 20px;
}
.h3{
    color: wheat;
}
.newsletter-card .input-field:focus { outline: none; }

.newsletter-card .input-field::placeholder {
  color: inherit;
  transition: var(--transition);
}

.newsletter-card .input-field:focus::placeholder { opacity: 0; }

.newsletter-card .btn-primary {
  font-size: var(--fs-3);
  width: 100%;
  padding-block: 18px;
}

.newsletter-card .btn-primary:disabled {
  cursor: not-allowed;
  background-position: right;
}




.logo{
    width: 60px;
    height: 30px;
}
/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  padding: var(--section-padding) 0;
  border-bottom: 1px solid var(--space-cadet);
}

.footer-brand,
.footer-brand .logo { margin-bottom: 25px; }

.footer-text {
  color: var(--heliotrope-gray);
  line-height: 1.6;
  font-size: var(--fs-4);
}

.footer-list { margin-bottom: 30px; }

.footer-list > li:not(:last-child) { margin-bottom: 20px; }

.footer-link-title {
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  margin-bottom: 20px;
}

.footer-link {
  color: var(--heliotrope-gray);
  font-size: var(--fs-4);
  width: max-content
}

.footer-link:is(:hover, :focus) { color: var(--blue-ryb); }

.social-title {
  background: var(--gradient);
  width: max-content;
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.social-link {
  background: var(--space-cadet);
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 20px;
  border-radius: 50%;
}

.social-link:is(:hover, :focus) { background: var(--blue-ryb); }

.copyright {
  color: var(--heliotrope-gray);
  font-size: var(--fs-4);
  text-align: center;
  line-height: 1.8;
  padding-block: 20px;
}

.copyright a {
  color: var(--white);
  display: inline-block;
}

.copyright a:is(:hover, :focus) { color: var(--blue-ryb); }





/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--blue-ryb);
  color: var(--white);
  font-size: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 2;
}

.go-top.active {
  opacity: 1;
  pointer-events: all;
}

.go-top:is(:hover, :focus) { --blue-ryb: hsl(221, 100%, 40%); }





/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

/**
 * responsive for larger than 550px
 */

@media (min-width: 550px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 500px;
    margin-inline: auto;
  }

}





/**
 * responsive for larger than 768px
 */

@media (min-width: 768px) {

  :root {

    /**
     * typography
     */

    --fs-1: 30px;
    --fs-2: 20px;
    --fs-4: 18px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 680px; }



  /**
   * HERO
   */

  .hero-title { width: 90%; }

  .hero :is(.btn-primary, .btn-title, .btn-link) {
    --fs-4: 16px;
    margin-bottom: 0;
  }

  .hero-btn-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
  }

  .btn-link-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }






  /**
   * NEWSLETTER
   */

  .newsletter-card { padding: 50px; }

  .card-form { position: relative; }

  .newsletter-card .btn-primary {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    width: 140px;
  }

  .newsletter-card .input-field { padding-right: 155px; }



  /**
   * FOOTER
   */

  .footer-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
  }

  .footer-brand {
    max-width: 350px;
    margin-bottom: 0;
  }

  .footer-list { margin-bottom: 0; }

}





/**
 * responsive for larger than 1024px
 */

@media (min-width: 1024px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 980px; }



  /**
   * HEADER
   */

  header { top: -120px; }

  .nav-toggle-btn { display: none; }

  .navbar {
    position: static;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    background: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }

  .navbar-list {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .navbar-link { position: relative; }

  .navbar-link::after {
    --scale: 0;

    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(var(--scale));
    transform-origin: left;
    width: calc(100% - 20px);
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
  }

  .navbar-link:is(:hover, :focus) {
    background: var(--gradient);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }

  .navbar-link:is(:hover, :focus)::after { --scale: 1; }

  .navbar-actions { gap: 10px; }

  .navbar-actions .btn {
    background: var(--blue-ryb);
    padding: 15px 25px;
    transition: background var(--transition);
  }

  .navbar-actions .btn:is(:hover, :focus) { background: hsl(221, 100%, 40%); }

  .navbar::before,
  .overlay { display: none; }



  /**
   * HERO
   */

  .hero-content {
    max-width: 680px;
    margin-inline: auto;
  }




  /**
   * NEWSLETTER
   */

  .newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }

  .newsletter-card .card-content,
  .card-form { width: 50%; }

  .newsletter-card .card-text,
  .newsletter-card .input-field { margin-bottom: 0; }

}





/**
 * responsive for larger than 1200px
 */

@media (min-width: 1200px) {

  :root {

    /**
     * spacing
     */

    --section-padding: 60px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }



  /**
   * HEADER
   */

  header { padding-block: 25px; }

  header .container { max-width: 1300px; }

  .navbar { gap: 20px; }

  .navbar-actions .btn { margin-left: 20px; }



  /**
   * HERO
   */

  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    padding-top: 160px;
  }

  .hero-content {
    width: 95%;
    margin-inline: 0;
  }

  .hero-title {
    width: 100%;
    margin-bottom: 30px;
  }

  .hero-text { margin-bottom: 25px; }

  .hero-btn-group {
    flex-wrap: wrap-reverse;
    gap: 35px;
  }

  .hero :is(.btn-primary, .btn-title, .btn-link) { --fs-4: 17px; }

  .hero-banner {
    display: block;
    width: 100%;
    padding-top: 100%;
    background: url("../images/hero-banner.png") no-repeat;
    background-size: cover;
    border-radius: 100px;
  }




  /**
   * FOOTER
   */

  .footer-link-title {
    --fs-2: 22px;
    margin-bottom: 30px;
  }

  .social-title {
    margin-left: auto;
    margin-bottom: 35px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  /* BUTTON */
  .btn-more {
    margin-top: 10px;
    display: inline-block;
    padding: 8px 15px;
    font-size: 14px;
    color: white;
    background: rgb(104, 192, 173);
    text-decoration: none;

    transition: background 0.3s;
  }

  /* EMPTY & ERROR STATES */
  .empty-state, .error-state {
    font-size: 18px;
    color: #c43c3c;
    font-weight: bold;
    padding: 20px;
  }


    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {

        margin-top: 60px;
        text-align: center;
        font-size: 2rem;
        font-weight: 600;
        color: #f5ebeb;
        margin-bottom: 40px;
    }






    /* INDEX BLADE */
     /* Podcasts Section */
     .podcasts {
        padding: 50px 0;
        background-color: hsl(0, 97%, 56%); /* Lighter background */
        text-align: center;
    }

    .podcast-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Grid layout */
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .podcast-card {
        display: flex;
        flex-direction: column;
        background-color: #921600;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .podcast-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .card-banner img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .card-banner img:hover {
        transform: scale(1.05);
    }

    .card-content {
        padding: 20px;
        text-align: left;
    }

    .card-title {
        font-size: 24px;
        font-weight: 700;
        margin: 10px 0;
        color: #ffffff;
    }

    .card-meta {
        font-size: 16px;
        color: #d8d0d0;
        margin-bottom: 10px;
    }

    .podcast-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
        color: #fdf6f6;
    }

    .listen-now-btn {
        padding: 12px 18px;
        font-size: 16px;
        background-color: #0dd499;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        display: inline-block;
        text-align: center;
    }

    .listen-now-btn:hover {
        background-color: #00d6b3;
    }

    .listen-now-btn a {
        color: white;
        text-decoration: none;
    }

    .listen-now-btn a:hover {
        text-decoration: underline;
    }

    /* Video Modal Styles */
    .video-modal {
z-index: 1;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        align-items: center;
        justify-content: center;
    }

    .video-modal-content {
        position: relative;
        width: 80%;
        max-width: 900px;
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
    }

    .video-banner {
        display: block;
        width: 100%;
        height: 500px;
        background-color: #333;
    }

    .video-close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
    }
/* EVENTS */

    .events {
        padding: 50px 0;
        background-color:hsl(0, 97%, 56%);
        text-align: center;
    }

    .event-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .event-card {
        display: flex;
        flex-direction: column;
        background-color:hsl(0, 100%, 27%);
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .event-card:hover {
        transform: translateY(-10px);
    }

    .card-banner img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .card-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .card-title {
        font-size: 24px;
        font-weight: 700;
        margin: 10px 0;
    }

    .card-meta {
        font-size: 16px;
        color: hsl(175, 100%, 42%);
        margin-bottom: 10px;
    }

    .event-description {
        color: rgb(255, 255, 255);
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .event-location {
        font-weight: 600;
        margin-bottom: 15px;
    }

    .read-more-btn {
        margin-left: 1040px;
        padding: 8px;
        font-size: 14px;
        background-color:#00FFC2;
        color: #750000;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .read-more-btn:hover {
        background-color: #00FFC2;
        color: #222;
    }

    .event-full-description {
        color: rgb(252, 251, 248);
                    display: none;
        font-size: 14px;
        line-height: 1.6;
        margin-top: 10px;
    }

    .event-full-description.show {
        display: block;
    }


    /* monday marks */
        /* Schedule Cards Styling */
.schedule-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.schedule-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.schedule-image {
    position: relative;
    width: 100%;
    height: 200px;
}

.schedule-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.schedule-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}

.schedule-content {
    padding: 15px;
}

.schedule-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.schedule-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.schedule-topics {
    margin-top: 15px;
}

.topic {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.topic h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.topic p {
    font-size: 14px;
    color: #555;
}

.topic img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 8px;
}

.btn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #d31002;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-more:hover {
    background: #b10202;
}



/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav-toggle-btn ion-icon { --ionicon-stroke-width: 40px; }
li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }
.empty-state,
.error-state {
    text-align: center;
    font-size: 18px;
    color: #888;
    padding: 20px;
}

/* View Details Button */
.btn-view-details {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #ff0800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-view-details:hover {
    background: #ca2002;
}

/* White icon styling */
.icon-white {
    color: white; /* Set icon color to white */
    font-size: 24px; /* Adjust size */
}

/* Navbar icon container */
.nav-icon {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* MONDAY MARKS DETAILS */
:root {

    /**
     * colors
     */

    --flourescent-blue:hsla(166, 100%, 50%, 0.74);
    --heliotrope-gray: hsl(0, 0%, 99%);
    --russian-violet:#C61212;
    --dark-violet: hsl(0, 97%, 56%) ;
    --space-cadet: hsl(255, 7%, 77%);
    --blue-ryb:hsla(166, 100%, 50%, 0.74);
    --white: hsl(0, 0%, 100%);

    --gradient: linear-gradient(to right, var(--flourescent-blue), var(--blue-ryb));

    /**
     * typography
     */

    --ff-josefin: 'Josefin sans', sans-serif;

    --fs-1: 25px;
    --fs-2: 18px;
    --fs-3: 17px;
    --fs-4: 15px;

    --fw-500: 500;
    --fw-700: 700;



    --transition: 0.25s ease-in-out;


    --section-padding: 30px;

    }


    *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    li { list-style: none; }

    a { text-decoration: none; }

    a,
    img,
    span,
    input,
    button,
    ion-icon { display: block; }

    button {
    font: inherit;
    background: none;
    border: none;
    cursor: pointer;
    }

    input {
    font: inherit;
    border: none;
    width: 100%;
    }

    :focus { outline-offset: 4px; }

    html {
    font-family: var(--ff-josefin);
    scroll-behavior: smooth;
    }

    body {
    background: var(--dark-violet);
    color: var(--white);
    }

    ::-webkit-scrollbar { width: 10px; }

    ::-webkit-scrollbar-track {
    background: var(--dark-violet);
    border-left: 1px solid var(--space-cadet);
    }

    ::-webkit-scrollbar-thumb { background: hsla(0, 0%, 100%, 0.8); }

    ::-webkit-scrollbar-thumb:hover { background: hsla(0, 0%, 100%, 0.6); }


    header {
    position: fixed;
    top: -90px;
    left: 0;
    width: 100%;
    padding-block: 25px;
    box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
    background: var(--russian-violet);
    transition: var(--transition);
    z-index: 4;
    }

    header.active { top: 0; }

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

    .nav-toggle-btn {
    color: var(--white);
    font-size: 35px;
    border-radius: 4px;
    }

    .nav-toggle-btn ion-icon { --ionicon-stroke-width: 40px; }

    .navbar {
    position: fixed;
    bottom: -270px;
    left: 0;
    width: 100%;
    background: var(--russian-violet);
    border-radius: 8px 8px 0 0;
    padding: 30px 10px 10px;
    box-shadow: 0 -1px 10px hsla(0, 0%, 0%, 0.5);
    z-index: 2;
    visibility: hidden;
    transition: 0.15s ease-in;
    }

    .navbar.active {
    bottom: 0;
    visibility: visible;
    transition: 0.25s ease-out;
    }

    .navbar-list {
    padding-bottom: 5px;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
    margin-bottom: 5px;
    }

    .navbar::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: hsla(0, 0%, 100%, 0.05);
    border-radius: 5px;
    }

    .navbar-link {
    color: var(--white);
    font-size: var(--fs-4);
    padding: 10px;
    border-radius: 4px;
    }

    .navbar-link:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.1); }

    .navbar-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    }

    .navbar-btn {
    color: var(--white);
    font-size: 25px;
    padding: 5px;
    border-radius: 4px;
    }

    .navbar-btn:is(:hover, :focus),
    .navbar-actions .btn:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.1); }

    .overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    transition: var(--transition);
    }

    .overlay.active {
    pointer-events: all;
    background: hsla(0, 0%, 0%, 0.7);
    }


    .logo{
      width: 60px;
      height: 30px;
    }
    /*-----------------------------------*\
    #FOOTER
    \*-----------------------------------*/

    .footer-top {
    padding: var(--section-padding) 0;
    border-bottom: 1px solid var(--space-cadet);
    }

    .footer-brand,
    .footer-brand .logo { margin-bottom: 25px; }

    .footer-text {
    color: var(--heliotrope-gray);
    line-height: 1.6;
    font-size: var(--fs-4);
    }

    .footer-list { margin-bottom: 30px; }

    .footer-list > li:not(:last-child) { margin-bottom: 20px; }

    .footer-link-title {
    font-size: var(--fs-2);
    font-weight: var(--fw-700);
    margin-bottom: 20px;
    }

    .footer-link {
    color: var(--heliotrope-gray);
    font-size: var(--fs-4);
    width: max-content
    }

    .footer-link:is(:hover, :focus) { color: var(--blue-ryb); }

    .social-title {
    background: var(--gradient);
    width: max-content;
    font-size: var(--fs-2);
    font-weight: var(--fw-700);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 20px;
    }

    .social-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    }

    .social-link {
    background: var(--space-cadet);
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 20px;
    border-radius: 50%;
    }

    .social-link:is(:hover, :focus) { background: var(--blue-ryb); }

    .copyright {
    color: var(--heliotrope-gray);
    font-size: var(--fs-4);
    text-align: center;
    line-height: 1.8;
    padding-block: 20px;
    }

    .copyright a {
    color: var(--white);
    display: inline-block;
    }

    .copyright a:is(:hover, :focus) { color: var(--blue-ryb); }


    @media (min-width: 550px) {

    /**
     * REUSED STYLE
     */

    .container {
      max-width: 500px;
      margin-inline: auto;
    }

    }

    @media (min-width: 768px) {

    :root {

      --fs-1: 30px;
      --fs-2: 20px;
      --fs-4: 18px;

    }



    .container { max-width: 680px; }




    .footer-top .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 50px;
    }

    .footer-brand {
      max-width: 350px;
      margin-bottom: 0;
    }

    .footer-list { margin-bottom: 0; }

    }


    header { top: -120px; }

    .nav-toggle-btn { display: none; }

    .navbar {
      position: static;
      visibility: visible;
      box-shadow: none;
      padding: 0;
      background: none;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 30px;
    }

    .navbar-list {
      display: flex;
      justify-content: space-between;
      gap: 15px;
      border: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .navbar-link { position: relative; }

    .navbar-link::after {
      --scale: 0;

      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) scale(var(--scale));
      transform-origin: left;
      width: calc(100% - 20px);
      height: 2px;
      background: var(--gradient);
      transition: var(--transition);
    }

    .navbar-link:is(:hover, :focus) {
      background: var(--gradient);
      -webkit-text-fill-color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
    }

    .navbar-link:is(:hover, :focus)::after { --scale: 1; }

    .navbar-actions { gap: 10px; }

    .navbar-actions .btn {
      background: var(--blue-ryb);
      padding: 15px 25px;
      transition: background var(--transition);
    }
    .navbar-actions .btn:is(:hover, :focus) { background: hsl(221, 100%, 40%); }

    .navbar::before,
    .overlay { display: none; }

    @media (min-width: 1200px) {

    :root {

      --section-padding: 60px;

    }

    .container { max-width: 1200px; }
    /* New styles for the schedule details and events */
    /* New styles for a card-like, compact design for schedule and events */
    }


    /* MONDAY MARKS DETAILS */
        /* Schedule Cards Styling */
.schedule-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.schedule-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.schedule-image {
    position: relative;
    width: 100%;
    height: 200px;
}

.schedule-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.schedule-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}

.schedule-content {
    padding: 15px;
}

.schedule-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.schedule-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.schedule-topics {
    margin-top: 15px;
}

.topic {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.topic h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.topic p {
    font-size: 14px;
    color: #555;
}

.topic img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 8px;
}

.btn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #d31002;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-more:hover {
    background: #b10202;
}



/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav-toggle-btn ion-icon { --ionicon-stroke-width: 40px; }
li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }
.empty-state,
.error-state {
    text-align: center;
    font-size: 18px;
    color: #888;
    padding: 20px;
}

/* View Details Button */
.btn-view-details {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #ff0800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-view-details:hover {
    background: #ca2002;
}

/* White icon styling */
.icon-white {
    color: white; /* Set icon color to white */
    font-size: 24px; /* Adjust size */
}

/* Navbar icon container */
.nav-icon {
    display: flex;
    gap: 20px;
    align-items: center;
}
}
