:root {
  --blue: #4F9CFF;
  --white: #ffffff;
  --body-bg: #f8fbfa;
}

body {
  overflow-x: hidden;
}

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
     font-family: "Nunito", sans-serif !important;

}

body{
    background-color: var(--body-bg);
    overflow-x: hidden !important;
}

p{
    font-size: 14px;
}
h2{
  font-size: 18px;
  font-weight: bold;
}

.journey h2{
  font-size: 23px;
  font-weight: bold;
}
.home h2{
  font-size: 23px;
  font-weight: bold;
}


.logo{
    color: white;
    text-decoration: none;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 0px 30px;
    background-color: var(--blue) !important;
    position: sticky;
    top: 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}


.menu>ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 30px;
}

div a {
  color: red;
  text-decoration: none;
}




/*---hero---*/

.hero{
    height: 2vh;
    width: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-heaing{
    font-size: 100px;
    text-align: center;
    color: var(--white);
    
}


/*---welcome---*/

.welcome-first>h2{
    font-size: 36px;
    text-align: center;
    
}

.svg-row{
    position: absolute;
}
.svg-arrow{
    position: relative;
    top: -10px;
    left: 370px;
}
.svg-arrow-left{
    position: relative;
    top: -30px;
    left: 300px;
}


/*----articles---*/

.articles{
    height: 2vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.articles>h2{
     font-size: 70px;
    text-align: center;
    color: var(--white);
}


.article img{
  height: 100px;
  width: 300px;
  object-fit: cover;
  
}

/*----Part 1 ---*/

 .spotify-audio-player {
    width: 600px;
/*    background: var(--blue);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);*/
  }
  
  audio {
    width: 100%;
    height: 40px;
  }
  
  /* Customize the audio element */
  audio::-webkit-media-controls-panel {
    background: #ffffff;
    border-radius: 8px;
  }
  
  audio::-webkit-media-controls-play-button,
  audio::-webkit-media-controls-mute-button {
    background-color:var(--blue);
    border-radius: 50%;
  }
  
  audio::-webkit-media-controls-current-time-display,
  audio::-webkit-media-controls-time-remaining-display {
    color: white;
    font-size: 12px;
  }
  
  audio::-webkit-media-controls-timeline {
    background-color: var(--blue);
    margin: 0 10px;
    border-radius: 5px;
  }
  
  audio::-webkit-media-controls-volume-slider {
    background-color: var(--blue);
    border-radius: 5px;
    width: 160px;
  }
  
  /* Firefox styles */
  audio::-moz-range-track {
    background-color: #535353;
    height: 4px;
    border-radius: 10px;
  }
  
  audio::-moz-range-thumb {
    background-color: var(--blue);
  }

  .date{
    font-size: 10px;
    color: #949494;
  }


  .inner-articles{
    height: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

  }
  ul>li{
    font-size: 14px;
  }
  ol>li{
    font-size: 14px;
  }
@media only screen and (max-width: 767px) {
   .hide-on-mobile{
    display: none;
   }
   .hero{
    height: 20vh;
   }
   .hero-heaing{
    font-size: 60px;
    text-align: center;
    color: var(--white);
    }

    .center{
        justify-content: center;
        display: flex;
    }
    .column-reverse{
        flex-direction: column-reverse;
    }
    .mobile-padding{
        padding: 0px 20px;
    }
    nav{
      position: sticky !important;
      top: 0px;
      z-index: 2;
    }
   .spotify-audio-player{
    width: 90%;
    margin: auto;
   }
   body{
    overflow-x: hidden;
   }
}


/* Desktop devices (typically 1024px and larger) */
@media only screen and (min-width: 1024px) {
    .hide-on-desktop{
        display: none;
    }
    nav{
        height: 90px;
    }

    .article .grid-cell{
      height: 510px !important;
    }
    body{
    overflow-x: hidden !important;
   }
}

/* Small tablets (e.g., older 7" tablets) */
@media (min-width: 600px) and (max-width: 767px) {
    .hide-on-tab{
      display: none;
    }
    body{
    overflow-x: hidden !important;
   }
}

/* Standard tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .hide-on-tab{
      display: none;
    }
    body{
    overflow-x: hidden !important;
   }
}
@media (min-width: 992px) and (max-width: 1023px) {
    .hide-on-desktop{
      display: none;
    }
    body{
    overflow-x: hidden !important;
   }
}

.right-image-float {
    float: right;
    margin: 5px 0 20px 20px; /* top, right, bottom, left */
    max-width: 300px;
    height: auto;
    display: block;
}


/* Sticky footer layout */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Let main expand to fill space so footer sits at bottom */
main {
  flex: 1;
}

/* Optional: ensure footer links remain readable on dark bg */
footer a { color: inherit; }
footer a:hover { opacity: 0.85; }


.site-footer {
  width: 100vw;            /* span full viewport width */
  margin-left: calc(-50vw + 50%); /* escape any centered body/container */
  background-color: #000;  /* force dark background */
}

.site-footer p {
  margin: 0;
  text-align: center;
}

