/* ===============================
   RESET & GLOBAL
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
}

/* ===============================
   NAVBAR
================================ */

.navbar {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  font-weight: 700;
  font-size: 22px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}

/* ===============================
   HERO SECTION
================================ */

#hero {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

#hero h1 {
  font-weight: 700;
  margin-bottom: 15px;
}

#hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* ===============================
   SECTION HEADINGS
================================ */

section h2 {
  font-weight: 600;
  margin-bottom: 30px;
}

/* ===============================
   SERVICES
================================ */

#services .border {
  background-color: #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .border:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* ===============================
   CONTACT
================================ */

#contact p {
  font-size: 16px;
}

/* ===============================
   FOOTER
================================ */

footer {
  font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  #hero h1 {
    font-size: 32px;
  }

  .navbar-brand {
    font-size: 20px;
  }
}



/* ===============================
   BRAND HEADER SECTION
================================ */

#brand-header {
  background: #9B6FA6;
  padding: 80px 0;
}

/* Logo */
/* Logo – default (desktop & tablet) */
.brand-logo img {
  max-width: 200px;          /* Larger by default */
  height: auto;
  display: block;
  margin: 0 auto;

  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(212, 175, 55, 0.2);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect (desktop only) */
@media (hover: hover) {
  .brand-logo img:hover {
    transform: scale(1.06);
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.55),
      0 0 40px rgba(212, 175, 55, 0.35);
  }
}

/* Mobile – make logo EVEN BIGGER */
@media (max-width: 768px) {
  .brand-logo img {
    max-width: 400px;       /* Bigger on mobile */
    padding: 12px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .brand-logo img {
    max-width: 240px;       /* Strong brand visibility */
  }
}


/* HEMIS 24 - Gold Gradient */
.brand-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;

  /* Gold Metallic Gradient */
  background: linear-gradient(
    180deg,
    #8c6a1f 0%,
    #d4af37 25%,
    #fff1a8 50%,
    #d4af37 75%,
    #8c6a1f 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tagline */
.brand-tagline {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 2px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .brand-title {
    font-size: 34px;
  }

  .brand-tagline {
    font-size: 15px;
  }

  .brand-logo img {
    max-width: 110px;
  }
}


/* ===============================
   SALON SERVICES
================================ */

/* ===============================
   SALON SERVICES
================================ */

#salon-services {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Service Card */
.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
}

/* Image */
.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Overlay */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.85)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}

/* Text */
.service-overlay h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-overlay span {
  font-size: 14px;
  color: #d4af37; /* gold */
  letter-spacing: 1px;
}

/* Hover Effect */
.service-card:hover img {
  transform: scale(1.08);
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.95)
  );
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .service-card img {
    height: 220px;
  }
}


/* ===============================
   MENU HEADER (SUBPAGE)
================================ */

#menu-header {
  background-color: #9B6FA6; /* purple theme */
  padding: 50px 0;
}

/* MEN Title – Soft Gold Gradient */
.menu-title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0;

  /* Soft gold gradient */
  background: linear-gradient(
    90deg,
    #e7cf8a,
    #f6edc6,
    #d9b55f
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .menu-title {
    font-size: 40px;
    letter-spacing: 4px;
  }
}

@media (max-width: 480px) {
  .menu-title {
    font-size: 34px;
    letter-spacing: 3px;
  }
}

/* ===============================
   SERVICE PRICE SECTION
================================ */

/* Header row */
/* Header row */
/* ===============================
   SERVICE PRICE SECTION
================================ */

/* ===============================
   SERVICE PRICE SECTION
================================ */

/* ===============================
   SERVICE PRICE SECTION
================================ */

#service-price {
  background-color: #f7f6f4; /* off-white background */
  padding: 60px 0;
}

/* Main price box */
.price-box {
  max-width: 650px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* Row structure */
.price-row {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #eee;
}

.price-row:last-child {
  border-bottom: none;
}

/* ===============================
   HEADER ROW (PURPLE)
================================ */

.price-header .service-col,
.price-header .price-col {
  background-color: #9B6FA6; /* purple */
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===============================
   NORMAL SERVICE ROWS
================================ */

.service-col {
  flex: 1;
  padding: 16px 20px;
  font-size: 17px;
  color: #333;
  background-color: #fdfdfd; /* off-white */
}

/* Price column */
.price-col {
  width: 120px;
  padding: 16px 20px;
  font-size: 17px;
  font-weight: 600;
  text-align: right;
  color: #333;
  background-color: #fdfdfd; /* off-white */
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .price-box {
    margin: 0 15px;
  }

  .service-col,
  .price-col {
    font-size: 16px;
    padding: 14px 16px;
  }

  .price-col {
    width: 100px;
  }
}



/* ===============================
   BACK TO HOME SECTION
================================ */

#back-home {
  background-color: #f7f6f4; /* off-white */
  padding: 10px 0;
}

/* Clickable box */
.back-home-box {
  display: inline-block;
  background-color: #9B6FA6; /* purple */
  color: #ffffff;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 10px;
  text-decoration: none;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Hover effect */
.back-home-box:hover {
  background-color: #7f5290; /* darker purple */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}


/* ===============================
   GALLERY SECTION
================================ */

#gallery {
  background-color: #f7f6f4; /* off-white */
  padding: 10px 0;
}

/* Title */
.gallery-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #333;
}

/* Gallery item */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

/* Image */
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .gallery-title {
    font-size: 28px;
  }

  .gallery-item img {
    height: 220px;
  }
}




  section img {
    transition: transform 0.3s ease;
  }

  section img:hover {
    transform: scale(1.05);
  }

  section p {
    font-weight: 500;
  }

/* ================= ACADEMY COURSE ================= */

.academy-course-section {
  padding: 70px 0;
  background-color: #f8f9fa;
}

.academy-header h2 {
  font-weight: 700;
  letter-spacing: 1px;
}

.academy-header p {
  color: #777;
  margin-top: 10px;
  font-size: 16px;
}

/* Timeline layout */
.academy-timeline {
  margin-top: 50px;
  border-left: 3px solid #d4af37; /* gold accent */
  padding-left: 30px;
}

.academy-week {
  margin-bottom: 40px;
  position: relative;
}

.academy-week::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 6px;
  width: 14px;
  height: 14px;
  background-color: #d4af37;
  border-radius: 50%;
}

.academy-week h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.academy-week ul {
  padding-left: 18px;
}

.academy-week ul li {
  margin-bottom: 6px;
  color: #555;
}

/* Course Includes */
.academy-includes {
  margin-top: 60px;
  text-align: center;
}

.academy-includes h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.includes-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.includes-list span {
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 14px;
}



html {
  scroll-behavior: smooth;
}



.brand-nav {
  margin-top: 15px;
}

.brand-menu-link {
  display: inline-block;
  padding: 10px 28px;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #d4af37; /* gold */
  border: 1px solid #d4af37;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.brand-menu-link:hover {
  background: #d4af37;
  color: #000;
}



/* Academy Courses Section */

.academy-courses {
    background-color: #f9f9f9;
}

.course-box {
    text-decoration: none;
    color: inherit;
}

.course-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.course-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.course-title {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #c9a24d, #f5d37a);
    color: #000;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}


<!-- Hair Styling Course Curriculum -->

/* Hair Course – Premium Styling */

.hair-course {
    background: linear-gradient(180deg, #faf9f7, #f2efe9);
}

.week-card {
    background: #ffffff;
    padding: 28px 26px;
    height: 100%;
    border-radius: 18px;
    border: 1px solid rgba(200, 180, 120, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* subtle top accent */
.week-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c9a24d, #f5d37a);
}

.week-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.week-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b08a2e;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.week-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e1e1e;
}

.week-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.week-card ul li {
    font-size: 14.5px;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #555;
    position: relative;
    line-height: 1.6;
}

/* custom bullet */
.week-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #c9a24d;
    font-size: 22px;
    line-height: 1;
}

/* Responsive polish */
@media (max-width: 767px) {
    .week-subtitle {
        font-size: 17px;
    }

    .week-card {
        padding: 24px 22px;
    }
}


/* Nails Course Section */

.nails-course {
    background: linear-gradient(180deg, #fbfaf8, #f1eee7);
}

.course-duration {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(200, 180, 120, 0.3);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.course-duration h6 {
    font-weight: 700;
    color: #b08a2e;
    margin-bottom: 8px;
}

.course-duration p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Reusable Week Cards */

.week-card {
    background: #ffffff;
    padding: 28px 26px;
    height: 100%;
    border-radius: 18px;
    border: 1px solid rgba(200, 180, 120, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.week-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c9a24d, #f5d37a);
}

.week-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.week-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b08a2e;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.week-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.week-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.week-card ul li {
    font-size: 14.5px;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #555;
    position: relative;
    line-height: 1.6;
}

.week-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #c9a24d;
    font-size: 22px;
    line-height: 1;
}

/* Mobile Polish */
@media (max-width: 767px) {
    .week-card {
        padding: 24px 22px;
    }

    .week-subtitle {
        font-size: 17px;
    }
}


/* Makeup Course Section */

.makeup-course {
    background: linear-gradient(180deg, #fdfbfa, #f3ede8);
}

.course-duration {
    background: #ffffff;
    padding: 22px 26px;
    border-radius: 16px;
    border: 1px solid rgba(200, 170, 140, 0.3);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.course-duration h6 {
    font-weight: 700;
    color: #b07c5a;
    margin-bottom: 8px;
}

.course-duration p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Reusable Week Cards */

.week-card {
    background: #ffffff;
    padding: 28px 26px;
    height: 100%;
    border-radius: 20px;
    border: 1px solid rgba(200, 170, 140, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.week-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d2a679, #f1cfa4);
}

.week-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.week-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b07c5a;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.week-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.week-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.week-card ul li {
    font-size: 14.5px;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #555;
    position: relative;
    line-height: 1.6;
}

.week-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #d2a679;
    font-size: 22px;
    line-height: 1;
}

/* Mobile Polish */
@media (max-width: 767px) {
    .week-card {
        padding: 24px 22px;
    }

    .week-subtitle {
        font-size: 17px;
    }
}


/* Beauty Course Section */

.beauty-course {
    background: linear-gradient(180deg, #fcfbf9, #f2efe8);
}

.course-duration {
    background: #ffffff;
    padding: 22px 26px;
    border-radius: 16px;
    border: 1px solid rgba(190, 170, 120, 0.3);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.course-duration h6 {
    font-weight: 700;
    color: #9c8a4d;
    margin-bottom: 8px;
}

.course-duration p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Week Cards */

.week-card {
    background: #ffffff;
    padding: 28px 26px;
    height: 100%;
    border-radius: 20px;
    border: 1px solid rgba(190, 170, 120, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.week-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c7b06b, #efe1a8);
}

.week-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.week-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #9c8a4d;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.week-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.week-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.week-card ul li {
    font-size: 14.5px;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #555;
    position: relative;
    line-height: 1.6;
}

.week-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #c7b06b;
    font-size: 22px;
    line-height: 1;
}

/* Mobile */
@media (max-width: 767px) {
    .week-card {
        padding: 24px 22px;
    }

    .week-subtitle {
        font-size: 17px;
    }
}
