/**
* Template Name: Yummy
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #ce1212;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 15px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.section-header p {
  font-size: 40px;
  font-weight: 700;
  color: #0b2f61;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

.section-header p span {
  color: #0b2f61;
}

/* Garis pemisah antar menu utama */
.section-divider {
  border: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    to right,
    #0b2f61,
    #ffd700,
    #0b2f61
  );
  margin: 20px 0 50px;
  opacity: 1;
}

/* Judul isi submenu */
.sub-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.sub-section-title h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0b2f61;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.sub-section-title p {
  font-size: 16px;
  color: #888;
  margin: 0;
}

.section-header::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: #ffd700;
  margin: 18px auto 0;
  border-radius: 10px;
}

.sambutan .section-header::after {
  display: none;
} 

.sub-section-title h3 {
  font-size: 42px;
  font-weight: 700;
  color: #0b2f61;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.sub-section-title h3::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: #ffd700;
  margin: 15px auto 0;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background:#082b59;
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  height: 65px;
  width: auto;
  margin-right: 12px;
}

.school-name {
  display: flex;
  flex-direction: column;
}

.school-name h1 {
  font-size: 16px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.school-name small {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #0b2f61;
  background: #ffd700;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 700;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #0b2f61;
  background: #ffea00;
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: block;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #ffd54f;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  min-height: 500px;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 18, 18, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* ===== Sambutan Kepala Sekolah ===== */

.kepsek-img {
  width: 300px;
  height: 380px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #0b2f61;

  box-shadow:
    0 0 0 6px #ffd700,
    0 10px 25px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.kepsek-nama {
  color: #0b2f61;
  font-weight: 700;
  margin-bottom: 5px;
}

.kepsek-jabatan {
  color: #666;
  font-size: 15px;
}

.sambutan-box {
  background: rgba(255,255,255,0.98);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(11,47,97,0.12);
  box-shadow:
    0 15px 35px rgba(11,47,97,0.12);
}

.sambutan-box h3 {
  color: #0b2f61;
  font-weight: 700;
  margin-bottom: 20px;
}

.sambutan-box p {
  color: #444;
  line-height: 1.9;
  text-align: justify;
}

.kepsek-sign {
  margin-top: 25px;
  color: #0b2f61;
  font-size: 18px;
  font-weight: 700;
}

/* ==========================
   Sejarah Sekolah
========================== */

.sejarah-img {
  width: 100%;
  border-radius: 18px;
  border: 5px solid #ffd700;
  box-shadow:
    0 0 0 3px #0b2f61,
    0 15px 35px rgba(11, 47, 97, 0.25);
  transition: 0.3s ease;
}

.sejarah-img:hover {
  transform: translateY(-5px);
}

.sejarah-box {
  background: rgba(255,255,255,0.85);
  padding: 40px;
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(11, 47, 97, 0.12);
  backdrop-filter: blur(6px);
}

.sejarah-box h3 {
  color: #0b2f61;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sejarah-box p {
  color: #555;
  line-height: 1.9;
  text-align: justify;
}

/* ==========================
   VISI MISI
========================== */

.visi-misi-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(11, 47, 97, 0.12);
  margin-bottom: 20px;
}

.visi-misi-box h3 {
  color: #0b2f61;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.visi-misi-box p,
.visi-misi-box li {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
}

.visi-misi-box ul {
  padding-left: 25px;
}

.visi-misi-box li {
  margin-bottom: 12px;
}

.visi-misi-box li::marker {
  color: #ffd700;
}



/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 40px;
  background: #0b2f61;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(11, 47, 97, 0.15);
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(11, 47, 97, 0.12);
  transition: 0.3s;
}

.why-us .icon-box i {
  color: #0b2f61;
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: translateY(-8px);
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background:
    linear-gradient(
      rgba(11, 47, 97, 0.88),
      rgba(11, 47, 97, 0.88)
    ),
    url("../img/datastats.jpeg") center center;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 58px;
  display: block;
  color: #ffd700;
  font-weight: 700;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.stats-counter .section-header h2 {
  color: #ffd700;
}

.stats-counter .section-header p {
  color: #ffffff;
}

.stats-counter .section-header p span {
  color: #ffffff;
}

/* ==================================
   KURIKULUM MERDEKA
================================== */

.kurikulum {
  padding: 80px 0;
  background: #f8fafc;
}

.sub-header {
  text-align: center;
  margin-bottom: 50px;
}

.sub-header h3 {
  color: #0b2f61;
  font-size: 38px;
  font-weight: 700;
}

.yellow-line {
  width: 90px;
  height: 4px;
  background: #ffd700;
  margin: 15px auto 0;
  border-radius: 50px;
}

.kurikulum-img {
  border-radius: 20px;
  border: 5px solid #ffd700;
  box-shadow: 0 15px 35px rgba(11,47,97,.15);
}

.kurikulum-text {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  text-align: justify;
}

.kurikulum-card {
  background: #0b2f61;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(11,47,97,.15);
}

.kurikulum-card:hover {
  transform: translateY(-8px);
  background: #123d7a;
}

.kurikulum-card i {
  font-size: 45px;
  color: #ffd700;
  margin-bottom: 20px;
}

.kurikulum-card h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.kurikulum-card p {
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* ==================================
   PROJEK P5
================================== */

.p5 {
  padding: 80px 0;
}

.p5-row {
  margin-bottom: 80px;
}

.p5-img {
  width: 100%;
  height: 350px;
  object-fit: cover;

  border-radius: 20px;
  border: 5px solid #ffd700;

  box-shadow: 0 15px 35px rgba(11,47,97,.15);

  transition: .4s;
}

.p5-img:hover {
  transform: scale(1.03);
}

.p5-content {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;

  box-shadow:
    0 10px 30px rgba(11,47,97,.12);

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  transition: .3s;
}

.p5-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(11,47,97,.18);
}

.p5-content h3 {
  color: #0b2f61;
  font-weight: 700;
  margin-bottom: 15px;
}

.p5-content p {
  color: #666;
  line-height: 1.9;
  margin: 0;
  text-align: justify;
}

/* ==================================
   EKSTRAKURIKULER
================================== */

.eskul {
  padding: 80px 0;
}

.eskul-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: .35s;
  box-shadow: 0 10px 30px rgba(11,47,97,.12);
}

.eskul-card:hover {
  transform: translateY(-8px);
}

.eskul-img {
  position: relative;
  overflow: hidden;
}

.eskul-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: .4s;
}

.eskul-card:hover img {
  transform: scale(1.08);
}

.eskul-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,47,97,.75);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transition: .35s;
}

.eskul-card:hover .eskul-overlay {
  opacity: 1;
}

.eskul-overlay a {
  width: 70px;
  height: 70px;

  background: #ffd700;
  color: #0b2f61;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 34px;

  transition: .3s;
}

.eskul-overlay a:hover {
  transform: scale(1.15);
}

.eskul-info {
  padding: 22px;
  text-align: center;
}

.eskul-info h4 {
  color: #0b2f61;
  font-weight: 700;
  margin: 0;
  font-size: 20px;
}

@media (max-width: 768px) {
  .eskul-img img {
    height: 220px;
  }
}

/* ==================================
   PRESTASI
================================== */

.prestasi {
  padding: 80px 0;
  background: #f8fafc;
}

/* Statistik */

.prestasi-stat {
  background: #fff;
  text-align: center;
  padding: 35px 20px;
  border-radius: 20px;
  height: 100%;

  box-shadow:
    0 10px 30px rgba(11,47,97,.10);

  transition: .3s;
}

.prestasi-stat:hover {
  transform: translateY(-8px);
}

.prestasi-stat i {
  font-size: 45px;
  color: #ffd700;
  margin-bottom: 15px;
}

.prestasi-stat h3 {
  color: #0b2f61;
  font-weight: 700;
}

.prestasi-stat p {
  margin: 0;
  color: #666;
}

/* Prestasi Unggulan */

.prestasi-card {
  background: #0b2f61;
  color: #fff;

  padding: 35px;
  border-radius: 20px;
  text-align: center;
  height: 100%;

  box-shadow:
    0 10px 30px rgba(11,47,97,.15);

  transition: .3s;
}

.prestasi-card:hover {
  transform: translateY(-8px);
}

.prestasi-card i {
  font-size: 50px;
  color: #ffd700;
  margin-bottom: 15px;
}

.prestasi-card h4 {
  margin: 20px 0 15px;
  font-weight: 700;
}

.prestasi-card p {
  color: rgba(255,255,255,.85);
  margin: 0;
}

.badge-prestasi {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.badge-prestasi.akademik {
  background: #ffd700;
  color: #0b2f61;
}

.badge-prestasi.non {
  background: #ffffff;
  color: #0b2f61;
}

/* Timeline */

.timeline-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.timeline-badge.akademik {
  background: #ffd700;
  color: #0b2f61;
}

.timeline-badge.non {
  background: #0b2f61;
  color: #fff;
}

/* ==================================
   INFORMASI SEKOLAH
================================== */

.informasi {
  padding: 80px 0;
  background: #f8fafc;
}

/* ==================================
   INFO & KEGIATAN 
================================== */

#informasi .event-item {
  min-height: 550px;
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  border: 4px solid #ffd700;
}

#informasi .event-item::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(11,47,97,.95) 10%,
      rgba(11,47,97,.65) 45%,
      rgba(11,47,97,.15) 100%
    );
}

#informasi .event-item * {
  position: relative;
  z-index: 2;
}

.news-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffd700;
  color: #0b2f61;
  border-radius: 50%;
  font-size: 20px;
  transition: .3s;
}

.news-link:hover {
  background: #fff;
  transform: scale(1.1);
}

.news-date {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

#informasi .event-item h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#informasi .event-item .description {
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  margin-bottom: 0;
}

#informasi .swiper-pagination-bullet {
  background: #0b2f61;
}

#informasi .swiper-pagination-bullet-active {
  background: #ffd700;
}

/* ==================================
   PENGUMUMAN
================================== */

.pengumuman {
  padding: 80px 0;
  background: #fff;
}

.pengumuman-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  border: 2px solid #0b2f61;
  box-shadow: 0 10px 25px rgba(11,47,97,.08);
  transition: .3s;
}

.pengumuman-card:hover {
  transform: translateY(-8px);
}

.pengumuman-icon {
  width: 70px;
  height: 70px;
  background: #0b2f61;
  color: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.pengumuman-icon i {
  font-size: 30px;
}

.pengumuman-date {
  display: block;
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

.pengumuman-card h4 {
  color: #0b2f61;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pengumuman-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ==================================
   JEJAK ALUMNI
================================== */

.alumni {
  padding: 80px 0;
  background: #f8fafc;
}

.alumni .testimonial-item {
  background: #fff;
  border: 2px solid #0b2f61;
  border-left: 6px solid #ffd700;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(11,47,97,.10);
}

.alumni .testimonial-content p {
  color: #555;
  line-height: 1.9;
  font-style: italic;
}

.alumni .testimonial-content h3 {
  color: #0b2f61;
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
}

.alumni .testimonial-content h4 {
  color: #777;
  font-size: 16px;
}

.alumni .quote-icon-left,
.alumni .quote-icon-right {
  color: #0b2f61;
  font-size: 24px;
}

.alumni .testimonial-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ffd700;
  box-shadow: 0 10px 25px rgba(11,47,97,.15);
}

.alumni .swiper-pagination-bullet {
  background: #0b2f61;
}

.alumni .swiper-pagination-bullet-active {
  background: #ffd700;
}

/* ==================================
   RESPONSIVE
================================== */

@media (max-width: 768px) {

  #informasi .event-item {
    min-height: 450px;
    padding: 25px;
  }

  .alumni .testimonial-img {
    width: 130px;
    height: 130px;
  }

  .pengumuman-card {
    text-align: center;
  }

  .pengumuman-icon {
    margin: 0 auto 20px;
  }
}

/* ==================================
 & STAFF
================================== */

.guru{
  padding:80px 0;
  background:#f8fafc;
}

/* KEPSEK */

.kepsek-card{
  background:#fff;
  border-radius:25px;
  padding:40px;
  border:2px solid #0b2f61;
  box-shadow:0 15px 35px rgba(11,47,97,.10);
}

.kepsek-img{
  width:260px;
  height:260px;
  object-fit:cover;
  border-radius:50%;
  border:6px solid #ffd700;
}

.kepsek-card .jabatan{
  color:#ffd700;
  font-weight:700;
  letter-spacing:1px;
}

.kepsek-card h2{
  color:#0b2f61;
  font-weight:700;
  margin:10px 0 15px;
}

.kepsek-card p{
  line-height:1.9;
  color:#555;
}

/* GURU CARD */

.guru-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  text-align:center;
  box-shadow:0 10px 25px rgba(11,47,97,.08);
  transition:.3s;
  height:100%;
}

.guru-card:hover{
  transform:translateY(-8px);
}

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

.guru-card h4{
  color:#0b2f61;
  font-size:18px;
  font-weight:700;
  margin:20px 15px 8px;
}

.guru-card span{
  display:block;
  color:#666;
  padding-bottom:20px;
}

/* SUB HEADER */

.sub-header{
  text-align:center;
  margin-bottom:40px;
}

.sub-header h3{
  color:#0b2f61;
  font-weight:700;
}

.yellow-line{
  width:80px;
  height:4px;
  background:#ffd700;
  margin:10px auto 0;
  border-radius:50px;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-secondary);
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f05656;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}

.events .event-item .price {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

@media (min-width: 1200px) {
  .events .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d7;
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.4);
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border: 5px solid #ffd700;
  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(11, 47, 97, 0.25);
}

.book-a-table .reservation-form-bg {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.book-a-table .php-email-form {
  padding: 40px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  font-size: 14px;
  border: 2px solid #d8dce3;
  border-radius: 10px;
  box-shadow: none;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 4px rgba(255,215,0,0.15);
}

.book-a-table .php-email-form input {
  padding: 12px 15px;
}

.book-a-table .php-email-form textarea {
  padding: 12px 15px;
}

.book-a-table .php-email-form button[type=submit] {
  background: #ffd700;
  border: 0;
  padding: 14px 60px;
  color: #0b2f61;
  font-weight: 700;
  transition: 0.3s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ==================================
PPDB FORM
================================== */

.book-a-table .reservation-form-bg {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(8px);
}

.book-a-table .reservation-img {
min-height: 600px;
background-size: cover;
background-position: center;
}

.book-a-table .php-email-form {
padding: 40px;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
border-radius: 12px;
border: 2px solid rgba(11, 47, 97, 0.15);
padding: 12px 15px;
transition: 0.3s;
}



.book-a-table .php-email-form button {
background: #0b2f61;
color: white;
padding: 12px 35px;
border: none;
border-radius: 50px;
font-weight: 600;
transition: 0.3s;
}

.book-a-table .php-email-form button:hover {
background: #ffd700;
color: #0b2f61;
transform: translateY(-3px);
}

.book-a-table .php-email-form textarea {
resize: none;
}

.book-a-table .reservation-form-bg {
box-shadow: 0 15px 40px rgba(11, 47, 97, 0.12);
}

.persyaratan-box {
background: rgba(255,255,255,0.90);
padding: 35px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(11,47,97,0.12);
}

.timeline-content {
background: rgba(255,255,255,0.92);
border-radius: 18px;
box-shadow: 0 10px 30px rgba(11,47,97,0.12);
}

.timeline-content h4 {
color: #0b2f61;
font-weight: 700;
}

.timeline-dot {
  position: absolute;
  left: -23px;
  top: 10px;

  width: 38px;
  height: 38px;

  background: #ffd700;
  border: 4px solid #0b2f61;
  border-radius: 50%;

  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ALUR PPDB */

.ppdb-step {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow:
    0 10px 30px rgba(11,47,97,.12);
  height: 100%;
}

.step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #0b2f61;
  color: #ffd700;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppdb-step h4 {
  color: #0b2f61;
  font-weight: 700;
}

.ppdb-step p {
  color: #666;
}


/* PERSYARATAN */

.persyaratan-box {
  background: rgba(255,255,255,.90);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(11,47,97,.12);
}

.persyaratan-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.persyaratan-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
  color: #555;
  line-height: 1.8;
  font-size: 18px;
}

.persyaratan-box i {
  color: #ffd700;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 5px;
}

/* JADWAL */

.jadwal-box {
  background: rgba(255,255,255,.90);
  padding: 40px;
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(11,47,97,.12);
}

.jadwal-item {
  border-left: 4px solid #ffd700;
  padding-left: 20px;
  margin-bottom: 30px;
}

.jadwal-item span {
  color: #0b2f61;
  font-weight: 700;
}

.jadwal-item h4 {
  margin-top: 8px;
  color: #444;
}

/* ==================================
   TIMELINE JADWAL PPDB
================================== */

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 50px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #0b2f61;
  border-radius: 10px;
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
}

.timeline-dot {
  position: absolute;
  left: -42px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #ffd700;
  border: 4px solid #0b2f61;
  border-radius: 50%;
  z-index: 2;
}

.timeline-content {
  background: rgba(255,255,255,0.95);
  padding: 20px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(11,47,97,0.12);
}

.timeline-content h4 {
  color: #0b2f61;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content p {
  margin: 0;
  color: #666;
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(11, 47, 97, 0.08),
    rgba(11, 47, 97, 0.18)
  ) !important;
  padding: 60px 0;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #0b2f61;
  opacity: 0.4;
  margin: 0 6px !important;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffd700;
  opacity: 1;
  transform: scale(1.2);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 1280px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid var(--color-primary);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}

.gallery .swiper-slide img {
  width: 170%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid #ffd700;
  box-shadow: 0 8px 20px rgba(11, 47, 97, 0.15);
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #0b2f61;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #0b2f61;
  background: #ffd700;
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
   color: #ffffff;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color:  #ffffff;
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .info-item a {
  color: #ffffff !important;
  text-decoration: none;
}

.contact .info-item a:hover {
  color: #ffd700 !important;
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border: 2px solid #bfc6cf;
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffd700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #ffd700;
  border: 0;
  padding: 12px 40px;
  color: #0b2f61;
  font-weight: 700;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #e6c200;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background: url("../img/herobg.jpeg") center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  min-height: 60vh;
  padding: 160px 0 60px 0;
}

.hero h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: var(--font-secondary);
  text-shadow: 3px 3px 12px rgba(0,0,0,0.8);
  line-height: 1.1;
}

.hero h2 span {
  color: var(--color-primary);
}

.hero p {
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 30px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  max-width: 650px;
}

.hero .btn-book-a-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffd700;
  color: #0b2f61 !important;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero .btn-book-a-table:hover {
  background: #ffea00;
  color: #0b2f61 !important;
}

.hero .btn-watch-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  color: #0b2f61 !important;

  padding: 12px 36px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 700;

  margin-left: 15px;
  text-decoration: none;

  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero .btn-watch-video i {
  color: #0b2f61;
  font-size: 22px;
  margin-right: 0;
}

.hero .btn-watch-video:hover {
  background: #ffd700;
  color: #0b2f61 !important;
  transform: translateY(-2px);
}

.hero .btn-watch-video:hover i {
  color: #0b2f61;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #082b59;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

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

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

