:root {
  --kuki-blue: #0080FF;
  --kuki-navy: #1E3A8A;
  --kuki-peach: #fdf5e2;
  --kuki-orange: #FF6B35;
  --kuki-lgray: 	#EDEDED;
  --kuki-default: #404040;
  --kuki-lgreen: #D7F8D9;
  --kuki-green: #17a130;
}

/* ==================== BACKGROUND COLORS ==================== */
.bg-blue { background-color: var(--kuki-blue); }
.bg-navy { background-color: var(--kuki-navy); }
.bg-peach { background-color: var(--kuki-peach); }
.bg-orange { background-color: var(--kuki-orange); }
.bg-lgray { background-color: var(--kuki-lgray); }
.bg-default { background-color: var(--kuki-default); }
.bg-lgreen { background-color: var(--kuki-lgreen); }
.bg-green { background-color: var(--kuki-green); }

/* ==================== TEXT COLORS ==================== */
.text-blue { color: var(--kuki-blue); }
.text-navy { color: var(--kuki-navy); }
.text-peach { color: var(--kuki-peach); }
.text-orange { color: var(--kuki-orange); }
.text-lgray { color: var(--kuki-lgray); }
.text-default { color: var(--kuki-default); }
.text-lgreen { color: var(--kuki-lgreen); }
.text-green { color: var(--kuki-green); }

/* ==================== PLACEHOLDER ==================== */
.lazy-portrait {
  background: url('../images/placeholder.jpg') center center no-repeat;
  background-size: cover;  
  min-width: 180px; 
  min-height: 180px;   
}

/* ==================== FONT ==================== */
@font-face {
  font-family: 'Audiowide';
  src: url('../fonts/Audiowide-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}

.kuki-font {
  font-family: 'Audiowide', sans-serif;
}

/* ==================== NAVIGATION LINKS ==================== */
.navbar .nav-link {
  position: relative;
  color: #404040 !important;
  padding-bottom: 2px; 
  font-size: 20px;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #FF6B35; 
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #FF6B35 !important;
}

/* ==================== BUTTONS ==================== */
.card {
  border: 2.5px solid #e0e0e0 !important;
  box-shadow: none;
  min-width: 300px; 
}


/* ==================== BUTTONS ==================== */
.btn-kuki {
  background-color: #FF6B35;  
  color: #fff;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-kuki:hover {
  background-color: #d95d30;
  color: #fff;
}

.btn-kuki2 {
  background-color: transparent;  
  color: #fff;
  border-radius: 0.5rem;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.btn-kuki2:hover {
  background-color: #d95d30;
  color: #fff;
}

.btn-kuki3 {
  background-color: transparent;  
  color: #404040;
  border-radius: 0.5rem;
  border: 2px solid #404040;
  transition: all 0.3s ease;
}

.btn-kuki3:hover {
  background-color: #d95d30;
  color: #fff;
}

.btn-kuki,
.btn-kuki2,
.btn-kuki3 {
  min-width: 240px;
  text-align: center;
}

.btn-custom {
  --bs-btn-color: #fff;
  --bs-btn-bg: #FF6B35;
  --bs-btn-border-color: #FF6B35;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #FF6B35;
  --bs-btn-hover-border-color: #FF6B35;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #FF6B35;
  --bs-btn-active-bg: #FF6B35;
  --bs-btn-active-border-color: #FF6B35;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #FF6B35;
  --bs-btn-disabled-border-color: #FF6B35;
}
.text-red {
  color: #cc0000;
}
.myday {
  width: calc(100% / 7);
  border: 0px solid #CCCCCC;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  transform: scale(0.95);
}
.mydaydisable {
  width: calc(100% / 7);
  border: 0px solid #CCCCCC;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  transform: scale(0.95);
  background-color: #E9EAEB;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  height: 90vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  z-index: 1;
}

.hero-section img.hero-img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); 
  z-index: 1;
}

.index-list {
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.index-list li {
  display: flex;
  align-items: flex-start; 
  justify-content: flex-start; 
  gap: 1rem;
  font-size: 20px;
}

.index-list li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0; 
  margin-top: 4px; 
}

.hero-section1 {
  position: relative;
  height: 35vh;
  width: 100vw;              
  max-width: 100% !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;            
  color: #fff;
  z-index: 1;
}

.hero-section1 img.hero-img1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;            
}

.hero-content1 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section1 {
    height: 65vh;
  }

  .hero-content1 h1 {
    font-size: 2.2rem;
  }

  .hero-content1 p {
    font-size: 16px !important;
    max-width: 90%;
    margin-bottom: 0;
  }
}

/* ==================== PRICING CARD ==================== */
.pricing-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  width: 100%;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.pricing-card img {
  object-fit: cover;
}

.pricing-card h5 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card p {
  margin-bottom: 0.5rem;
}

/* ==================== ACCORDION FAQ ==================== */
.accordion-button:not(.collapsed) {
  color: #404040; 
  background-color: #fdf5e2; 
  box-shadow: none;
}

.accordion-button:focus {
  border-color: #FF6B35;
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--kuki-default);
  /* margin: 1.5rem auto; */
  border-radius: 4px;
}

/* ==================== BOT ==================== */