@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #8f8f97;
  --primary-color-dark: #bc1c5c;
  --text-dark: #0c0a09;
  --text-light: #8f8f97;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: var(--primary-color);
}

.section__header {
  max-width: 600px;
  margin-bottom: 1rem;
  /*font-size: 2.5rem;*/
  font-weight: 600;
  /*line-height: 3rem;*/
  /*color: var(--text-dark);*/
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  /*font-size: 1rem;*/
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}


.input__group {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.input__group span {
  /*font-size: 1.75rem;*/
  color: var(--primary-color);
}

.input__group label {
  font-weight: 500;
  color: var(--text-dark);
}

.input__group input {
  display: block;
  width: 100%;
  max-width: 150px;
  padding-block: 5px;
  color: var(--text-dark);
  /*font-size: 0.9rem;*/
  outline: none;
  border: none;
}

.input__group input::placeholder {
  color: var(--text-light);
}


.room__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.room__card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.room__card__image {
  position: relative;
  isolation: isolate;
}

.room__card__icons {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1;
}

.room__card__icons span {
  display: inline-block;
  padding: 2px 8px;
  /*font-size: 1.5rem;*/
  background-color: var(--white);
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.room__card__icons span:nth-child(1) {
  color: #8f8f97;
}

.room__card__icons span:nth-child(2) {
  color: #8f8f97;
}

.room__card__icons span:nth-child(3) {
  color: #8f8f97;
}

.room__card__details {
  padding: 1rem;
}

.room__card h4 {
  margin-bottom: 0.5rem;
  /*font-size: 1.2rem;*/
  font-weight: 500;
  color: var(--text-dark);
}

.room__card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.room__card h5 {
  margin-bottom: 1rem;
  /*font-size: 1rem;*/
  font-weight: 500;
  color: var(--text-light);
}

.room__card h5 span {
  /*font-size: 1.1rem;*/
  color: var(--text-dark);
}

/* Camp Card Hover Effect */
.room__card {
  transition: all 0.4s ease;
  border-radius: 14px;
  overflow: hidden;
}

.room__card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

/* Image Zoom on Hover */
.room__card__image img {
  transition: transform 0.5s ease;
}

.room__card:hover .room__card__image img {
  transform: scale(1.08);
}

/* Icons Fade-in */
.room__card__icons {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* New Badge Styles for Image Container */
.room__card__image .badge {
    position: absolute;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 1px;
}

/* Modern Badge Base */
.badge {
    position: absolute;
    /* Flexbox ensures the text is perfectly centered */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    
    /* Centered vertical/horizontal space */
    padding:8px 16px; 
    
    /*font-size: 2.7rem;*/
    font-weight: 800;
    text-transform: uppercase;
    /*letter-spacing: 1.2px;*/
    
    /* As requested: 10px radius */
    border-radius: 7px; 
    
    z-index: 2;
    backdrop-filter: blur(8px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Package - Top Left */
.badge-package {
  
    top: 1rem;
    left: 1rem;
    background: #444444; /* #8f8f97 with transparency */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pricing - Bottom Left (Animated) */
.badge-pricing {
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1c1d20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(10px);
}



/* --- Expired / Disabled State --- */
.expired-card img {
    filter: grayscale(100%) brightness(0.7);
}

.koks-btn.disabled {
    background-color: #d1d1d1 !important;
    color: #888 !important;
    border-color: #d1d1d1 !important;
    pointer-events: none;
    cursor: not-allowed;
}


/* Hover Trigger for Pricing Badge */
.room__card:hover .badge-pricing {
    opacity: 1;
    transform: translateY(0);
}

/* Hover refinement for Package Badge */
.room__card:hover .badge-package {
    background: #8f8f97; /* Solid color on hover */
}

/* Package Badge Hover Effect (Optional: slight pulse) */
.room__card:hover .badge-package {
    background: rgba(143, 143, 151, 1);
    transform: scale(1.05);
}

/* Pricing Badge Hover State (Reveal) */
.room__card:hover .badge-pricing {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing Badge Hover State (Fade-in) */
.room__card:hover .badge-pricing {
    opacity: 1;
    transform: translateY(0);
}

.room__card:hover .room__card__icons {
  opacity: 1;
  transform: translateY(0);
}


.service {
  background-image: url("service.jpeg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  padding-block: 0;
  display: grid;

  grid-template-columns: repeat(2, 1fr);
}

.service__content {
  grid-column: 1/3;
  padding: 2rem 4rem;
  background-color: var(--white);
}

.service__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;

}

.service__list span {
  padding: 5px 12px;
  color: var(--text-dark);
  background-color: var(--text-light);
  border-radius: 100%;
}

.service__list li:nth-child(1) span {
  color: #8f8f97;
  background-color: #dbeafe;
}

.service__list li:nth-child(2) span {
  color: #8f8f97;
  background-color: #fce7f3;
}

.service__list li:nth-child(3) span {
  color: #8f8f97;
  background-color: #f3e8ff;
}

.service__list li:nth-child(4) span {
  color: #444444;
  background-color: #ffe4e6;
}

.banner__content {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card {
  text-align: center;
  flex: 1 1 180px;
}

.banner__card h4 {
  /*font-size: 2rem;*/
  font-weight: 600;
  color: var(--text-dark);
}

.banner__card p {
  color: var(--text-light);
}





/*** Button ***/
.btn {
transition: .5s;
}

.btn-square {
width: 38px;
height: 38px;
}

.btn-sm-square {
width: 32px;
height: 32px;
}

.btn-lg-square {
width: 48px;
height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
padding: 0;
display: flex;
align-items: center;
justify-content: center;
font-weight: normal;
}



/*** Service ***/
.service-item {
position: relative;
padding: 30px 25px;
transition: .5s;
}

.service-item.bg-primary:hover {
background: var(--bs-light) !important;
}

.service-item.bg-primary p {
color: var(--bs-light);
transition: .5s;
}

.service-item.bg-primary:hover p {
color: var(--bs-secondary);
}

.service-item.bg-light:hover {
background: var(--bs-primary) !important;
}

.service-item.bg-light p {
color: var(--bs-secondary);
transition: .5s;
}

.service-item.bg-light:hover p {
color: var(--bs-light);
}


.service-item .service-img h3 {
position: absolute;
top: 0;
left: 0;
padding: 0 12px 7px 0;
}

.service-item.bg-primary .service-img h3 {
background: var(--bs-primary);
color: var(--bs-white);
transition: .5s;
}

.service-item.bg-primary:hover .service-img h3 {
background: var(--bs-light);
color: var(--bs-dark);
}

.service-item.bg-light .service-img h3 {
background: var(--bs-light);
color: var(--bs-dark);
transition: .5s;
}

.service-item.bg-light:hover .service-img h3 {
background: var(--bs-primary);
color: var(--bs-white);
}


/*About us More Details*/


.section__container1 {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  /*font-size: 2.5rem;*/
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.section__subheader {
  margin-bottom: 10px;
  /*font-size: 1.2rem;*/
  color: var(--text-light);
}




.header__content {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.header__content h1 {
  /*font-size: 3.5rem;*/
  font-weight: 500;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.header__content__details p {
  margin-bottom: 1rem;
  color: var(--text-light);
}


.about__header1 {
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
}

.about__content .paragraph {
  margin-block: 2rem;
  color: var(--text-light);
}

.about__grid1 {
  padding-block: 4rem;
  display: grid;
  gap: 2rem 1rem;
  border-bottom: 1px solid var(--text-light);
}

.about__card1 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__card1 span {
  padding: 8px 15px;
  /*font-size: 5.75rem;*/
  color: var(--text-dark);
  background-color: var(--secondary-color);
  border-radius: 100%;
}

.about__card1 h4 {
  margin-bottom: 10px;
  /*font-size: 1.2rem;*/
  font-weight: 500;
  color: var(--text-dark);
}

/*
.about__card1 p {
  color: var(--text-light);
}
*/

@media (width > 480px) {
  .about__grid1 {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (width > 768px) {
  
  .header__content {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    align-items: center;
  }

  .about__header1 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__grid1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }



}


.about__header {
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
}

.about__content .paragraph {
  margin-block: 2rem;
  color: var(--text-light);
}

.about__grid {
  padding-block: 4rem;
  display: grid;
  gap: 2rem 1rem;
  border-bottom: 1px solid var(--text-light);
}

.about__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__card span {
  padding: 8px 15px;
  /*font-size: 1.75rem;*/
  color: var(--text-dark);
  background-color: var(--secondary-color);
  border-radius: 100%;
}

.about__card h4 {
  margin-bottom: 10px;
  /*font-size: 1.2rem;*/
  font-weight: 500;
  color: var(--text-dark);
}




@media (width > 576px) {
  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  
  .room__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__content {
    grid-column: 2/3;
  }
}

@media (width > 1024px) {
  .room__grid {
    gap: 2rem;
  }
}
