/* Luxury Watch Customization Studio - Main Styles */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdn.jsdelivr.net/npm/lightbox2@2.11.4/dist/css/lightbox.min.css');

:root {
  /* Primary Color Palette */
  --primary-gold: #d4af37;
  --primary-dark-gold: #b8941f;
  --primary-light-gold: #e6c758;
  
  --secondary-charcoal: #2c2c2c;
  --secondary-light-charcoal: #404040;
  --secondary-dark-charcoal: #1a1a1a;
  
  --accent-burgundy: #800020;
  --accent-light-burgundy: #a0002b;
  --accent-dark-burgundy: #600018;
  
  --neutral-cream: #f8f6f0;
  --neutral-light-cream: #fdfcf8;
  --neutral-dark-cream: #f0ede5;
  
  --elegant-silver: #c0c0c0;
  --elegant-light-silver: #d4d4d4;
  --elegant-dark-silver: #a8a8a8;
  
  /* Gradients */
  --gold-gradient: linear-gradient(135deg, var(--primary-gold), var(--primary-dark-gold));
  --dark-gradient: linear-gradient(135deg, var(--secondary-charcoal), var(--secondary-dark-charcoal));
  --luxury-gradient: linear-gradient(135deg, var(--accent-burgundy), var(--primary-gold));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--secondary-charcoal);
  background-color: var(--neutral-cream);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-charcoal);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary-charcoal);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-charcoal);
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--secondary-charcoal);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--secondary-light-charcoal);
}

.lead {
  font-size: 1.1rem;
  color: var(--secondary-light-charcoal);
}

/* Header Styles */
.navbar {
  background: var(--dark-gradient);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 12px !important;
  color: var(--neutral-cream) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--luxury-gradient);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/pss_hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--neutral-cream);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  color: var(--neutral-light-cream);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
}

/* Services Section */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid var(--neutral-dark-cream);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-card h4 {
  color: var(--secondary-charcoal);
  margin-bottom: 1rem;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-top: 1rem;
}

/* About Section */
.about-feature {
  text-align: center;
  padding: 1.5rem;
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 1rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-gold);
}

/* Reviews Section */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin: 1rem;
  text-align: center;
}

.review-card .stars {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--neutral-dark-cream);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-primary {
  background: var(--gold-gradient);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark-gold);
}

/* Footer */
.footer {
  background: var(--dark-gradient);
  color: var(--neutral-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

/* Gallery */
.gallery-item {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* FAQ */
.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid var(--neutral-dark-cream);
  font-weight: 600;
  color: var(--secondary-charcoal);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--secondary-light-charcoal);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--primary-gold);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-gold);
}

/* Breadcrumb */
.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
} 