/**
* Template Name: Yummy
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "poppins",  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";
  --heading-font: "Amatic SC",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #09005c; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #7f7f90;  /* The default color of the main navmenu links */
  --nav-hover-color: hsl(40, 100%, 50%); /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #7f7f90; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #09005c; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f2f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1{
  font-family: var(--heading-font);
}

h2 {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 20px 0;
  font-family: var(--heading-font);
  color: white;
}

h3,
h4,
h6 {
  font-weight: 600;
  font-family: var(--default-font);
}

.card-body h5 {
  font-weight: 600;
  text-align: left;
  font-family: var(--default-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-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);
}

.pulsating-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;
}

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

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

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #01881e;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #01881e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--default-font);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 8px 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --heading-font: var(--default-font);
  color: var(--default-color);
  background-color: #070044;
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .icon {
  color: var(--nav-hover-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

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

.footer .social-links a:hover {
  color: var(--nav-hover-color);
  border-color: var(--nav-hover-color);
}

.footer .copyright {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;/* Logo */
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.footer-logo-img {
  max-width: 70px;
  height: auto;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}
.footer-logo-img:hover {
  transform: scale(1.1);
}

/* Navigasi */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav ul li {
  margin-bottom: 6px;
}
.footer-nav ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: var(--nav-hover-color);
}

  font-size: 13px;
}



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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  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;
  }
}

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  font-family: var(--default-font);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--default-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-image: url('../img/herobackground.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.550); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
.hero > * {
  position: relative;
  z-index: 2;
}


.hero-profile2 {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-image: url('../img/herobackground.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
}

.hero-profile2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.61); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
.hero-profile2 > * {
  position: relative;
  z-index: 2;
}

.hero-facility {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-image: url('../img/gedungutamakampus.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
}

.hero-facility::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.61); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
.hero-facility > * {
  position: relative;
  z-index: 2;
}

.hero-reg {
  width: 100%;
  height: auto;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-image: url('../img/herobackground.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
}

.hero-reg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.61); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
.hero-reg > * {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  color: white;
  font-weight: 700;
}

.hero-profile2 h1 {
  margin: 0;
  font-size: 64px;
  color: #ffffff;
  font-family: var(--default-font);
  font-weight: 700;
}

.hero-reg h1 {
  margin: 0;
  font-size: 40px;
  color: #ffffff;
  font-family: var(--default-font);
  font-weight: 700;
}

.hero-facility h1 {
  margin: 0;
  font-size: 40px;
  color: #ffffff;
  font-family: var(--default-font);
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.hero-profile2 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 300;
  color: white;
}

.hero-reg p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 15px;
  font-weight: 300;
  color: white;
}

.hero-facility p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 15px;
  font-weight: 300;
  color: white;
}

.hero p span {
  color: var(--accent-color);
}

.hero p span.highlight {
  color: var(--nav-hover-color);
}

.hero-profile2 p span {
  color: var(--accent-color);
}

.hero-profile2 p span.highlight {
  color: var(--nav-hover-color);
}

.hero-facility p span {
  color: var(--accent-color);
}

.hero-facility p span.highlight {
  color: var(--nav-hover-color);
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  margin: 0;
  display: inline-block;
  padding: 18px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-profile2 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  margin: 0;
  display: inline-block;
  padding: 18px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-reg .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  margin: 0;
  display: inline-block;
  padding: 18px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-profile2 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-reg .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}



.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero-profile2 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero .hero-img img{
  border-radius: 50%;
}

.hero-profile2 .hero-img img{
  border-radius: 50%;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/* Gambar */
.about {
  background-color: #eaeaea;
}
.about img {
  width: 110%; /* gambar lebih besar */
  max-width: 490px;
  transform: scale(1.05); /* sedikit membesar */
  transition: all 0.4s ease;
  border-radius: 20px;
}

.about img:hover {
  transform: scale(1.1); /* efek zoom pas hover */
}

.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

/* Paragraf */
.about .deskripsi p {
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 15px;
}

/* ===== Visi Misi Section ===== */
#visi-misi {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  align-items: center;
  background-image: url('../img/herobackground.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
  
}

#visi-misi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.550); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
#visi-misi > * {
  position: relative;
  z-index: 2;
}

#visi-misi h3 {
  color: #ffffff;
}

#visi-misi h3 i {
  margin-right: 8px;
  color: var(--nav-hover-color); /* default warna ikon */
  border-radius: 50%;
}

/* Paragraf */
#visi-misi .konten p {
  line-height: 1.7;
  text-align: justify;
  color: #ffffff;
  margin-bottom: 20px;
}

#visi-misi  p {
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
}

#visi-misi  h2 {
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
}

#visi-misi p .heading-design {
  line-height: 1.7;
  color: var(--nav-hover-color);
  margin-bottom: 20px;
}


/* Daftar Misi */
#visi-misi ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#visi-misi ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

#visi-misi ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1.2rem;
  color: #00ff6a; /* hijau untuk checklist */
}

/* Gambar */
#visi-misi img {
  max-width: 80%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
  animation: up-down 2s ease-in-out infinite alternate-reverse both ;
  border-radius: 50%;
}

#visi-misi img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {

  #visi-misi img {
    max-width: 40%;    
    margin: 0 auto 20px auto;
    display: block;
  }

  .news .card-body {
    padding: 1rem;
  }

  /* .news h2 {
    font-size: 1.5rem;
  }

    .contact h2 {
    font-size: 1.5rem;
  } */

    .hero-news {
    padding: 20px;
    text-align: center;
    justify-content: top;
    min-height: 50vh;
  }

    .hero-contact {
    padding: 20px;
    text-align: center;
    justify-content: top;
    min-height: 50vh;
  }

    .kalender-grid {
    grid-template-columns: 1fr;
  }

    /* Gambar profil biar center & kecil */
  .profdos .img-profil img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
  }

  .profdos .porto {
    text-align: center;
  }

  .profdos h2 {
    font-size: 1.4rem;
  }

  .profdos .card {
    padding: 0.75rem;
  }

  .profdos .card-title {
    font-size: 1rem;
  }

  .profdos .list-group-item {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }

  /* Pastikan teks panjang tetap wrap */
  .profdos p,
  .profdos td,
  .profdos th {
    white-space: normal !important;
    word-wrap: break-word;
  }

  /* Buat tombol kembali tetap rapi di tengah */
  .profdos .back a {
    display: inline-block;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }



}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h1 {
  color: var(--contrast-color);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 27px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
  font-size: 15px;
  text-align: left;
  line-height: normal;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 30px 10px 30px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

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

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box .img-icons {
  color: var(--accent-color);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-align: center;
  font-family: var(--default-font);
}



.why-us .icon-box p {
  font-size: 14px;
  text-align: left;
  line-height:  25px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

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

.menu .nav-link {
  background-color: var(--background-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 15px;
  padding: 10px 5px;
  transition: 0.3s;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.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(--default-font);
}

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

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

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

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.menu .tab-content .menu-item {
  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: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: var(--default-font);
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 5px;
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-color: var(--contrast-color);
}

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

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

.testimonials .testimonial-item .wrapper {
  width: 150px;        /* ukuran tetap */
  height: 150px;       /* kotak persegi */
  overflow: hidden;    /* potong kelebihan gambar */
}

.testimonials .testimonial-item .testimonial-img {
  width: 100%;
  height: 100%;
  border-radius: 10%; /* buat gambar jadi lingkaran */
  object-fit: cover;   /* gambar menutupi kotak */
  transition: transform 0.3s ease; /* efek transisi */
}


.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  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-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

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

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

.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: #ffffff;
  position: relative;
}

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

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

.events .swiper-wrapper {
  height: auto;
}

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

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

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

.chefs .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.chefs .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}


.chefs .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .team-member .social a:hover {
  color: var(--default-color);
}

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

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

.chefs .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  font-family: var(--default-font);
}

.chefs .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.chefs .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.chefs .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.chefs .team-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;
}

.book-a-table .reservation-form-bg {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

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

.book-a-table .php-email-form input[type=text],
.book-a-table .php-email-form input[type=email],
.book-a-table .php-email-form input[type=number],
.book-a-table .php-email-form input[type=date],
.book-a-table .php-email-form input[type=time],
.book-a-table .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.book-a-table .php-email-form input[type=text]:focus,
.book-a-table .php-email-form input[type=email]:focus,
.book-a-table .php-email-form input[type=number]:focus,
.book-a-table .php-email-form input[type=date]:focus,
.book-a-table .php-email-form input[type=time]:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.book-a-table .php-email-form input[type=text]::placeholder,
.book-a-table .php-email-form input[type=email]::placeholder,
.book-a-table .php-email-form input[type=number]::placeholder,
.book-a-table .php-email-form input[type=date]::placeholder,
.book-a-table .php-email-form input[type=time]::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.book-a-table .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 14px 60px;
  transition: 0.4s;
  border-radius: 4px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

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

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border: 0;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
}

.contact .info-item .icon {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  font-family: var(--default-font);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.img-fluid {
  max-width: 280px;   /* atur sesuai ukuran yang kamu mau */
  height: 280px;       /* biar proporsi nggak ketarik */
}

/* news */

.news {
  z-index: 1;
  
}


.news .btn {
  padding: 6px 15px;
  border-radius: 0;
}

.gallery .btn {
  padding: 6px 15px;
  border-radius: 0;
}

.chefs .btn {
  padding: 6px 15px;
  border-radius: 0;
}

.news-detail .back .btn {
  padding: 6px 15px;
  border-radius: 0;
}

.news-detail .share .btn-all {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 8px;
}

.news .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-size: 14px;
  margin: 0 8px 0 0;
  transition: background-color 0.3s, color 0.3s;
}

.news .btn-all {
  background-color: var(--accent-color);
  font-weight: 500;
  margin-top: 20px;
  color: white;
}

.gallery .btn-all {
  background-color: var(--accent-color);
  font-weight: 500;
  margin-top: 20px;
  color: white;
}

.chefs .btn-all {
  background-color: var(--accent-color);
  font-weight: 500;
  margin-top: 20px;
  color: white;
}

.news .card {
   border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
}

.news .card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #f8f9fa;
  transition: transform 0.3s ease;
}

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

.news .card-body {
  padding: 1.25rem;
}

.news .card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.4
}

.news .card-meta {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.4rem;
}

.news .card-meta i {
  color: #6c757d;
}

.news .card-text {
   font-size: 0.9rem;
  color: #5f5f5f;
  margin-bottom: 1rem;
}

.news .card-btn {
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.news .card-btn:hover {
  background-color: #060232;
  transform: translateX(3px);
  color: #fff;
}

.hero-news {
  width: 100%;
  min-height: 50vh;
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: top;
  background-image: url('../img/hero-news.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
}

.hero-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.60); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
.hero-news > * {
  position: relative;
  z-index: 2;
}

.hero-gallery {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: top;
  background-image: url('../img/vector1.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
}

/* overlay gelap gallery */

.hero-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.700); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
.hero-gallery > * {
  position: relative;
  z-index: 2;
}
/* end overlay */

.hero-calender {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-image: url('../img/gedungutamakampus.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
}

.hero-kurikulum {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-image: url('../img/gedungutamakampus.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
}

/* overlay gelap kurikulum */

.hero-kurikulum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.550); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
.hero-kurikulum > * {
  position: relative;
  z-index: 2;
}

.hero-profile {
    width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-image: url('../img/gedungutamakampus.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
}

.hero-dosen {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-image: url('../img/gedungutamakampus.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
}


/* overlay gelap */

.hero-dosen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.61); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
.hero-dosen > * {
  position: relative;
  z-index: 2;
}

.hero-contact {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: top;
  background-image: url('../img/hero-contact.jpg'); /* path gambar */
  background-size: cover;    /* biar gambarnya nutup seluruh area */
  background-position: center; /* posisi gambar di tengah */
  background-repeat: no-repeat; /* biar ga ngulang */
}

/* overlay gelap */

.hero-calender::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.550); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
.hero-calender > * {
  position: relative;
  z-index: 2;
}

.hero-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.507); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
.hero-contact > * {
  position: relative;
  z-index: 2;
}

.hero-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.550); /* semakin besar angkanya, makin gelap */
  z-index: 1;
}

/* biar konten di atas overlay */
.hero-profile > * {
  position: relative;
  z-index: 2;
}

.hero-news h1 {
  margin-top: 80px;
  font-size: 55px;
  color: white;
  font-family: var(--default-font);
  font-weight: 700;
}

.hero-gallery h1 {
  margin-top: 80px;
  font-size: 55px;
  color: white;
  font-weight: 700;
  font-family: var(--default-font);
}

.hero-calender h1 {
  margin: 0;
  font-size: 50px;
  color: #ffffff;
  font-family: var(--default-font);
  font-weight: 700;
}

.hero-kurikulum h1 {
  margin: 0;
  font-size: 50px;
  color: #ffffff;
  font-family: var(--default-font);
  font-weight: 700;
}

.hero-contact h1 {
  margin-top: 80px;
  font-size: 55px;
  color: white;
  font-family: var(--default-font);
  font-weight: 700;
}

.hero-profile h1 {
  margin: 0;
  font-size: 40px;
  color: #ffffff;
  font-family: var(--default-font);
  font-weight: 700;
}

.hero-dosen h1 {
  margin: 0;
  font-size: 40px;
  color: #ffffff;
  font-family: var(--default-font);
  font-weight: 700;
}


.hero-news h1 span {
  color: var(--nav-hover-color);
}

.hero-dosen h1 span {
  color: var(--nav-hover-color);
}

.hero-contact h1 span {
  color: var(--nav-hover-color);
}

.hero-profile h1 span {
  color: var(--nav-hover-color);
}

.hero-gallery h1 .span2 {
  color: var(--accent-color);
}

.hero-profile h1 .span2 {
  color: var(--nav-hover-color);
}

.hero-dosen h1 .span2 {
  color: var(--nav-hover-color);
}

.hero-gallery h1 span {
  color: var(--nav-hover-color);
}

.hero-calender h1 span {
  color: var(--nav-hover-color);
}

.hero-kurikulum h1 span {
  color: var(--nav-hover-color);
}

.hero-news p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 20px 0;
  font-size: 20px;
  font-weight: 400;
  color: white;
}

.hero-gallery p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 20px 0;
  font-size: 20px;
  font-weight: 400;
  color: white;
}

.hero-profile p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 20px 0;
  font-size: 20px;
  font-weight: 400;
  color: white;
  font-style: italic;
}

.hero-dosen p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 20px 0;
  font-size: 20px;
  font-weight: 400;
  color: white;
  font-style: italic;
}


.hero-contact p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 20px 0;
  font-size: 20px;
  font-weight: 400;
  color: white;
}

.hero-news .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.pagination-news {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.pagination-news .page-item .page-link {
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 0 5px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.pagination-news .page-item .page-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

/* Lecturer Card Style */
.lecturer-card {
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  border: 1px solid #e0e0e0;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.lecturer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.lecturer-photo-wrapper {
  width: 100%;
  height: 300px; /* tetap seragam */
  background-color: #f8f8f8; /* kalau foto belum ada */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lecturer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* potong proporsional */
  object-position: center; /* tengahin */
  transition: transform 0.3s ease;
}

.lecturer-card:hover .lecturer-photo {
  transform: scale(1.05);
}

.lecturer-body {
  padding: 1rem 1.5rem 1.5rem;
}

.lecturer-name {
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 5px;
}

.lecturer-role {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.lecturer-expertise {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

.lecturer-contact {
  font-size: 0.85rem;
  color: white;
  margin-bottom: 10px;
}

.lecturer-contact i {
  color:  white;
  margin-right: 5px;
}

.lecturer-card .btn-get-started {
  background-color: var(--nav-hover-color);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  margin: 10px 0 10px 0;
  display: inline-block;
  padding: 12px;
  border-radius: 0;
}

.lecturer-card .btn-get-started:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  background-color: white;
}

.fasilitas-hero {
  position: relative;
  display: flex;
  justify-content: center;
}

.fasilitas-hero img {
  width: 100%;
  /* border-radius: 12px; */
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 5px;
  background-color: #000000a8;
}

.hero-overlay i {
  color: white;
}

.hero-overlay p {
  margin-top: 10px;
  color: white;
}

.kalender-akademik {
  padding: 40px 20px;
  background: #fff;
}

.kalender-akademik h2 {
   text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.kalender-akademik .kalender-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.kalender-akademik .kalender-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kalender-akademik .kalender-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.kalender-akademik .kalender-card h3 {
  font-size: 18px;
  color: #1a1a1a;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.kalender-akademik .kalender-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kalender-akademik .kalender-card li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #ddd;
  padding: 8px 0;
  font-size: 15px;
}

.kalender-akademik .kegiatan {
  font-weight: 500;
}

.kalender-akademik .tanggal {
  font-style: italic;
  font-size: 14px;
  color: #666;
}

.kalender-akademik .download-container {
  text-align: center;
  margin-top: 35px;
}

.kalender-akademik .download-btn {
  background-color: #1d1b7a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-login {
  background-color: #1d1b7a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  margin-top: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-items: center;
  gap: 8px;
}

.btn-login:hover {
  background-color: var(--accent-color);
  color: white;
}

.kalender-akademik .download-btn:hover {
  background-color: #2a26a0;
}

.kurikulum-prodi {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.kurikulum-prodi h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--accent-color);
  font-family: var(--default-font);
}

.kurikulum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kurikulum-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.kurikulum-card:hover {
  transform: translateY(-5px);
}

.kurikulum-card h3 {
  font-size: 18px;
  color: var(--accent-color);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 6px;
}

.kurikulum-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kurikulum-card li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 4px;
}

.matkul {
  font-weight: 500;
  color: #333;
}

.sks {
  font-size: 13px;
  color: #666;
}

.total-sks {
  margin-top: 12px;
  text-align: right;
  font-size: 14px;
  color: var(--accent-color);
}

/* Section Form Skripsi */

.form-skripsi .section-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  color: var(--accent-color);
  font-family: var(--default-font);
}

.form-skripsi .line {
  height: 3px;
  width: 100%;
  background: var(--accent-color);
  margin-bottom: 20px;
}

.form-skripsi .card-custom {
  border-radius: 10px;
  transition: 0.3s;
  text-align: center;
  padding: 25px 10px;
  cursor: pointer;
  overflow: hidden;
}

.form-skripsi .card-custom:hover {
  border: 2px solid var(--accent-color);
  transform: translateY(-3px);
}

.form-skripsi .card-custom .icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
  transition: transform 0.3 ease;
}

.form-skripsi .card-custom:hover .icon {
  transform: scale(1.2);
}

.form-skripsi .card-custom .card-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.form-skripsi .card-custom:hover .card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
}

.news-content {
  max-width: 100%;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.7;
  font-size: 16px;
}



.news-content p {
    text-align: justify;
    line-height: 1.8;
    font-size: 1.05rem;
}

.news-detail h2 {
  color: var(--accent-color);
}

.news-detail .btn {
  background-color: var(--accent-color);
  border-radius: 10px;
  font-weight: 600;
  color: white;
}

    .success-container {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 70vh; /* Membuat container memenuhi layar */
        padding: 40px 15px;
    }
    .success-content h1 {
        font-family: 'Poppins', sans-serif; /* Font yang lebih fun */
        font-weight: 700;
        font-size: 2.5rem;
        color: #09005c;
    }
    .success-content p {
        font-size: 1rem;
        font-family: 'Poppins', sans-serif;
        color: #555;
        max-width: 500px;
        margin: 15px auto 40px auto;
    }
    .success-content .rocket-gif {
        max-width: 120px; /* Atur ukuran GIF roket */
        margin-bottom: 20px;
        border-radius: 50%;
    }
    .btn-kembali {
        background-color: #09005c;
        color: white;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        transition: all 0.3s ease;
    }
    .btn-kembali:hover {
        background-color: hsl(51, 100%, 50%);
        color: #09005c;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .card {
      border-radius: 0;

    }

    .card img {
      border-radius: 0;
    }

    .card p {
      text-align: left;
      line-height: 25px;
    }

  .news-detail .card {
  border-radius: 8px;
  overflow: hidden;
  border-left: 5px solid var(--nav-hover-color);
}

.news-detail .card-title img {
  width: 30px;
  height: auto;
  margin-right: 6px;
}

.profdos .porto h2 {
  color: var(--accent-color);
}


.profdos .img-profil img {
  width: auto; 
  height: auto; 
  object-fit: cover; 
  margin-bottom: 20px;
  border: 1px solid #c1bfbf;
  border-radius: 0;
}

.profdos .img-profil img:hover {
  transform: scale(1.05);
}

.profdos .porto img {
  width: 25px;
  height: auto;
  margin-right: 6px;
}

.news-detail .card-body i {
  color: var(--accent-color);
  padding: 8px;
}

.news-detail .card-body p {
  margin-bottom: 10px;
}

.profdos .back .btn-all {
  background-color: var(--accent-color);
  border-radius: 0;
  color: white;
}


/* ===== Styling Umum Card Profil Dosen ===== */
.profdos .card {
  border-radius: 0;
  overflow: hidden;
  word-wrap: break-word;
  white-space: normal;
}

.profdos .card-title img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  vertical-align: middle;
}

.profdos .card-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Table dan List biar gak overflow */
.profdos table td,
.profdos table th,
.profdos .list-group-item {
  word-break: break-word;
  white-space: normal;
  font-size: 0.95rem;
}

.links-sosmed a {
  color: white;
  margin-right: 15px;
  display: inline-block;
  transition: color 0.3s;
}

 .links-sosmed a:hover {
  color: var(--nav-hover-color);
}

.footer .links-maps a  {
  color: white;
  margin-right: 15px;
  display: inline-block;
  transition: color 0.3s;
}

 .footer .links-maps a:hover {
  color: var(--nav-hover-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* =======================================================
   DESKTOP NAVIGATION (≥1200px)
======================================================= */
@media (min-width: 1200px) {

  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    margin-left: 5px;
    transition: 0.3s;
  }

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

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

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 80%, black 50%);
  }

  /* Dropdown desktop */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    left: -100%;
    visibility: visible;
  }
}

/* =======================================================
   MOBILE NAVIGATION (≤1199px)
======================================================= */
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  section,
  .section {
    scroll-margin-top: 56px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
  }

  .navmenu a i {
    font-size: 12px;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: 0.3s;
  }

  .navmenu a i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/* =======================================================
   HEADER & RESPONSIVE ORDERING
======================================================= */
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 15px;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* =======================================================
   LAYOUT RESPONSIVE BREAKPOINTS
======================================================= */

/* Tablet (≤992px) */
@media (max-width: 992px) {
  .kurikulum-grid {
    grid-template-columns: repeat(2, 1fr);
  }

    .kalender-akademik .kalender-grid {
    grid-template-columns: 1fr;
  }

  .kalender-akademik .kalender-card {
    padding: 20px;
  }

  .kalender-akademik .kalender-card li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .kalender-akademik .tanggal {
    font-size: 13px;
    color: #444;
  }

}

/* Large screen (≥992px) */
@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

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

/* Small screen (≤600px) */
@media (max-width: 600px) {
  .kurikulum-grid {
    grid-template-columns: 1fr;
  }
}

/* =======================================================
   EXTRA SMALL (≤575px)
======================================================= */
@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }

  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }

  .book-a-table .php-email-form,
  .contact .php-email-form {
    padding: 20px;
  }

  .events .event-item {
    min-height: 500px;
  }

  .img-fluid {
    max-width: 100px;
    height: auto;
  }

  .profdos h2 {
    font-size: 1.2rem;
  }

  .profdos .card-body {
    padding: 0.8rem;
  }

  .profdos .list-group-item {
    font-size: 0.85rem;
  }

  .profdos .card-title img {
    width: 22px;
    height: 22px;
  }

  .profdos .img-profil img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

  .kalender-akademik {
    padding: 25px 15px;
  }

  .kalender-akademik h2 {
    font-size: 20px;
  }

  .kalender-akademik .kalender-card {
    border-radius: 10px;
    padding: 18px;
  }

  .kalender-akademik .kalender-card h3 {
    font-size: 16px;
  }

  .kalender-akademik .kalender-card li {
    font-size: 14px;
  }

  .kalender-akademik .download-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .share {
    flex-direction: column; /* biar vertikal dan rapi */
    align-items: stretch;
  }

  .share .btn-all {
    width: 100%; /* tombol lebar penuh */
    font-size: 13px;
    padding: 8px;
    text-align: center;
  }

    .hero-profile2 p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
  }

}

/* =======================================================
   HERO SECTIONS (≤640px)
======================================================= */
@media (max-width: 640px) {

  /* General hero text */
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

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

  /* Filter button mobile */
  .filter-mobile .btn {
    background-color: var(--accent-color);
    border-radius: 50px;
    border: none;
    padding: 8px 16px;
    display: flex;
    justify-content: center;
    font-size: 14px;
  }

  .filter-mobile .btn i {
    font-size: 18px;
    margin-right: 5px;
    color: #fff;
  }

  /* Hero variations */
  .hero-news,
  .hero-contact,
  .hero-gallery,
  .hero-profile,
  .hero-dosen,
  .hero-facility,
  .hero-kurikulum,
  .hero-calender {
    padding: 20px;
    text-align: center;
    justify-content: center;
    min-height: 50vh;
  }

  .hero-calender,
  .hero-kurikulum {
    min-height: 30vh;
  }

  /* Hero text sizes */
  .hero-news h1,
  .hero-contact h1,
  .hero-gallery h1 {
    font-size: 50px;
    margin-top: 50px;
  }

  .hero-calender h1,
  .hero-kurikulum h1 {
    font-size: 32px;
    margin-top: 30px;
  }

  .hero-news p,
  .hero-contact p,
  .hero-gallery p,
  .hero-profile p,
  .hero-facility p,
  .hero-dosen p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero-profile2 h1 {
    font-size: 28px;
    line-height: 36px;
  }

    .hero-reg h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-profile2 p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
  }

    .hero-reg p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
  }

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

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

  .hero-overlay p {
  display: none;
}

}
