/* ======================= */
/* GLOBAL RESET & BASE STYLES */
/* ======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
  padding-top: 80px; /* navbar height */
}

/* ======================= */
/* NAVBAR */
/* ======================= */
.main-navbar {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: 0.3s;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.navbar-brand span {
  color: #e91e63;
}

.navbar-nav .nav-link {
  color: #fff;
  margin: 0 10px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #e91e63;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* ======================= */
/* HERO SECTION */
/* ======================= */
.hero-img,
.hero-video {
  height: 85vh;
  object-fit: cover;
}

.carousel-caption {
  bottom: 30%;
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================= */
/* BUTTONS */
/* ======================= */
.btn-main {
  background: #e91e63;
  color: #fff;
  border-radius: 30px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background: #c2185b;
  color: #fff;
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid #e91e63;
  color: #e91e63;
  border-radius: 30px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #e91e63;
  color: #fff;
  transform: scale(1.05);
}

/* ======================= */
/* SHOP PREVIEW */
/* ======================= */
.shop-preview {
  padding: 80px 0;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #e91e63;
}

.section-title p {
  color: #777;
  font-size: 1rem;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.product-info span {
  font-weight: 700;
  color: #e91e63;
  display: block;
  margin-bottom: 10px;
}

/* ======================= */
/* TRAINING / COURSES */
/* ======================= */
.training-section {
  background: linear-gradient(to right, #e91e63, #f06292);
  color: #fff;
  padding: 80px 0;
}

.training-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.training-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* IMAGE ANIMATION */
.training-section img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

.training-section img:hover {
  transform: scale(1.05);
}

/* ======================= */
/* RESPONSIVE */
@media (max-width: 991px) {
  .carousel-caption {
    bottom: 20%;
  }
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-img,
  .hero-video {
    height: 60vh;
  }
  .product-card img {
    height: 180px;
  }
  .training-section h2 {
    font-size: 2rem;
  }
  .training-section p {
    font-size: 1rem;
  }
}



/* ======================= */
/* SHOP PAGE */
/* ======================= */
.shop-page {
  padding: 80px 0;
  background: #f9f9f9;
}

.shop-page .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 10px;
}

.shop-page .section-title p {
  color: #777;
  font-size: 1rem;
}

.shop-page .product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.shop-page .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.shop-page .product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.shop-page .product-info h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.shop-page .product-info span {
  font-weight: 700;
  color: #e91e63;
}

.shop-page .product-info .btn-main {
  padding: 8px 20px;
  font-size: 0.9rem;
}



/* PAGE WRAPPER FLEX LAYOUT */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Full viewport height */
}

/* MAIN CONTENT EXPANDS */
main.flex-grow-1 {
  flex-grow: 1; /* Push footer to bottom if page is short */
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  flex-shrink: 0; /* Prevent shrinking */
}

/* ======================= */
/* SERVICES PAGE */
/* ======================= */
.services-page {
  padding: 80px 0;
  background: #f9f9f9;
}

.services-page .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 10px;
}

.services-page .section-title p {
  color: #777;
  font-size: 1rem;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-info h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-info p {
  font-size: 0.95rem;
  color: #555;
  min-height: 50px; /* Align cards height */
}

.service-info span {
  font-weight: 700;
  color: #e91e63;
  display: block;
  margin-bottom: 10px;
}

.service-info .btn-main {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .service-card img {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .service-card img {
    height: 160px;
  }
}



/* ======================= */
/* PORTFOLIO PAGE */
/* ======================= */
.portfolio-page {
  padding: 80px 0;
  background: #f9f9f9;
}

.portfolio-page .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 10px;
}

.portfolio-page .section-title p {
  color: #777;
  font-size: 1rem;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.portfolio-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.4s ease;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .portfolio-card img {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .portfolio-card img {
    height: 160px;
  }
}


/* ======================= */
/* TRAINING / COURSES PAGE */
/* ======================= */
.training-page {
  padding: 80px 0;
  background: #f9f9f9;
}

.training-page .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 10px;
}

.training-page .section-title p {
  color: #777;
  font-size: 1rem;
}

.training-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.training-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.training-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.training-info h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.training-info p {
  font-size: 0.95rem;
  color: #555;
  min-height: 60px; /* aligns cards height */
}

.training-info span {
  font-weight: 700;
  color: #e91e63;
  display: block;
}

.training-info .btn-main {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .training-card img {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .training-card img {
    height: 160px;
  }
}


/* ======================= */
/* CONTACT PAGE */
/* ======================= */
.contact-page {
  padding: 80px 0;
  background: #f9f9f9;
}

.contact-page .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 10px;
}

.contact-page .section-title p {
  color: #777;
  font-size: 1rem;
}

.contact-form {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
  border-radius: 10px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea:focus {
  border-color: #e91e63;
  box-shadow: 0 0 10px rgba(233,30,99,0.3);
}

.contact-form button.btn-main {
  padding: 10px 30px;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .contact-form {
    padding: 20px;
  }
}


/* ======================= */
/* ABOUT PAGE */
/* ======================= */
.about-page {
  padding: 80px 0;
  background: #f9f9f9;
}

.about-page .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 10px;
}

.about-page .section-title p {
  color: #777;
  font-size: 1rem;
}

.about-page h3 {
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 15px;
}

.about-page p {
  color: #555;
  font-size: 1rem;
}

.about-card {
  background: #fff;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-card h4 {
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 0.95rem;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .about-page img {
    margin-bottom: 20px;
  }
}


/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo span {
  color: #e91e63;
}

.footer h5 {
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 15px;
}

.footer p {
  color: #ccc;
  margin-bottom: 10px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #e91e63;
  text-decoration: underline;
}

/* SOCIAL BUTTONS */
.social-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-start;
}

.social-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222; /* Circle background */
  color: #fff;      /* White icons */
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-buttons a:hover {
  background: #e91e63;
  transform: scale(1.1);
}

/* NEWSLETTER FORM */
.newsletter-form input.form-control {
  border-radius: 50px;
  padding: 10px 20px;
  flex: 1;
  border: none;
}

.newsletter-form button.btn-main {
  border-radius: 50px;
  padding: 10px 25px;
  background: #e91e63;
  border: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.newsletter-form button.btn-main:hover {
  background: #c2185b;
  transform: scale(1.05);
}

/* HR */
.footer hr {
  border-color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 767px) {
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-form button {
    width: 100%;
  }
  .social-buttons {
    justify-content: center;
  }
  .text-center.text-md-start {
    text-align: center !important;
  }
}



/* ===== HERO SECTION ===== */
.training-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0; /* No gap */
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill container without stretching */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* Dark overlay for readability */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Button styling */
.btn-main {
    background-color: #e91e63;
    color: #fff;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-main:hover {
    background-color: #d81b60;
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px){
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.2rem; }
}

@media(max-width:575px){
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .btn-main { padding: 10px 20px; font-size: 0.9rem; }
}

.video-showcase {
  height: 80vh;
  min-height: 500px;
  position: relative;
}

.video-showcase .video-bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.video-showcase .video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55); /* soft white overlay */
}

.video-showcase h1,
.video-showcase h5,
.video-showcase p {
  color: #111;
}

@media (max-width: 768px) {
  .video-showcase {
    height: 60vh;
  }

  .video-showcase h1 {
    font-size: 2rem;
  }
}


/* ===============================
   LUXURY TRAINING SECTION
================================ */
.training-section {
  background-color: transparent #ffffff;
  position: relative;
}

/* Gold accent line */
.training-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f5e08e, #d4af37);
  border-radius: 10px;
}

/* Headings */
.training-section h2 {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a1a1a;
}

/* Paragraph text */
.training-section p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Buttons */
.training-section .btn-main {
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
}

.training-section .btn-main:hover {
  background: linear-gradient(135deg, #b8962e, #d4af37);
}

.training-section .btn-outline {
  border: 2px solid #d4af37;
  color: #d4af37;
  border-radius: 30px;
  padding: 12px 30px;
}

.training-section .btn-outline:hover {
  background: #d4af37;
  color: #fff;
}

/* Image luxury feel */
.training-section img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


/* FORCE REMOVE PINK BACKGROUND */
section.training-section,
.training-section,
.training-section.py-5 {
  background: #ffffff !important;
  background-color: #ffffff !important;
}



/* ===============================
   NAIL VIDEO STRIP (CLEAN)
================================ */

.nail-video-strip {
  background: #fff;
}

/* MOBILE FIRST — 2 COLUMN GRID */
.nail-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.nail-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  aspect-ratio: 3 / 4;
}

.nail-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DESKTOP — HORIZONTAL STRIP */
@media (min-width: 992px) {

  .nail-video-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .nail-video-card {
    flex: 0 0 260px;
    aspect-ratio: 3 / 5;
    border-radius: 20px;
  }

  .nail-video-grid::-webkit-scrollbar {
    display: none;
  }

  .nail-video-card:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
  }
}

/* ===============================
   MOBILE: SHOW ONLY 2 VIDEOS
================================ */
@media (max-width: 768px) {

  .nail-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hide all videos after the 2nd */
  .nail-video-card:nth-child(n+3) {
    display: none;
  }
}



