/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('assets/images/image.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: #333;
  line-height: 1.6;
}

/* .cup {
    background-color: white;
    padding: 40px;
    padding-bottom: 10px;
} */

.up {
  background-color: black;
  opacity: 80%;
  padding: 20px;
}

.up a {
  color: white;
  text-decoration: none;


}

.up h2 {
  text-align: center;
  font-size: 20px;
  font-family: Impact;
}


@media screen and (max-width: 768px) {
  .text {
    font-size: 6vw;
  }
}

nav {
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;
}

.align img {
  float: left;
}


nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}

nav a:hover {
  color: red;
}


.sidebar {
  position: fixed;
  top: 10px;
  right: 0;
  height: 40vh;
  width: 250px;
  background-color: white;
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

.menu-button {
  display: none;
}

@media(max-width: 800px) {
  .hideOnMobile {
    display: flex;
  }
}

@media(max-width: 800px) {
  .showOnMobile {
    display: none;
  }
}

@media(max-width: 800px) {
  .menu-button {
    display: block;
  }
}

@media(max-width: 400px) {
  .sidebar {
    width: 100%;
  }
}

.section {
  padding: 2rem;
  margin: 1rem auto;
  max-width: 900px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

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

.section h1 {
  margin-bottom: 1rem;
  color: #2c3e50;
  text-align: center;
}

.main-footer {
  text-align: center;
  padding: 1rem;
  background: #2c3e50;
  color: #fff;
  margin-top: 1rem;
  font-size: 0.9rem;
}







.audio-player {
  background: transparent;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.controls {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.controls button {
  background: #ff9800;
  border: none;
  padding: 8px;
  border-radius: 20%;
  font-size: 10px;
  cursor: pointer;
}













.container5 {
  width: 100%;
  height: fit-content;
  margin-top: 15px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container5 img {
  align-items: center;
}

.swiper {
  width: 80%;
  height: fit-content;
}

.swiper .swiper-slide img {
  width: 100%;
  margin-top: 20px;
}

.swiper .swiper-button-prev,
.swiper-button-next {
  background: black;
  color: white;
}

.swiper .swiper-button-next {
  margin-right: 10px;
}

.swiper .swiper-pagination-bullet-active {
  background: black;
}


/* ============================= */
/* RESPONSIVE STYLES START HERE  */
/* ============================= */

/* Global responsive safety */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
}

/* Tablets */
@media screen and (max-width: 1024px) {
  nav ul {
    justify-content: space-between;
  }

  .section {
    max-width: 95%;
    padding: 1.5rem;
  }

  .swiper {
    width: 90%;
  }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .up h2 {
    font-size: 16px;
  }

  nav a {
    padding: 12px;
    font-size: 14px;
  }

  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    display: none;
  }

  .audio-player {
    width: 100%;
  }
}

/* Small phones */
@media screen and (max-width: 480px) {
  .section h1 {
    font-size: 18px;
  }

  .swiper {
    width: 100%;
  }
}






