:root {
  --bg-page: #ffeff8;
  --box-bg: #fffafb;
  --header: #ff4980;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--header);
  color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-page); /* light background */
}

::-webkit-scrollbar-thumb {
  background-color: var(--header); /* pink */
  border-radius: 10px;
  border: 2px solid var(--bg-page);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #d13a6e; /* darker pink on hover */
}


body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-page);
  color: #333;
  line-height: 1.6;
}

header {
  background-color: var(--header);
  color: white;
}

h2{
  color: var(--header); 
  text-align: center;
  padding-top:2rem;
  margin-bottom: 2rem;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 2rem;
}

.logo {
  max-height: 100px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: text-shadow 0.2s ease;
}

.nav-links a:hover {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.hamburger {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1000;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
}

.hero h1 {
  color: var(--header);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 1s ease-out forwards;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Services in home page*/
.services {
  padding: 1rem 1rem;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  background-color: var(--box-bg);
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-grid a.card {
  text-decoration: none;
  color: inherit;
  display: block; /* Ensures full box is clickable */
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 4px 15px rgba(149, 45, 83, 0.2);
  transform: translateY(-2px);
}


/*DISCOUNT BANNER*/
.typing-header {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid var(--header);
  font-size: 2rem;
  min-height: 4rem; /* ensures height stays stable even when text is empty */
}

.blinking {
  animation: blink 0.5s step-end 3;
}

@keyframes blink {
  50% { border-color: transparent; }
}


.discount-banner {
  background-color: #fffafb;
  border: 2px solid var(--header);
  color: var(--header);
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  max-width: 800px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(149, 45, 83, 0.1);
  line-height: 1.8;
}

.discount-banner p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--header);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(149, 45, 83, 0.2);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  background-color: #a53c61;
  box-shadow: 0 6px 12px rgba(149, 45, 83, 0.3);
}

/*Pricing*/

.service-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card2 {
  background-color: var(--box-bg);
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card2 ul {
  list-style: none;
  padding-left: 1.2rem;
}

.card2 ul li::before {
  content: '✦';
  color: var(--header); /* or any color */
  display: inline-block;
  width: 1rem;
  margin-left: -1.2rem;
  margin-right: 0.5rem;
}

.card2:hover {
  box-shadow: 0 4px 15px rgba(149, 45, 83, 0.2);
  transform: translateY(-2px);
}


/*Booking*/
.booking {
  max-width: 800px;
  margin: 1rem auto;
  padding: 0 1rem;
  text-align: center;
  flex-direction: column;
}

.booking iframe {
  margin-top: 0;
  display: block;
}


/*FAQ*/
.faq-section {
  max-width: 800px;
  margin: 1rem auto;
  padding: 0 1rem;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
}

.faq-question {
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
}

.faq-question.active::after {
  content: '−';
}

.faq-answer {
  display: none;
  margin-top: 0.5rem;
  color: #444;
}

.faq-answer.show {
  display: block;
}

/*T&C*/

.tc-section {
  max-width: 800px;
  margin: 1rem auto;
  padding: 0 1rem;
}

.tc-item {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}

.tc-item ul{
  margin-left: 1rem; 
}

/*
.booking-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background-color: #fffafb;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 73, 128, 0.1);
}

.booking-form label {
  font-weight: bold;
  color: var(--header);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.75rem;
  border: 2px solid var(--header);
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

.booking-form button[type="submit"] {
  margin-top: 1.5rem;
  border: none;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-left: 1rem ;
  margin-top: 0.5rem;
  text-align: left;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--header);
  width: 18px;
  height: 18px;
}

.checkbox-item label {
  font-weight: normal;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}*/

.footer {
  text-align: center;
  background-color: var(--header);
  color: white;
  padding: 1.5rem 2rem;
  line-height: 2; /* ← adds vertical spacing between lines */
}

.footer a{
    color: #fffafb;
}

.footer a:hover{
   text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}


@media (max-width: 768px) {
  .nav-links {
    display: none;
    font-size: larger;
    text-align: center;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--header);
    gap: 1rem;
  }

  .navbar.active .nav-links {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .logo {
    max-height: 100px;
  }
  .discount-banner {  margin: 2rem 2rem;}

  .service-grid2{
    grid-template-columns: 1fr;
  }
}