@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f6f6f6;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(2px);
  padding: 10px;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img.logo1 {
  height: 50px;
}

.logo img.logo2 {
  height: 30px;
}

nav ul li{
  list-style: none;
}

.menu {
  list-style: none;
  display: flex;
}

.menu li {
  position: relative;
}

.menu li a {
  color: #000000;
  text-decoration: none;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  transition: 0.3s ease;
  line-height: 1.9;
}

.menu li a.active {
  color: #8B0000;
  font-weight: 700;
}

.menu li a:hover {
  /* color: #E5AC19; */
  color: #8B0000;
}

.menu li a i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.menu li:hover > a i.fa-chevron-right {
  transform: rotate(90deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgb(255, 255, 255);
  min-width: 180px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.menu li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  position: relative;
}

.dropdown li a {
  color: #000000;
  padding: 10px;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.dropdown li a:hover {
  background-color: #f5f5f5;
  /* color: #E5AC19; */
  color: #8B0000;
}

.dropdown .dropdown {
  top: 0;
  left: 100%;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: all 0.3s ease;
}

.dropdown li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a i.fa-chevron-right {
  transition: transform 0.3s ease;
}

.dropdown li:hover > a i.fa-chevron-right {
  transform: rotate(90deg);
}

header.scrolled {
  background: rgba(187, 187, 187, 0.768);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  border-bottom: 2px solid black;
}

.hero {
  position: relative;
  background: url('../img/bg_new.jpg') no-repeat center center/cover;
  height: 100vh;
  width: 100%;
  z-index: 2;
}


.overlay {
  position: absolute;
  background: #d8000000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.hero-content {
  height: 80vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}

.hero-content h1 {
  color: #000000;
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  color: #fdfdfd;
  font-size: 20px;
  margin-bottom: 30px;
  background-color: #8b0000a6;
  padding: 10px 50px;
  list-style: 1.9;
  border-radius: 20px;
  /* text-transform: lowercase; */
}

.halaman-table {
  margin: 30px 0px;
}

.table-container {
  width: 100%;
  overflow-x: auto;
}

.table-alumni {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  overflow: hidden;
}

.table-alumni thead {
  background: #8B0000;
  color: white;
  text-align: center;
}

.table-alumni th {
  padding: 10px;
  border: 1px solid #8B0000;
}

.table-alumni td {
  padding: 10px;
  text-align: center;
  border: 1px solid #8B0000;
}

.table-alumni tbody tr:hover {
    background: #f1f1f1;
    transition: 0.2s;
}

.buttons {
  display: flex;
  justify-content: center;
}

.btn-outline {
  /* border: 1px solid #D4AF37; */
  padding: 10px 50px;
  border-radius: 30px;
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  background-color: #e5ac19;
  /* background-color: #D4AF37; */
}

.btn-outline:hover {
  color: #fff;
  background-color: #8B0000;
  box-shadow: 0 6px 18px #E5AC19;
}

.orange-line {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.halaman-map {
  margin-top: 30px;
  width: 100%;
  height: 50vh;
  border: 2px solid black;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.halaman-map h1{
  background: white;
  padding: 10px 20px;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1000;
  font-size: 12px;
}

#map {
  height: 100%;
  width: 100%;
}

.legend {
  background: white;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1000;
  font-size: 15px;
}

.legend table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
    
.legend th, .legend td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.legend th {
  background-color: #f2f2f2;
}

.legend strong {
  color: #8B0000;
  cursor: pointer;
}

/* Start */
/* Wa Style */
.wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.wa a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

/* Halaman Isi */
.halaman-bawah {
  padding: 0px 50px;
  min-height: 200px; 
  overflow-x: hidden;
}

.halaman-banner{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 50vh;          
  overflow: visible;
  margin: auto;
}

.item {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;          
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.7s ease, opacity 0.5s ease, filter 0.5s ease;
  transform-origin: center center;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.item.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
  z-index: 10;
  filter: none;
}

.item.next {
  opacity: 0.5;
  pointer-events: none;
  transform: translateX(calc(100% - 50%)) scale(0.8) rotateY(-15deg);
  z-index: 5;
  filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.item.prev {
  opacity: 0.5;
  pointer-events: none;
  transform: translateX(calc(-100% - 50%)) scale(0.8) rotateY(15deg);
  z-index: 5;
  filter: blur(6px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

#prev, #next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.623);
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  border-radius: 10%;
  z-index: 20;
}

#prev { left: 20px; }
#next { right: 20px; }

button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.halaman-aboutus {
  display: flex;
  justify-content: center;
  align-items: stretch; 
  flex-wrap: wrap;
  margin-top: 100px;
}

.halamangambarus {
  position: relative;
  width: 50%;
  min-height: 300px;
  box-sizing: border-box;
}

/* Kotak biru kiri atas */
.box-blue-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-left: 3px solid black;
  border-top:  3px solid black;
  z-index: 1;
}

/* Kotak biru kanan bawah */
.box-blue-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-right: 3px solid black;
  border-bottom:  3px solid black;
  z-index: 1;
}

/* Kotak merah dengan gambar */
.box-red-center {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  z-index: 2;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-red-center img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.halaman-tulisanus {
  width: 50%;
  padding: 0 20px;
  color: #000000;
}

.halaman-tulisanus .judul-us{
  font-size: 30px;
  text-align: center;
  padding: 10px;
  border-bottom: 3px solid #000000;
  border-top: 3px solid #000000;
  color: #8B0000;
  margin-bottom: 20px;
}

.halaman-tulisanus p{
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 30px;
}

.halaman-tulisanus .tombolseeus{
  display: inline-block;
  margin-top: 10px;
  text-align: center;
  padding: 10px;
  /* background-color: #E5AC19; */
  background-color: #8B0000;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.halaman-tulisanus .tombolseeus:hover{
  background-color: #003087;
  box-shadow: 0 6px 18px #E5AC19;
}

.news-section {
  margin-top: 100px;
  padding: 20px;
}

.section-title {
  font-size: 30px;
  text-align: left;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 5px solid #8B0000;
  font-weight: bold;
  color: #8B0000;
}

.detail-judul {
  font-size: 1.1em;
  line-height: 1.7;
  color: #4a4a4a;
  text-align: justify;
  margin-bottom: 30px;
}

.see-more-container {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.see-more-container a {
  /* background-color: #E5AC19; */
  background-color: #8B0000;
  padding: 10px 50px;
  color: #ffffff;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  /* box-shadow: 0 5px 10px rgb(0, 0, 0); */
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}


.see-more-container a:hover {
  transform: translateY(-2px);
  background-color: #003087;
  box-shadow: 0 6px 18px #E5AC19;
}

.event {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.event-card {
  display: flex;
  flex-direction: column; 
  height: 100%; 
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px #000000;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  position: relative;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-image-container {
  position: relative;
}

.event-image-wrapper {
  width: 100%;
  height: 250px; 
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.triangle-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: #8B0000;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}

.date-text {
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 2;
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.event-overlay {
  position: absolute;
  text-align: center;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  width: 100%;
  color: white;
  padding: 10px;
}

.event-overlay h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.event-description {
  line-height: 1.5;
  text-align: justify;
  padding: 10px;
  font-size: 14px;
  color: #6e6e6e;
}

.halaman-curikulum {
  margin-top: 100px;
}

.halaman-curikulum .judul-halaman {
  margin-bottom: 50px;
}

.halaman-curikulum .judul-halaman h1 {
  border-left: 5px solid #8B0000;
  font-size: 30px;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #8B0000;
}

.halaman-detail-curikulum {
  text-align: justify;
}

.halaman-curikulum p {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.judul-halaman-campion p {
  margin-top: 50px;
  margin-bottom: 20px;
}

.highlight {
  font-weight: 500;
  color: #8B0000;
  margin-left: 5px;
}

.champions-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
}

.champion-card {
  box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.664);
  background: #8B0000;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.champion-card:hover {
  transform: translateY(-8px);
}

.gambarcampions {
  background-color: #921111;
  height: 200px; 
  overflow: hidden;
}

.gambarcampions img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.card-content {
  padding: 10px;
}

.card-content h3 {
  font-size: 15px;
  color: #ffffff;
}

.card-curikulum {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card-curikulum .card-curikulum-display {
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  overflow: hidden;
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.305);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card-curikulum .card-curikulum-display:hover {
  transform: translateY(-5px);
}

.image-container-curikulum {
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  height: 250px; 
}

.image-container-curikulum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-curikulum-display h3 {
  background-color: #00775F;
  color: white;
  text-align: center;
  padding: 5px;
  font-size: 25px;
}

.card-curikulum-display p {
  font-size: 0.95rem;
  color: #555;
  margin: 10px 20px 0px;
  text-align: justify;
  flex-grow: 1;
}

.card-curikulum-display .btn {
  display: block;
  border-radius: 30px;
  padding: 10px;
  margin: 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  text-align: center;
  transition: background-color 0.3s ease;
}


.card-curikulum-display .btn:hover {
  background-color: #0056b3;
}

.embet-ig {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  gap: 20px;
  flex-wrap: wrap;
}

.embed-container {
  border-radius: 20px;
  box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.305);
  padding: 20px;
  overflow: auto;
  max-width: 650px;

  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.embed-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.embed-container h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.styled-embed,
.tiktok-embed {
  width: 100% !important;
  border-radius: 12px;
  overflow: hidden;
}

#load-tiktok-embed {
  padding: 10px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  /* background-color: #E5AC19; */
  background-color: #8B0000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

#load-tiktok-embed:hover {
  background-color: #003087;
  box-shadow: 0 6px 18px #E5AC19;
}

#load-tiktok-embed:active {
  background-color: #1565c0; 
  transform: translateY(2px); 
}

#load-tiktok-embed:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

.review-rating-page {
  background-color: #00f2b6;
  padding: 60px 20px;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.badge {
  background-color: #e9f0ff;
  color: #5b5fef;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  color: #444;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}


/* User Info */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.user-info strong {
  font-weight: 600;
  font-size: 15px;
  color: #111;
}

.user-info p {
  font-size: 13px;
  color: #777;
  margin-top: 2px;
}

/* See More */
.see-more-container {
  text-align: center;
  margin-top: 60px;
}

.see-more-button {
  background-color: #5b5fef;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.see-more-button:hover {
  background-color: #4047d4;
}

.halaman-infosekolah{
  margin-top: 100px;
}

.halaman-infosekolah h1{
  margin-bottom: 20px;
  background-color: #8B0000;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid #8B0000;
  text-align: center;
  color: #FFF;
  margin-bottom: 30px;
}

.school-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.stat-card {
  width: 300px;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 2px 8px 5px rgba(0, 0, 0, 0.726);
  text-align: center;
}

.stat-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #003087;
}

.stat-number {
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.stat-title {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

  
.footer {
  margin-top: 50px;
  background-color: #6e6e6e89;
  padding: 30px 20px;
  color: #333;
}

.footer-top {
  position: relative; 
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #000000;
  padding-bottom: 50px; 
}

.footer-brand {
  max-width: 400px;
  flex: 1 1 400px;
  margin-right: 40px;
}

.logo-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.logos1 {
  width: 250px;
  height: auto;
  display: block;
}

.logos {
  width: 100px;
  height: auto;
  display: block;
}

.footer-brand h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-brand p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: justify;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  color: #333;
}

.contact-item i {
  color: #8B0000;
  font-size: 18px;
  min-width: 24px;
  text-align: center;
}

.contact-item a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item p {
  margin: 0;
}

.footer-links {
  flex: 1 1 160px;
  min-width: 160px;
}

.footer-social {
  flex: 1 1 175px;
  min-width: 175px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 18px;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 15px;
}

.footer-links ul li a:hover {
  color: #8B0000;
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 22px;
  color: #333;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #8B0000;
}

.footer-logos {
  position: absolute;
  right: 0;
  bottom: 10px; 
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-logos img {
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logos img:hover {
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 20px;
  cursor: pointer;
  color: #000;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px; 
  height: 100vh;
  background-color: #ffffff;
  color: #fff;
  transition: right 0.3s ease;
  z-index: 1001;
  padding: 20px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar-header h2 {
  font-size: 20px;
  color: #000000;
  font-weight: bold;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: #ff0000;
  font-size: 24px;
  cursor: pointer;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 20px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-links a:hover {
  background-color: #000000;
  color: #fff;
}

.sidebar-links a.active {
  background-color: #ff0000;
  color: #fff;
}

/* Dropdown Styles */
.sidebar-dropdown .sidebar-submenu {
  display: none;
  margin-top: 10px;
  padding-left: 20px;
}

.sidebar-dropdown.open .sidebar-submenu {
  display: block;
}

.sidebar-submenu li {
  margin-bottom: 10px;
}

.sidebar-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-dropdown i {
  transition: transform 0.3s ease;
}

.sidebar-dropdown.open i {
  transform: rotate(180deg);
}

/* Sidebar - Icons */
.sidebar-links a i {
  margin-right: 10px;
}

/* Overlay */
.overlay-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.overlay-sidebar.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-submenu,
.submenu-news {
  list-style: none;
  padding-left: 20px;
  display: none; 
  margin: 0;
}

.sidebar-links a {
  text-decoration: none;
  color: #000;
  padding: 8px 15px;
  display: block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sidebar-links a:hover {
  background-color: #000000;
}

.sidebar-dropdown.open > .sidebar-submenu {
  display: block;
}

.sidebar-dropdown-sub.open > .submenu-news {
  display: block;
}

.sidebar-links a i {
  float: right;
  transition: transform 0.3s ease;
}

.dropdown-toggle-sub{
  display: flex;
  justify-content: space-between;
}

.sidebar-dropdown.open > a.dropdown-toggle i,
.sidebar-dropdown-sub.open > a.dropdown-toggle-sub i {
  transform: rotate(90deg);
}

.sidebar-links a.active,
.sidebar-links a.active-parent {
  background-color: #000000;
  color: #D4AF37;
  font-weight: 600;
}


.halaman-ey{
  background-image: url(../img/oop.png);
  width: 100%;
  height: 20vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* z-index: -1; */
}

.halaman-isi-ey{
  padding: 20px;
}

.halaman-judul-ey {
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: none;
  color: #8B0000;
  font-weight: 500;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #a61b1b; 
}

.breadcrumb span {
  color: #333;
  font-weight: 500;
}

.section-title-ey {
  margin: 40px 0;
}

.section-title-ey h1 {
  font-size: 2rem;
  color: #8B0000;
  border-left: 5px solid #8B0000;
  padding-left: 20px;
}

.section-title-ey-1 {
  text-align: center;
  margin-top: 100px;
}

.section-title-ey-2 {
  margin-top: 100px;
}

.section-title-ey-2 h1 {
  background-color: #8B0000;
  padding: 10px;
  text-align: center;
  color: #ffff;
  border-radius: 30px;
}

.section-title-ey-1 h1 {
  font-size: 2rem;
  color: #D4AF37;
}

/* Faq Style */
.faq-container {
  width: 80%;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-question {
  background-color: #D4AF37;
  color: #fff;
  padding: 16px 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #595959;
}

.faq-answer {
  background-color: #fff;
  color: #333;
  padding: 15px 20px;
  display: none;
  border: 1px solid #D4AF37;
  border-top: none;
  line-height: 1.6;
  border-radius: 0px 0px 20px 20px;
}

.faq-answer ul{
  margin-left: 20px;
  line-height: 1.9;
}

.faq-answer .nav-text{
  line-height: 1.9;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i::before {
  content: "\f068"; 
}

.faq-question i {
  margin-left: 10px;
}

.halaman-history{
  font-size: 15px;
  line-height: 1.9;
  text-align: justify;
}

.halaman-history-2{
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.9;
  text-align: justify;
}

.profile-school {
  display: flex;
  align-items: stretch; /* ini penting agar gambar dan tulisan punya tinggi yg sama */
  justify-content: left;
  gap: 30px;
  margin-top: 100px;
  flex-wrap: wrap;
}

/* Kotak gambar akan mengikuti tinggi tulisan */
.profile-school .gambar {
  width: 40%;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

/* Gambar full memenuhi kotak, rasio bagus */
.profile-school .gambar img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  border-radius: 10px;
}

/* Tulisan */
.profile-school .detail-school-profile h1{
  font-size: 30px;
  padding: 5px;
  border-radius: 30px;
  text-align: center;
  border: 2px solid black;
  margin-bottom: 30px;
}

.profile-school .detail-school-profile {
  flex: 1 1 55%;
  max-width: 55%;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

.school-values {
  margin-top: 100px;
  text-align: left;
}

.school-values h2 {
  font-size: 20px;
  margin-bottom: 30px;
  color: #333;
}

.school-values span{
  margin-left: 10px;
  color: red;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.value-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-card h3 {
  background-color: #D4AF37;
  padding: 10px;
  border-radius: 20px;
  text-align: center;
  font-size: 20px;
  color: #000000;
  margin-bottom: 30px;
}

.value-card p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  text-align: center;
}

.vision-mission-motto.enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 100%;
  margin-top: 50px;
}

.vmm-card {
  position: relative;
  border-radius: 10px;
  padding: 30px 20px 20px; 
  margin-top: 30px;
}

.vmm-header h3 {
  position: absolute;
  top: -20px; 
  left: 20px; 
  background: #f0b400; 
  color: #003087;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 50px;
  border-radius: 5px;
  margin: 0;
}

.vmm-card:hover {
  transform: translateY(-5px);
}

.vmm-card.vision,
.vmm-card.mission {
  background: #8B0000; 
  color: #fff;
}

.vmm-card.vision p {
  margin-top: 20px;
  color: #fff;
  line-height: 1.5;
  
}

.vmm-card.mission ul li {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.5;
  text-align: justify;
}

.vmm-card.motto {
  background: #f0b400; 
  color: #003087;
}

.vmm-card.motto p {
  margin-top: 10px;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.vmm-card.motto p strong {
  display: block;
  margin-top: 10px;
  font-weight: 700;
}

.vmm-header-moto h3 {
  position: absolute;
  top: -20px; 
  left: 20px; 
  background: #003087; 
  color: #e5ac19;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 50px;
  border-radius: 5px;
  margin: 0;
}

.brochure-section {
  margin-top: 100px;

  text-align: center;
}

.brochure-section h2 {
  font-size: 30px;
  margin-bottom: 40px;
  background-color: #8B0000;
  /* background-color: #D4AF37; */
  padding: 10px;
  border: 1px solid black;
  border-radius: 50px 0px 50px 0px;
  color: #ffffff;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 100%;
}

.brochure-card {
  background-color: #fff;
  /* border-left: 5px solid #D4AF37; */
  border-left: 5px solid #8B0000;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.brochure-card:hover {
  transform: translateY(-5px);
}

.brochure-card h3 {
  font-size: 18px;
  color: #8B0000;
  margin-bottom: 15px;
}

.download-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8B0000;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
  background-color: #003087;
  box-shadow: 0 6px 18px #E5AC19;
}

/* Exskul */
.why-stjb1 {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px; */

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.why-card1 {
  background-color: white;
  border-radius: 20px;

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.685);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.why-card1:hover {
  transform: translateY(-5px);
}

.why-card1 h4 {
  text-align: center;
  padding: 10px;
  background-color: #8B0000;
  color: #ffffff;
}

.image-container1 {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.image-container1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ceo Style */
.container-ceo {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
  align-items: stretch; 
}

.container-ceo1 {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
  align-items: stretch; 
}

.photo-ceo {
  flex: 1;
  max-width: 500px;
  border-radius: 20px;
}

.photo-ceo img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
  border-radius: 10px;
  box-shadow: 5px 5px 5px 0px #0000004d;
}

.message-ceo {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 1rem;
  line-height: 1.8;
  padding: 0 10px;
}

.message-ceo p {
  text-align: justify;
  margin: 0;
}

.signature-ceo {
  margin-top: 30px;
}

.signature-ceo h3{
  color: #8B0000;
}

.signature h3 {
  margin: 0;
  color: #d62828;
  font-weight: 700;
  font-size: 1.2rem;
}

.signature-ceo span{
  margin-left: 10px;
}

.signature-ceo p {
  font-weight: 500;
  color: #666;
  font-size: 0.95rem;
  margin-top: 5px;
}

.halaman-kurikulum-tulisan p {
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
  color: #333;
  font-size: 16px;
}

.halaman-kurikulum-tulisan h2 {
  color: #000000;
  font-size: 24px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.btn-download {
  display: inline-block;
  background-color: #8B0000; 
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
}

.btn-download:hover {
  background-color: #003087;
  box-shadow: 0 6px 18px #E5AC19;
}

.halaman-kurikulum-tulisan ul {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.halaman-kurikulum-tulisan ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

.halaman-kurikulum-tulisan ul.sub-info {
  list-style-type: circle;
  margin-top: 10px;
  padding-left: 20px;
}

.halaman-kurikulum-tulisan ul.sub-info li {
  color: #444;
}

.halaman-kurikulum-tulisan ul.syarat {
  list-style-type: circle;
  padding-left: 20px;
  margin-top: 10px;
}

.halaman-kurikulum-tulisan ul.syarat li {
  color: #444;
}

.halaman-buku table {
  width: 100%;
  border-collapse: collapse;
}

.halaman-buku td {
  padding: 10px;
  border: 1px solid #000000;
}

.halaman-buku th {
  background-color: #8B0000;
  color: #ffff;
  text-align: center;
  padding: 10px;
  border: 1px solid #000000;
}

.prenursery-info {
  max-width: 900px;
  margin: 80px auto;
  padding: 30px 20px;
}

.info-card {
  background-color: #f9fdfc;
  border-left: 6px solid #00775F;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00775F;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.info-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.info-card ul li {
  margin-bottom: 8px;
  font-size: 15.5px;
  color: #444;
}

.activities-cards {
  margin-top: 100px;
  max-width: 100%;
  text-align: center;
}

.activities-cards h2 {
  border: 2px solid black;
  padding: 10px;
  font-size: 25px;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 700;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
}

.activity-card {
  background-color: #8B0000;
  color: white;
  font-weight: 600;
  font-size: 18px;
  border-radius: 15px;
  padding: 25px 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  cursor: default;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.25s ease;
}

/* Form kontak tengah full width max 600px */
.contact-container {
  max-width: 100%;
}

.contact-info-map {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: stretch; 
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 10%;
  border: 2px solid #000000;
  background: #fff;
  border-radius: 20px;      
  min-width: 300px;
  overflow: hidden;
}

.contact-info h3 {
  background-color: #D4AF37;
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
  color: #ffffff;
}

.info-list {
  list-style: none;
  padding: 0px 20px;
  line-height: 30px;
}

.info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
}

.info-list li i {
  color: rgb(0, 0, 0);
  margin-right: 20px;
  font-size: 18px;
  min-width: 24px;
  text-align: center;
}

.contact-map {
  flex: 1 1 50%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  min-width: 300px;
  overflow: hidden;
  border: 2px solid #000000;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 0px;
  display: block;
}

.contact-form {
  background: #fff;
  margin-top: 100px;
  border-radius: 20px;
  border: 2px solid black;
  width: 100%;
  padding: 30px;
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #000000;
  text-align: center;
  font-size: 25px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  resize: vertical;
}

.contact-form button {
  background-color: #D4AF37;
  color: white;
  padding: 10px;
  font-size: 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #575757;
}

.section-profile a{
  text-decoration: none;
}

.team-section {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 40px;
  padding: 0 20px;
}

.team-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: 0.3s;
  
  padding: 20px;
  gap: 20px;
  border: 1px solid #ccc;

  flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Gambar kiri */
.team-image {
  flex-shrink: 0;
  width: 300px;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* Info tim */
.team-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-info h3 {
  font-size: 1.2rem;
  color: #1d3557;
  margin-bottom: 6px;
}

.team-info .position {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 10px;
}

.team-info .kata-motivation {
  font-size: 15px;
  color: #444;
  margin-top: 20px;
  line-height: 1.5;
  text-align: justify;
}

/* Sosial media */
.socials {
  margin-top: 15px;
}

.socials i {
  margin-right: 10px;
  font-size: 1rem;
  color: #0077b6;
  cursor: pointer;
  transition: 0.3s;
}

.socials i:hover {
  color: #023e8a;
}

.halaman-head-karir {
  display: flex;
  justify-content: center;
}

.search-form {
  display: flex;
  gap: 0;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #000000;
}

.search-input {
  flex: 2;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-select {
  flex: 1;
  border: none;
  border-left: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
}

.search-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.search-button:hover {
    background-color: #0056b3;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.job-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-social {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;

}

.company-logo {
  height: 60px;
}

.social-icons {
  display: flex;
}

.social-icons a {
  font-size: 20px;
  color: #000000;
  transition: color 0.2s;
}

.social-icons a.whatsapp:hover {
  color: #25D366;
}

.social-icons a.instagram:hover {
  color: #E1306C;
}

.social-icons a.youtube:hover {
  color: #FF0000;
}

.judul-job{
  width: 100%;
  padding: 10px;
  border: 1px solid black;
  border-radius: 20px;
  margin-bottom: 10px;
}

.judul-job h3 {
  text-align: center;
  font-size: 18px;
}

.company-aja{
  width: 100%;
  margin-bottom: 10px;
}

.company-aja p {
  color: #0056b3;
  text-align: center;
  margin-bottom: 20px;
}



.info {
    font-size: 14px;
    color: #555;
    
}

.info i{
  margin-right: 10px;
  margin-bottom: 10px;
}

.card-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    gap: 10px;
    margin-top: 10px;
}

.btn-detail {
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  color: black;
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  font-weight: bold;
  border: 1px solid #ddd;
  cursor: pointer;
}

.btn-apply {
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  color: black;
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  font-weight: bold;
  border: 1px solid #ddd;
  cursor: pointer;
}

.btn-detail {
    background: #fff;
}

.btn-apply {
    background: #007bff;
    color: white;
    border: none;
}

.btn-apply:hover {
    background: #0056b3;
}


.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
}

.news-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  border: 1px solid black;
  height: 100%;
  min-height: 300px;
  text-decoration: none;
  overflow: hidden;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.quote-mark {
  font-size: 30px;
  color: #d32f2f;
  margin-bottom: 10px;
}

.news-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  flex-grow: 1;
}

.source {
  margin-top: 16px;
  font-size: 14px;
  color: #d32f2f;
  font-weight: 600;
}

.article-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  margin-bottom: 60px;
  border-radius: 12px;
}

.article-header {
  margin-bottom: 24px;
}

.article-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.article-meta {
  font-size: 14px;
  color: #777;
}


.section-book-view {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.section-book-view .card {
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
  border: 1px solid black;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;    
}
  
.section-book-view .cover-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.section-book-view .cover-container img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: transform 0.5s ease;
}

.section-book-view .card:hover .cover-container img {
  transform: scale(1.05);
}
  
.section-book-view .title-bar {
  background: #8B0000;
  color: white;
  font-weight: 600;
  font-size: 20px;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.03em;
}
  
.section-book-view .info-penulis {
  display: flex;
  gap: 18px;
  padding: 20px;
  color: #000000;
}
  
.section-book-view .info-penulis img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
}
  
.section-book-view .info-penulis .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:10px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}

.section-book-view .info-penulis .text div:nth-child(1) {
  font-size: 1.1rem;
  color: #222;
}

.section-book-view .info-penulis .text div:nth-child(2),
.section-book-view .info-penulis .text div:nth-child(3) {
  color: #666;
  font-weight: 500;
}

.section-book-view .btn-lihat {
  display: block;
  background: #003087;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  margin: 20px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 4px 12px #E5AC19;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.section-book-view .btn-lihat:hover {
  background: #E5AC19;
  box-shadow: 0 6px 16px rgba(230, 126, 0, 0.6);
}

.card-container-kelas-materi {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.card-container-kelas-materi .card {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid black;
  width: 350px;
  max-width: 100%;
}

.card-container-kelas-materi .card h1{
  font-size: 20px;
  background-color: #8B0000;
  padding: 10px;
  border-radius: 50px;
  margin-bottom: 30px;
  color: #ffff;
  text-align: center;
}

.card-container-kelas-materi .card h3 {
  font-size: 18px;
  margin-bottom: 0px;
  text-align: center;
}

.card-container-kelas-materi .card .mon {
  font-size: 15px;
  margin-bottom: 10px;
  text-align: center;
}

.card-container-kelas-materi .card ul{
  margin-bottom: 0px;
  margin-left: 20px;
}

.card-container-kelas-materi .card ul li{
  font-size: 14px;
  padding-bottom: 0px;
  margin-bottom: 5px;
}

/* Resolusi 1030px */
@media (max-width: 1030px) {
  nav{
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 25px;
    cursor: pointer;
    color: #000000;
    margin-right: 10px;
  }

  .halaman-infosekolah{
    margin-top: 100px;
  }

  .halaman-infosekolah h1{
    margin-bottom: 50px;
    text-align: center;
  }

  .school-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .card-curikulum .card-curikulum-display {
    max-width: 90%;
  } 

  .embed-container {
    max-width: 100%;
    overflow: auto;
  }

  .section-title-ey h1 {
    font-size: 2rem;
    color: #000000;
  }

   .container-ceo {
    flex-direction: column; 
    align-items: center; 
    gap: 30px; 
  }

  .photo-ceo {
    max-width: 100%; 
    width: 90%;
  }

  .message-ceo {
    width: 100%;
    padding: 0 20px;
    font-size: 0.95rem; 
  }

  .message-ceo p {
    text-align: left; 
  }

  .signature-ceo {
    margin-top: 30px;

  }


  .why-stjb1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  }

@media (max-width: 800px){
  .section-book-view {
    grid-template-columns: 1fr; 
    gap: 16px;
    padding: 0 10px;
  }

  .section-book-view .card {
    max-width: 100%;
    border-radius: 8px;
  }

  .section-book-view .cover-container {
    height: 200px;
  }

  .section-book-view .title-bar {
    font-size: 16px;
    padding: 8px;
  }

  .section-book-view .info-penulis {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
  }

  .section-book-view .info-penulis img {
    width: 60px;
    height: 80px;
  }

  .section-book-view .info-penulis .text {
    gap: 6px;
    font-size: 0.9rem;
  }

  .section-book-view .info-penulis .text div:nth-child(1) {
    font-size: 1rem;
  }

  .section-book-view .btn-lihat {
    margin: 12px auto;
    padding: 8px 12px;
    font-size: 1rem;
    width: 90%;
  }

  .halaman-aboutus {
    flex-direction: column;
    margin-top: 50px;
  }

  .halamangambarus {
    width: 100%;
    min-height:350px;
  }

  .box-blue-top-left {
    width: 100px;
    height: 100px;
  }

  .box-blue-bottom-right {
    width: 100px;
    height: 100px;
  }

  .halaman-tulisanus {
    width: 50%;
    padding: 30px 20px 0;
    color: #000000;
    width: 100%;
  }

  .halaman-tulisanus .judul-us{
    font-size: 30px;
    border-left: 3px solid #8B0000;
    text-align: left;
    
    padding: 10px 20px;
    border-bottom: 0px solid #000000;
    border-top: 0px solid #000000;
    color: #8B0000;
    margin-bottom: 20px;
  }

  .halaman-tulisanus p{
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 30px;
  }

  .champions-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
  }

  .section-title-ey-2 h1 {
    font-size: 20px;
    
  }
}

@media (max-width: 500px) {
  nav{
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 25px;
    cursor: pointer;
    color: #000000;
    margin-right: 10px;
  }

  .hero-content {
    height: 100vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
  }

  .hero-content h1 {
    color: #000000;
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .hero-content p {
    color: #fdfdfd;
    font-size: 13px;
    margin-bottom: 30px;
    background-color: #8b0000a6;
    padding: 10px;
    list-style: 0;
    border-radius: 20px;
    text-transform: lowercase;
  }

  .halaman-infosekolah{
    margin-top: 50px;
  }

  .halaman-infosekolah h1{
    font-size: 20px;
    margin-bottom: 20px;
  }

  .halaman-aboutus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch; 
    flex-wrap: wrap;
    margin-top: 100px;
  }

  .halaman-aboutus {
    flex-direction: column;
  }

  .halamangambarus {
    margin-bottom: 30px;
    width: 100%;
  }

  .halaman-tulisanus {
    width: 100%;
  }
  
  .judul-us {
    font-size: 20px;
    padding: 0 5px;
  }

  .section-title-ey h1 {
    font-size: 20px;
    color: #000000;
  }

  .halaman-curikulum .judul-halaman h1 {
    border-left: 5px solid #8B0000;
    font-size: 20px;
    padding-left: 20px;
    margin-bottom: 0px;
    color: #8B0000;
  }

  .champions-container {
    grid-template-columns: 1fr; 
    gap: 20px; 
  }

  .profile-school {
    flex-direction: column;
  }

  .profile-school .gambar,
  .profile-school .detail-school-profile {
    width: 100%;
    max-width: 100%;
  }

  .profile-school .gambar {
    height: 250px;
  }

  .profile-school .gambar img {
    object-fit: cover;
  }

  .container-ceo {
    flex-direction: column;
  }

  .why-stjb1 {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-image {
    width: 100%;
    height: 200px;
  }

  .team-info {
    align-items: center;
  }

  .team-info .kata-motivation {
    text-align: center;
  }

  .section-book-view {
    grid-template-columns: 1fr; /* Satu kolom saja */
    gap: 16px;
    padding: 0 10px;
  }

  .section-book-view .card {
    max-width: 100%;
    border-radius: 8px;
  }

  .section-book-view .cover-container {
    height: 200px;
  }

  .section-book-view .title-bar {
    font-size: 16px;
    padding: 8px;
  }

  .section-book-view .info-penulis {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
  }

  .section-book-view .info-penulis img {
    width: 60px;
    height: 80px;
  }

  .section-book-view .info-penulis .text {
    gap: 6px;
    font-size: 0.9rem;
  }

  .section-book-view .info-penulis .text div:nth-child(1) {
    font-size: 1rem;
  }

  .section-book-view .btn-lihat {
    margin: 12px auto;
    padding: 8px 12px;
    font-size: 1rem;
    width: 90%;
  }
  
  .section-title-ey-2 {
    margin-top: 70px;
  }
}

@media (max-width: 380px) {
  .logo img.logo1 {
    height: 30px;
  }

  .logo img.logo2 {
    height: 20px;
  }

  nav{
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 20px;
    cursor: pointer;
    color: #000000;
    margin-right: 10px;
  }

  .wa {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10;
  }

  .wa a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .halaman-head-karir {
    display: flex;
    justify-content: center;
  }

  .search-input {
    padding: 10px;
    font-size: 12px;
  }

  .search-select {
    flex: 1;
    border: none;
    border-left: 1px solid #ddd;
    padding: 10px;
    font-size: 12px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
  }

  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
  }

  .company-logo {
    height: 40px;
  }


  .social-icons a {
    font-size: 15px;
  }

  .judul-job{
    width: 100%;
    padding: 5px;
  }

  .judul-job h3 {
    text-align: center;
    font-size: 15px;
  }

  .company-aja{
    width: 100%;
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 13px;
  }

  .info {
    font-size: 13px;
  }

  .btn-apply {
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    color: rgb(255, 255, 255);
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    font-weight: bold;
    border: 1px solid #ddd;
    cursor: pointer;
  }

  .logos1 {
    width: 200px;
    height: auto;
    display: block;
  }

  .logos {
    width: 50px;
    height: auto;
    display: block;
  }

  .footer-brand h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-brand p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: justify;
  }

  .contact-item i {
    font-size: 18px;
  }

  .contact-item a {
    font-size: 12px;
  }

  .contact-item a:hover {
    text-decoration: underline;
  }

  .contact-item p {
    margin: 0;
  }

  .footer-links h4,
  .footer-social h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 13px;
  }

  .search-select {
    display: none;
  }

  .card-container {
    grid-template-columns: 1fr; 
    gap: 10px;            
    padding: 10px;  
  }

  .hero-content {
    height: 90vh;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.5;
  }

  .hero-content p {
    font-size: 15px;
  }

  .halaman-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
  }

  .item img {
    object-fit: fill;
  }

  .halaman-infosekolah{
    margin-top: 50px;
  }

  .halaman-infosekolah h1{
    border-radius: 20px 20px 0px 0px;
    font-size: 20px;
  }

  .school-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }

  .halaman-map h1{
    padding: 10px;
    font-size: 10px;
  }

  .legend {
    font-size: 10px;
  }

  .legend table {
    font-size: 10px;
  }
    
  .halaman-aboutus {
    flex-direction: column;
    margin-top: 100px;
  }

  .halamangambarus {  
    width: 100%;
  }

  .box-red-center img {
    object-fit: fill; 
  }

  .halaman-tulisanus {
    width: 100%;
  }

  .halaman-tulisanus .judul-us{
    font-size: 30px;
  }

  .halaman-tulisanus p{
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .halaman-curikulum {
    margin-top: 50px;
  }

  .halaman-curikulum .judul-halaman h1 {
    font-size: 25px;
  }

  .halaman-curikulum p {
    line-height: 1.8;
    font-size: 13px;
    margin-bottom: 15px;
  }

  .champions-container {
    grid-template-columns: 1fr; 
    gap: 15px; 
  }

  .gambarcampions {
    height: 200px; 
  }

  .card-content h3 {
    font-size: 14px; /* sedikit kecilkan font agar muat */
  }

  .cards-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}