@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@400;600;700&display=swap');

:root {
  --bg-main: #ffffff;
  --bg-panel: #fdfbf7;
  --bg-glass: rgba(255, 255, 255, 0.9);
  --text-main: #2d2a26;
  --text-muted: #5e5e5e;
  --accent-color: #bc8a5f;
  --accent-hover: #9e714a;
  --border-light: rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 4px 25px rgba(0, 0, 0, 0.05);
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-main);
}

h2,
h3 {
  color: var(--accent-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  /* Fully rounded buttons look more modern */
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(188, 138, 95, 0.2);
}

.btn:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 8px 25px rgba(188, 138, 95, 0.3);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid var(--accent-color);
  color: var(--accent-color);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

section {
  padding: 120px 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  background-color: #212121;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

header.scrolled .nav-links a {
  color: #ffffff;
}

header.scrolled .nav-links a:hover {
  color: var(--accent-color);
}

header.scrolled .logo {
  color: var(--accent-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #212121;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 2px;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: #212121;
  min-width: 260px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  list-style: none;
  padding: 15px 0;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  padding: 10px 25px;
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.2s ease;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-color);
  padding-left: 32px;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--accent-color);
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Very light white overlay to make dark text readable, or dark overlay for white text. Since they want bright, light gradient */
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.8)), url('ModernPhotos/FrontLogo.jpeg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  z-index: 10;
}

.hero-tagline {
  font-family: 'Great Vibes', cursive;
  color: var(--text-main); /* Set color to matching grey/charcoal of the nav links */
  font-size: 2.2rem;
  text-transform: none;
  letter-spacing: normal;
  display: block;
  margin-bottom: 5px;
  animation: slideUp 1s ease forwards;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: var(--text-main);
  animation: slideUp 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #333;
  opacity: 0;
  font-weight: 500;
  animation: slideUp 1s ease 0.3s forwards;
}

.hero .hero-btns {
  opacity: 0;
  animation: slideUp 1s ease 0.6s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .hero .hero-btns {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

.btn-hero-secondary {
  background-color: var(--text-main);
  color: #fff;
  border: 1.5px solid var(--text-main);
  box-shadow: 0 4px 15px rgba(45, 42, 38, 0.15);
}

.btn-hero-secondary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 8px 25px rgba(188, 138, 95, 0.3);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Stats / Reviews Badge */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-panel);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  margin-bottom: 30px;
}

.rating-badge span {
  font-weight: 600;
  color: var(--text-main);
}

.stars {
  color: var(--accent-color);
}

/* Founder's Message Section */
.founder-section {
  background-color: var(--bg-main);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.founder-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.founder-quote-wrapper {
  position: relative;
  padding: 0 40px;
}

.founder-quote-wrapper .quote-icon {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.15;
  margin-bottom: 25px;
  display: block;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.7;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 35px;
  position: relative;
}

.founder-meta {
  display: inline-block;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.founder-credentials {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.founder-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .founder-section {
    padding: 40px 0;
  }
  .founder-quote-wrapper {
    background-color: var(--bg-panel);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    max-width: 480px;
    margin: 0 auto;
  }
  .founder-quote-wrapper .quote-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .founder-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .founder-name {
    font-size: 1.1rem;
  }
  .founder-credentials {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  .founder-title {
    font-size: 0.8rem;
  }
}

/* Services */
.services {
  background-color: var(--bg-panel);
}

.our-services {
  background-color: var(--bg-main);
}

.services-bullet-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.services-bullet-list li {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.services-bullet-list li::before {
  content: "•";
  color: var(--accent-color);
  font-size: 1.5rem;
  position: absolute;
  left: 5px;
  top: -2px;
}

.services-bullet-list li strong {
  color: var(--text-main);
  font-family: var(--font-sans);
  font-weight: 600;
}

/* Locations Carousel */
.locations-carousel {
  background-color: var(--bg-main);
  overflow: hidden;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-tag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 35px 35px;
  color: rgba(255, 255, 255, 0.5);
  /* 50% Transparency */
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 15px;
  text-decoration-thickness: 3px;
  z-index: 5;
  pointer-events: none;

  /* Smooth readability vignette (no solid badge background) */
  background: radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 30%, transparent 70%);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  transition: all 0.3s ease;
}

.slide-overlay h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.slide-overlay p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.visit-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.visit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: all 0.6s ease;
}

.visit-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.visit-btn:hover::before {
  left: 100%;
}

.visit-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.visit-btn i {
  transition: transform 0.3s ease;
}

.visit-btn:hover i {
  transform: translateX(5px);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #fff;
  width: 30px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .carousel-slide {
    aspect-ratio: 1 / 1;
  }

  .slide-overlay {
    padding: 25px 25px 45px 25px;
  }

  .slide-overlay h3 {
    font-size: 1.5rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    top: 35%;
  }
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-panel);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  border: 1px solid var(--border-light);
  transition: all 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover .placeholder-img {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: #fff;
}

.gallery-item::after {
  content: 'VIEW';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  color: #fff;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-footer {
  text-align: center;
  margin-top: 50px;
}

.btn-text {
  background: none;
  border: none;
  color: var(--accent-color);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-text:hover {
  color: var(--text-main);
  transform: translateX(5px);
}

.btn-text i {
  transition: transform 0.3s ease;
}

.btn-text:hover i {
  transform: translateX(5px);
}

/* Reviews Section */
.reviews {
  background-color: var(--bg-main);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.reviews-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

.reviews-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.reviews-track .review-card {
  flex: 0 0 calc(33.333% - 20px);
  background-color: var(--bg-panel);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviews-track .review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.reviews-carousel-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  z-index: 10;
}

.reviews-carousel-btn:hover {
  background: var(--accent-color);
  color: var(--bg-main);
  border-color: var(--accent-color);
}

.reviews-carousel-btn.prev-btn {
  left: -60px;
}

.reviews-carousel-btn.next-btn {
  right: -60px;
}

@media (max-width: 1200px) {
  .reviews-carousel-btn.prev-btn { left: -15px; }
  .reviews-carousel-btn.next-btn { right: -15px; }
}

@media (max-width: 991px) {
  .reviews-track .review-card {
    flex: 0 0 calc(50% - 15px);
  }
  .reviews-carousel-btn {
    top: auto;
    bottom: -60px;
    transform: none;
  }
  .reviews-carousel-btn.prev-btn {
    left: calc(50% - 55px);
  }
  .reviews-carousel-btn.next-btn {
    right: calc(50% - 55px);
  }
  .reviews {
    padding-bottom: 120px !important;
  }
}

@media (max-width: 768px) {
  .reviews-track .review-card {
    flex: 0 0 100%;
  }
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.reviewer-info h4 {
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 5px;
}

.review-text {
  font-style: italic;
  color: var(--text-muted);
}

/* Shop Info Section */
.shop-info {
  background-color: var(--bg-main);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.shop-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.shop-details {
  transition: opacity 0.3s ease;
}

.est-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.shop-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 25px 0 35px 0;
}

.shop-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.shop-map-btn:hover {
  background-color: var(--accent-color);
  color: var(--bg-main);
}

/* Bento style grid gallery */
.shop-gallery-container {
  transition: opacity 0.3s ease;
}

.shop-gallery {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  height: 420px;
}

.shop-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  aspect-ratio: auto;
}

.shop-gallery .gallery-item.main-img {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.shop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.shop-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .shop-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .shop-gallery {
    height: 320px;
  }
}
@media (max-width: 576px) {
  .shop-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 160px 160px;
    height: auto;
    gap: 20px;
  }
  .shop-gallery .gallery-item.main-img {
    grid-row: auto;
    grid-column: auto;
  }
}

/* Contact & Info Section */
.contact {
  background-color: var(--bg-panel);
}

.contact-info {
  transition: opacity 0.3s ease;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  background-color: var(--bg-main);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}

.salon-type-tag {
  color: #ff0055;
  background: rgba(255, 0, 85, 0.04);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 0, 85, 0.15);
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(255, 0, 85, 0.05);
  transition: all 0.3s ease;
}

.salon-type-tag:hover {
  background: rgba(255, 0, 85, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .contact-header {
    flex-direction: column;
    gap: 5px !important;
  }
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-top: 5px;
}

.contact-details h4 {
  color: var(--text-main);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-details p {
  color: var(--text-muted);
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: opacity 0.3s ease;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
footer {
  background-color: var(--text-main);
  padding: 40px 0;
  text-align: center;
}

footer h3 {
  color: #fff;
}

footer p {
  color: #a0a0a0;
  font-size: 0.9rem;
}

/* Utilities / Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Mobile Responsiveness */
@media (max-width: 900px) {

  .about-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  body.nav-open {
    overflow: hidden;
  }

  header {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 20px 0;
    border-bottom: none;
    box-shadow: none;
    transition: all 0.4s ease;
  }

  header.scrolled {
    background-color: #212121 !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: var(--shadow-soft) !important;
  }

  header .logo {
    color: var(--accent-color) !important;
    text-shadow: none !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100svh;
    background-color: rgba(33, 33, 33, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(env(safe-area-inset-top) + 80px) 0 10vh 0;
    gap: 5px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: none;
    z-index: 1500;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 8px 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation for menu items */
  .nav-links.active li:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(7) { transition-delay: 0.35s; }

  .nav-links a {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
    padding: 6px 0;
  }

  .nav-links .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 8px 0;
    background-color: transparent;
    border-radius: 0;
    display: none;
    margin-top: 5px;
    flex-direction: column;
    align-items: center;
  }

  .nav-links .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .nav-links .dropdown-menu a {
    font-size: 1.05rem;
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1600;
    color: var(--accent-color);
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

/* Call Button pulse animation for Mobile */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(188, 138, 95, 0.4);
  z-index: 1200;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.floating-call-btn:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(188, 138, 95, 0.7);
  }

  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 20px rgba(188, 138, 95, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(188, 138, 95, 0);
  }
}

@media (max-width: 768px) {
  .floating-call-btn {
    display: flex;
    bottom: 40px;
    right: 25px;
  }
}

/* Lightbox Styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img,
.lightbox-video {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  object-fit: contain;
  width: auto;
  height: auto;
  min-width: 280px;
}

.instagram-btn {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid var(--accent-color);
  padding: 8px 18px;
  border-radius: 4px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.instagram-btn:hover {
  background-color: var(--accent-color);
  color: var(--bg-main) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.expertise-card {
  background-color: var(--bg-panel);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(188, 138, 95, 0.15);
}

.expertise-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.expertise-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.expertise-card:hover .expertise-img {
  transform: scale(1.08);
}

.expertise-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.expertise-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.expertise-card:hover h3 {
  color: var(--accent-color);
}

.expertise-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .expertise-img-wrapper {
    height: 200px;
  }
}

@media (min-width: 768px) {

  .lightbox-img,
  .lightbox-video {
    min-width: 600px;
  }
}

.lightbox-modal.active .lightbox-img,
.lightbox-modal.active .lightbox-video {
  transform: scale(1);
}

@media (max-width: 576px) {
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
  }
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 3100;
}

.lightbox-close:hover {
  color: var(--accent-color);
  transform: scale(1.1) rotate(90deg);
}

body.modal-open {
  overflow: hidden;
}

/* --- Mobile Responsiveness Optimizations --- */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .contact-card {
    padding: 25px;
  }

  .map-container {
    min-height: 300px;
  }

  /* Removed .nav-links li margin override to keep items centered */

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .slide-overlay p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .floating-call-btn {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    bottom: 20px;
    right: 20px;
  }

  .about-text h2,
  .section-header h2 {
    font-size: 1.8rem;
  }

  .slide-overlay h3 {
    font-size: 1.3rem;
  }

  .slide-tag {
    font-size: 1.2rem;
    padding: 20px;
  }
}