/* RESET */
body {
  margin: 0;
   font-family: 'Figtree', sans-serif;
  background: #ffff;
  
}

/* ================= NAVBAR ================= */
.custom-navbar {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  z-index: 999;
  border-radius: 40px;
  background-color: #fff;

  /* Glass Effect 
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  */

  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  color: #333;
  margin: 0 15px;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #000;
}
.nav-logo {
  height: 40px;              /* keep original navbar height reference */
  transform: scale(1.8);     /* increase visual size */
  transform-origin: left center;
  display: inline-block;
}


/* ================= HERO ================= */
.hero {
  height: 100vh;
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 100px;
  position: relative;
}

/* Background image as HTML element */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;   /* same as background-size: cover */
  object-position: center;

  z-index: 1;          /* behind content */
}


.hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;   /* ✅ centers button + text together */
  text-align: center;    /* ✅ center text */

  color: white;
}

.hero-content h2 {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}


/* ================= BUTTON ================= */
.explore-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 30px;
  border: 1px solid white;
  background: transparent;
  color: white;
  font-size: 14px;
  overflow: hidden;

  cursor: pointer;
}

/* Wrap text for animation */
.explore-btn span.text {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Arrow initial state */
.explore-btn .arrow {
  position: absolute;
  right: 20px;
  
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-size: 20px;
}

/* Hover effect */
.explore-btn:hover span.text {
  transform: translateX(-10px); /* text moves left */
}

.explore-btn:hover .arrow {
  opacity: 1;
  transform: translateX(0); /* arrow slides in */
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .hero {
    height: 100vh;              /* reduce height */
    padding-right: 50px;        /* less spacing */
    justify-content: center;    /* center content */
    text-align: center;
  }
}


@media (max-width: 768px) {
  .hero {
    height: auto;               /* flexible height */
    min-height: 80vh;
    
    padding: 60px 20px;         /* equal padding */
    
    justify-content: center;    /* center content */
    align-items: center;

    background-position: center;
    background-size: cover;
    
    text-align: center;
  }
}


@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
    padding: 50px 15px;
    background-position: center top; /* better crop */
  }
}

/* ================= SPOTLIGHT SECTION ================= */
.spotlight {
  padding: 60px 0;
}

.spotlight h4 {
  letter-spacing: 2px;
  margin-bottom: 30px;
}

/* ================= CARD ================= */
.card-item {
  text-align: center;
  padding: 10px;
}

/* Image wrapper */
.card-img {
  position: relative;
  overflow: hidden;
}

/* Both images */
.card-img img {
  width: 100%;
  display: block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Top image */
.front-img {
  position: relative;
  z-index: 1;
}

/* Hover image */
.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Hover Effect */
.card-item:hover .hover-img {
  opacity: 1;
}

.card-item:hover .front-img {
  opacity: 0;
}

/* Optional zoom effect */
.card-item:hover img {
  transform: scale(1.05);
}

/* Text styling */
.card-item h6 {
  margin-top: 15px;
  font-size: 18px;
  letter-spacing: 1px;
}

.discover {
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
  color: #000;
}

@media (max-width: 992px) {

  .spotlight {
    padding: 50px 20px;
    text-align: center;
  }

  .spotlight h4 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .card-item {
    padding: 8px;
  }

  .card-item h6 {
    font-size: 16px;
  }

  .discover {
    font-size: 14px;
  }
}

@media (max-width: 768px) {

  .spotlight {
    padding: 40px 15px;
  }

  .spotlight h4 {
    font-size: 20px;
    letter-spacing: 1px;
  }

  /* Stack cards nicely */
  .card-item {
    margin-bottom: 25px;
  }

  /* Image fix */
  .card-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .card-item h6 {
    font-size: 15px;
    margin-top: 10px;
  }

  .discover {
    font-size: 13px;
  }
}

@media (max-width: 480px) {

  .spotlight {
    padding: 30px 10px;
  }

  .spotlight h4 {
    font-size: 18px;
  }

  .card-item h6 {
    font-size: 14px;
  }

  .discover {
    font-size: 12px;
  }
}

/* ================= WHY SECTION ================= */
/* ================= WHY SECTION ================= */
.why-section {

  position: relative;
}

/* Overlay for blur effect */
.why-overlay {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  padding: 60px 0;
}

/* Title */
.why-section h5 {
  letter-spacing: 2px;
  font-weight: 500;
}

/* Card */
.why-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;

  transition: all 0.4s ease;
  cursor: pointer;
}

/* Icon */
.why-icon {
  width: 50px;
  margin-bottom: 15px;
}

/* Text */
.why-card h6 {
  font-size: 16px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: #555;
}

/* 🔥 HOVER EFFECT (LIKE YOUR IMAGE) */
.why-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
  background: #fff;
}

/* Icon animation */
.why-card:hover .why-icon {
  transform: scale(1.1);
  transition: 0.3s;
}

/* ================= CRAFT SECTION ================= */
/* ================= CRAFT SECTION ================= */
.craft-section {
  background: url('assets/craft.png') ;
  height: 80vh;

  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Overlay for readability */
.craft-overlay {
  width: 100%;
  height: 100%;
 
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.craft-section .col-md-6:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;   /* ✅ center everything */
  height: 100%;
  text-align: center;    /* ✅ center text */
}

.craft-section h6 {
 margin: 0;
 font-size: 20px;
  align-self: flex-start;
  margin-left: calc((100% - 50%) / 2);   /* ✅ move h6 to left */
  text-align: left;         /* ✅ ensure left text */
}

.craft-section h2 {
  margin-bottom: 10px;
  font-size: 90px;
  font-weight: 500;
  letter-spacing: 1px;
   font-family: 'Instrument Serif', sans-serif !important;
}

.craft-section p {
  margin-bottom: 15px;
  max-width: 400px;
}

/* Button */
.craft-btn {
  position: relative;   /* ✅ IMPORTANT */

  background: #a00000;
  color: #fff;
  border: none;
  padding: 10px 35px;  /* extra space for arrow */
  font-size: 14px;
  transition: 0.3s;

  display: inline-flex;  /* better alignment */
  align-items: center;
  justify-content: center;

  margin: 15px auto 0;
  cursor: pointer;
}

.craft-btn:hover {
  background: #800000;
}

.craft-btn span.text {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Arrow initial state */
.craft-btn .arrow {
  position: absolute;
  right: 15px;

  color: #fff;  /* ✅ make arrow white */
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-size: 20px;
}
/* Hover effect */
.craft-btn:hover span.text {
  transform: translateX(-10px); /* text moves left */
}

.craft-btn:hover .arrow {
  opacity: 1;
  transform: translateX(0); /* arrow slides in */
}



/* Girl Image */
.craft-girl {
  position: absolute;
  bottom: 0;
  right: 10%;   /* adjust spacing */
  align-items: center;

  height: 110%;   /* control size */
  object-fit: contain;

  z-index: 2; 
}

/* ================= MOBILE (max-width: 768px) ================= */
@media (max-width: 768px) {

  .craft-section {
    height: 10%;              /* avoid overflow */
    padding: 60px 0px 0px 0px;
    text-align: center;
  }

  .craft-section .col-md-6:first-child {
    align-items: center;
    text-align: center;
  }

  /* Small heading */
  .craft-section h6 {
    font-size: 14px;
    margin-left: 0;
    align-self: center;        /* center on mobile */
    text-align: center;
  }

  /* Main heading */
  .craft-section h2 {
    font-size: 36px;           /* reduced from 90px */
    line-height: 1.2;
  }

  /* Paragraph */
  .craft-section p {
    font-size: 14px;
    max-width: 100%;
    padding: 0 10px;
  }

  /* Button */
  .craft-btn {
    padding: 8px 25px;
    font-size: 13px;
  }

  /* Arrow adjust */
  .craft-btn .arrow {
    right: 10px;
    font-size: 16px;
  }

  /* Girl Image */
  .craft-girl {
    position: relative;   /* remove absolute for stacking */
    right: auto;
    bottom: auto;
    height: 250px;        /* reduce size */
    margin-top: 20px;
  }
}


/* ================= SMALL MOBILE (max-width: 480px) ================= */
@media (max-width: 480px) {

  .craft-section h2 {
    font-size: 28px;
  }

  .craft-section h6 {
    font-size: 12px;
  }

  .craft-section p {
    font-size: 13px;
  }

  .craft-girl {
    height: 200px;   /* even smaller */
  }

  .craft-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}


/* ================= SHOP SECTION ================= */
.shop-section {
  padding: 60px 0;
  background: #fff;
  margin-top: 40px;
}

.shop-section h5 {
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Cards */
.shop-card {
  text-align: center;
  cursor: pointer;
}

.shop-card img {
  width: 100%;
  transition: 0.3s;
}

.shop-card p {
  margin-top: 10px;
  font-size: 22px;
}

/* Hover effect */
.shop-card:hover img {
  transform: scale(1.05);
}
.shop-card:hover p{
    text-decoration: underline;
}

.explore-all:hover{
    text-decoration: none;
}


/* ================= TESTIMONIAL ================= */
.testimonial-section {
  padding: 80px 0;
  background: #ffff;
}

.testimonial-img {
  width: 80%;
}

/* Content */
.testimonial-content {
  padding: 20px 40px;
}

.quote {
  font-size: 60px;
  color: #a00000;
  margin-bottom: 10px;
}

.testimonial-content p {
  color: #777;
  line-height: 1.6;
}

.testimonial-content h6 {
  margin-top: 10px;
  font-style: italic;
  color: #555;
}

/* Dots */
.dots {
  margin-top: 15px;
}

.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 3px;
  border-radius: 50%;
  background: #ccc;
}

.dots .active {
  background: #a00000;
}

#testimonial-text,
#testimonial-author {
  display: inline-block;
  position: relative;
}

/* Slide out to left */
.slide-out {
  animation: slideOut 0.4s forwards;
}

/* Slide in from right */
.slide-in {
  animation: slideIn 0.4s forwards;
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50px);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .testimonial-section {
    padding: 60px 20px;   /* reduce spacing */
  }

  .testimonial-img {
    width: 90%;           /* slightly bigger */
    margin: 0 auto;       /* center image */
    display: block;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 50px 15px;
    text-align: center;   /* center content */
  }

  .testimonial-img {
    width: 100%;          /* full width */
    max-width: 350px;     /* prevent too large */
    margin: 20px auto;    /* spacing + center */
  }
}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .testimonial-section {
    padding: 40px 10px;
  }

  .testimonial-img {
    max-width: 280px;     /* smaller screens */
  }
}

/* ================= CONTACT ================= */
.contact-section {
  background: #f3ede6;
}

/* Form side */
.contact-form {
  padding: 60px;
  background: url('assets/craft.png'); /* same texture */
}

.contact-form h4 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-form p {
  text-align: center;
  font-size: 13px;
  margin-bottom: 20px;
}

/* Inputs */
.contact-form label {
  font-size: 13px;
  margin-top: 10px;
}

.contact-form .form-control {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

/* Dropdown container */
.custom-dropdown {
  position: relative;
  width: 100%;
  cursor: pointer;
}

/* Header (like select box) */
.dropdown-header {
  border: 1px solid #ccc;
  padding: 8px 10px;
  background: #fff;
  position: relative;
}

/* Arrow */
.dropdown-header .arrow {
  position: absolute;
  right: 10px;
}

/* Dropdown list */
.dropdown-list {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 10;
}

/* Show dropdown */
.custom-dropdown.active .dropdown-list {
  display: block;
}

/* Checkbox items */

.dropdown-list {
  max-height: 200px;   /* adjust height as needed */
  overflow-y: auto;    /* vertical scroll */
  padding-right: 5px;  /* space for scrollbar */
}

.dropdown-list label {
  display: flex;
  justify-content: space-between; /* ✅ pushes checkbox to right */
  align-items: center;

  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
}

.dropdown-list input[type="checkbox"] {
  margin-left: 10px;
}

.dropdown-list label:hover {
  background: #f5f5f5;
}

/* Button */
.submit-btn {
  background: #a00000;
  color: #fff;
  border: none;
  padding: 10px;
  width: 120px;
  margin-top: 10px;
}

/* Image */
.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============== FOOTER ================== */
.footer-section {
  background-color: #EAE6DE; 
  padding: 50px 0 10px;
}

.footer-logo {
    height: 150px;
    max-width: 100%;
    object-fit: contain;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #8b0000;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.follow-text {
    color: #8b0000;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.social-icons i {
    font-size: 20px;
    color: #8b0000;
    margin-left: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    opacity: 0.6;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  .footer-section {
    padding: 40px 0 5px;   /* reduce height */
  }

  .footer-logo {
    height: 120px;         /* smaller logo */
  }

  .footer-links a {
    font-size: 14px;
  }

  .follow-text {
    font-size: 16px;
  }

  .social-icons i {
    font-size: 18px;
    margin-left: 10px;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .footer-section {
    padding: 30px 0 5px;   /* compact */
  }

  .footer-logo {
    height: 80px;
    padding-bottom: 0;
    margin-bottom: 0;          /* reduce from 30vh */
  }

  .footer-links li {
    margin-bottom: 6px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .follow-text {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .social-icons i {
    font-size: 16px;
    margin-left: 8px;
  }
}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .footer-section {
    padding: 20px 0 5px 0;
  }

  .footer-logo {
    height: 60px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .follow-text {
    font-size: 13px;
  }

  .social-icons i {
    font-size: 14px;
    margin-left: 6px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-logo {
        height: 100px;
    }

    .social-icons i {
        margin: 0 8px;
    }
    .footer-links a {
    font-size: 14px;
    }
    .follow-text {
    
    font-size: 16px;
    }
}


/* ==================== ANARKALI PAGE ==================== */


/* CATEGORY SECTION */
.category-section {
    background: #EAE6DE;
    padding: 40px 0 0 0;
    height: 75vh;

    position: relative; /* IMPORTANT */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* push image to bottom */
}

.category-title {
    letter-spacing: 2px;
    margin-top: 100px;
    text-align: center;
}

/* FIXED IMAGE ALIGNMENT */
.category-image {
    position: relative; /* remove absolute */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.category-image img {
    max-height: 500px;
    object-fit: contain;
}
/* dots */
.slider-dots {
    position: absolute;
    right: 20px;
    bottom: 10px;
}

.slider-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 3px;
    border-radius: 50%;
    background: #ccc;
}

.slider-dots .active {
    background: #800000;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  .category-section {
    height: auto;              /* remove fixed height */
    min-height: 60vh;          /* keep visual balance */
    padding: 50px 0px  0px;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .category-section {
    height: auto;              /* flexible height */
    min-height: auto;

    padding: 40px 0px 0px 0px;

    justify-content: center;   /* center content instead of bottom */
    text-align: center;
  }
}


@media (max-width: 480px) {

  .category-section {
    padding: 30px 0px 0px 0px;
  }
}


/* ==========ABOUT SECTION ============*/
.about-category {
    padding: 60px 0;
    background: #fff;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-heading span {
    display: block;
    width: 120px;
    height: 1px;
    background: #999;
}

.section-heading h6 {
    letter-spacing: 1px;
    font-size: 24px;
}

.about-category p {
    margin-top: 15px;
    color: #777;
    font-size: 14px;
}


/* COLOR SECTION */
.color-section {
    padding: 50px 0;
    background: #fff;
}

.color-item {
    text-align: center;
}

.color-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
}

/* colors */
.pink { background: #e3b8b5; }
.lavender { background: #a98adf; }
.blue { background: #7fa9c9; }
.yellow { background: #f2c262; }

.color-item p {
    margin-top: 10px;
    font-size: 13px;
}

/* ----- WHY THIS STYLE SECTION ---------*/
.why-style-section {
    background: #EAE6DE;
    padding: 60px 0;
}

/* Cards */
.style-card {
    text-align: center;
    padding: 10px 20px;
}

.style-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

/* Title */
.style-card h6 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 400;
}

/* Description */
.style-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* --------Photo Gallery Cards----------- */

.gallery-section{
  margin-top: 80px;
}
.gallery-card {
    overflow: hidden;
}

/* Images */
.gallery-card img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover zoom */
.gallery-card:hover img {
    transform: scale(1.08);
}