/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  color: #f5f5f5;
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll during animations */
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  height: 100%;
}

.hero-swiper {
  height: 100%;
}

.hero-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 2;
}

.hero-text {
  position: absolute;
  top: 76%;
  left: 2%;
  text-align: left;
  transform: none;
  color: #fff;
  z-index: 3;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.hero-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  color: #ffffff;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 110%;
}

.highlight {
  color: #e9bb24;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  
  text-align: left;
}

/* NAVBAR OVER HERO */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
  height: 80px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height: 50px;
  margin-right: 10px;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #f5f5f5;
  font-weight: 500;
}



.navbar nav a {
  text-decoration: none;
  color: #f5f5f5;
  margin-left: 20px;
  font-weight: 400;
  transition: color 0.3s ease;
  font-size: large;
  position: relative;
}

.navbar nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #e9bb24;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar nav a:hover::after {
  width: 100%;
}

.navbar nav a:hover {
  color: #e9bb24;
}

/* SWIPER NAV BUTTONS */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 40%;
  z-index: 10;
  width: 36px;
  height: 50px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 25px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: rgba(217, 119, 6, 0.8);
}

/* PROJECTS */
.projects {
  padding: 60px 0;
}

.projects h4 {
  font-family: 'Playfair Display', serif;
  color: #e9bb24;
  font-size: 2.2em;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 1s forwards;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: slideInScale 0.8s ease forwards;
}

/* Staggered animation delays for each category */
.category-link:nth-child(1) .category { animation-delay: 1.2s; }
.category-link:nth-child(2) .category { animation-delay: 1.4s; }
.category-link:nth-child(3) .category { animation-delay: 1.6s; }
.category-link:nth-child(4) .category { animation-delay: 1.8s; }

@keyframes slideInScale {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Enhanced hover effects for categories */
.category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 187, 36, 0.12), rgba(233, 187, 36, 0.06));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 8px;
  z-index: 1;
}

/* Add shimmer effect */
.category::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
  z-index: 3;
  pointer-events: none;
}

.category:hover::before {
  opacity: 1;
}

.category:hover::after {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.category:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(233, 187, 36, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(233, 187, 36, 0.2);
}

.category:hover h3{
  color: #e9bb24;
  transform: translateY(-3px);
  text-shadow: 0 0 10px rgba(233, 187, 36, 0.3);
}

.category-images {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

/* Add floating animation to images */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.category-images img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
  filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

.category:hover .category-images img {
  transform: scale(1.1) rotateZ(1deg);
  filter: brightness(1.15) contrast(1.2) saturate(1.3);
  animation: float 2s ease-in-out infinite;
}

.category h3 {
  font-family: 'Calibri';
  color: #f7f6f4;
  font-size: 1.5em;
  font-style: italic;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 4;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

/* Add pulse effect to the entire projects section */
.projects {
  position: relative;
}

.projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e9bb24, transparent);
  opacity: 0.7;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; width: 100px; }
  50% { opacity: 1; width: 200px; }
}

/* Add tilt effect on hover */
.category-link {
  perspective: 1000px;
}

.category {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category:hover {
  transform: translateY(-12px) scale(1.03) rotateX(5deg) rotateY(-2deg);
}

/* Add ripple effect on click */
.category {
  position: relative;
  overflow: hidden;
}

.category:active {
  transform: translateY(-8px) scale(0.98);
}

/* Enhanced grid layout with responsive gaps */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 20px 0;
}

.explore-products {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0;
}

.explore-products-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.explore-text {
  flex: 1;
}

.explore-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  color: #e9bb24;
  margin-bottom: 15px;
}

.explore-text p {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.explore-text .btn {
  background: #e9bb24;
  color: black;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 1.03em;
  border-radius: 4px;
  transition: background 0.3s;
  font-weight: bold;
}

.explore-text .btn:hover {
  background: #ee7f00;
}

.explore-image {
  flex: 1;
}

.explore-image img {
  width: 100%;
  border-radius: 8px;
  max-height: 400px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .explore-products-container {
    flex-direction: column;
    text-align: center;
  }

  .explore-image img {
    max-height: 300px;
  }
}


/* ENQUIRY */
.enquiry-section {
  text-align: center;
  margin: 50px 0;
}

.enquiry-section button {
  background: #e9bb24;
  color: black;
  padding: 14px 40px;
  font-size: 1.03em;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  font-weight: bold;
}

.enquiry-section button:hover {
  background: #ee7f00;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  position: relative;
}

.modal-content h2 {
  color: #e9bb24;
  font-family: 'Calibri';
}

.modal-content input,
.modal-content textarea {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  margin-bottom: 12px;
}

.modal-content button {
  background: #e9bb24;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.modal-content button:hover {
  background: #b45309;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* CONTACT */
.contact {
  background: #020202;
  color: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
}

.contact h3 {
  font-family: 'Playfair Display', serif;
  color: #e9bb24;
  margin-bottom: 15px;
}

.contact-main-heading {
  font-family: 'Playfair Display', serif;
  color: #e9bb24;
  font-size: 2.8em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-text h4 {
    font-size: 2em;
  }
  .navbar nav a {
    margin-left: 10px;
    font-size: 14px;
  }
  .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Adjust project animations for mobile */
  .projects h4::before,
  .projects h4::after {
    display: none;
  }
  
  .category:hover {
    transform: translateY(-8px) scale(1.02);
  }
  
  .category:hover .category-images img {
    transform: scale(1.06) rotateZ(0deg);
  }
  
  .projects h4 {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .categories {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .projects h4 {
    font-size: 1.6em;
  }
  
  .category {
    padding: 15px;
  }
  
  .category:hover {
    transform: translateY(-5px) scale(1.01);
  }
  
  .category h3 {
    font-size: 1.3em;
  }
}
.contact-enquiry {
  background: #0a0a0a;
  padding: 60px 0;
}

.contact-enquiry-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.shop-brief h3,
.enquiry-form h3,
.contact-info h3,
.family-photo h3 {
  font-family: 'Playfair Display', serif;
  color: #e9bb24;
  margin-bottom: 12px;
  font-size: 1.4em;
  font-weight: 700;
  text-align: left;
}

/* Center align Contact Us heading and content */
.contact-info {
  text-align: center;
}

.contact-info h3 {
  text-align: center;
}

.family-photo h3 {
  text-align: center;
}

.shop-brief h3 {
  text-align: left;
}

.enquiry-form h3 {
  text-align: left;
}

.contact-enquiry h3 {
  text-align: left;
}

.shop-brief p,
.contact-info p {
  color: #f5f5f5;
  font-size: 1.08em;
  line-height: 1.7;
}

.enquiry-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enquiry-form input,
.enquiry-form textarea {
  background: #222;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 1em;
  resize: none;
}

.enquiry-form textarea {
  min-height: 80px;
}

.enquiry-form button {
  background: #e9bb24;
  color: #181818;
  border: none;
  padding: 12px 0;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.enquiry-form button:hover {
  background: #e9bb24;
}

.family-photo {
  text-align: center;
}

.family-photo img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-enquiry-container {
    flex-direction: column;
    gap: 30px;
  }
}

.about-section {
  background: #222;
  color: #eee;
  padding: 60px 20px;
  text-align: center;
}

.about-section h3 {
  font-family: 'Playfair Display', serif;
  color: #e9bb24;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  color: #ccc;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.about-section .btn-gold {
  display: inline-block;
  padding: 12px 20px;
  background: #e9bb24;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.about-section .btn-gold:hover {
  background: #e9bb24;
}
.clients-scroll {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 10px 0;
  justify-content: center;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.clients-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.client-item {
  flex: 0 0 auto;
  text-align: center;
}

.client-item img {
  max-height: 200px;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-item img:hover {
  transform: scale(1.1);
}

.client-item p {
  margin-top: 8px;
  font-size: 14px;
  color: #e0e0e0;
  font-family: 'Playfair Display', serif;
}

/* Add to style.css or inside <style> in testimonials.html */
/* filepath: d:\Projects\Light and Style 2\style.css */
.client-carousel-section {
  background: #181818;
  padding: 40px 0 60px 0;
}
.client-carousel-section h3 {
  font-family: 'Playfair Display', serif;
  color: #e9bb24;
  font-size: 1.7em;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}
.client-carousel {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.client-carousel::-webkit-scrollbar {
  display: none;
}
.client-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
  cursor: pointer;
}
.client-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  background: #fff;
}
.client-item:hover img {
  transform: scale(1.25);
  box-shadow: 0 6px 24px rgba(233,187,36,0.25);
}
.client-name {
  margin-top: 12px;
  color: #f5f5f5;
  font-size: 1em;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 700px) {
  .client-carousel {
    gap: 20px;
  }
  .client-item img {
    width: 60px;
    height: 60px;
  }
}
