/* Ganapathi Jewels & Diamonds - Luxury Jewelry Website Styles */

/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");

/* CSS Variables - Design System */
:root {
  /* Brand Colors - Luxury Jewelry Palette */
  --background: hsl(35, 20%, 98%); /* Off-white cream */
  --foreground: hsl(15, 25%, 15%); /* Deep brown */

  --card: hsl(35, 30%, 96%); /* Warm white */
  --card-foreground: hsl(15, 25%, 15%);

  --popover: hsl(35, 30%, 96%);
  --popover-foreground: hsl(15, 25%, 15%);

  /* Primary - Deep Maroon (Heritage & Luxury) */
  --primary: hsl(355, 65%, 25%); /* Deep maroon */
  --primary-foreground: hsl(35, 20%, 98%);
  --primary-light: hsl(355, 45%, 35%); /* Lighter maroon */

  /* Secondary - Champagne Gold */
  --secondary: hsl(45, 45%, 75%); /* Champagne gold */
  --secondary-foreground: hsl(15, 25%, 15%);
  --secondary-light: hsl(45, 55%, 85%); /* Light champagne */

  /* Accent - Warm Beige */
  --accent: hsl(40, 25%, 88%); /* Warm beige */
  --accent-foreground: hsl(15, 25%, 15%);

  --muted: hsl(40, 20%, 92%); /* Light beige */
  --muted-foreground: hsl(25, 15%, 45%); /* Muted brown */

  --destructive: hsl(0, 65%, 55%);
  --destructive-foreground: hsl(35, 20%, 98%);

  --border: hsl(40, 20%, 88%);
  --input: hsl(40, 20%, 92%);
  --ring: hsl(355, 65%, 25%);

  /* Design System Extensions */
  --radius: 0.75rem;

  /* Gradients */
  --gradient-hero: linear-gradient(
    135deg,
    hsl(355, 65%, 25%) 0%,
    hsl(355, 45%, 35%) 100%
  );
  --gradient-gold: linear-gradient(
    135deg,
    hsl(45, 45%, 75%) 0%,
    hsl(45, 55%, 85%) 100%
  );
  --gradient-elegant: linear-gradient(
    180deg,
    hsl(35, 30%, 96%) 0%,
    hsl(40, 25%, 88%) 100%
  );

  /* Shadows */
  --shadow-luxury: 0 20px 60px -10px hsla(355, 65%, 25%, 0.15);
  --shadow-gold: 0 10px 30px -5px hsla(45, 45%, 75%, 0.25);
  --shadow-elegant: 0 8px 25px -5px hsla(15, 25%, 15%, 0.08);

  /* Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elegant: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Custom Buttons */
.btn-hero {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-luxury);
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-hero:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  color: var(--primary-foreground);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-luxury);
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--accent);
  border-color: var(--primary);
  color: var(--foreground);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-elegant);
  z-index: 1000;
}

.navbar .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-brand img {
  height: 3rem;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--foreground);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(
      rgba(139, 69, 19, 0.4),
      rgba(139, 69, 19, 0.6)
    ),
    url("/images/hero-jewelry.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsla(355, 65%, 25%, 0.8),
    hsla(355, 65%, 25%, 0.6)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  display: block;
  color: var(--secondary);
  margin-top: 0.5rem;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 1.25rem;
  display: flex;
  justify-content: center;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.125rem;
  margin-top: 0.5rem;
  animation: pulse 2s infinite;
}

/* Section Styles */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* About Section */
.about-section {
  background: var(--gradient-elegant);
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--foreground);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
  height: 100%;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.stat-label {
  color: var(--muted-foreground);
}

.store-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-smooth);
}

.store-image:hover {
  transform: scale(1.05);
}

/* Story Section */
.team-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-luxury);
}

.heritage-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
  height: 100%;
}

.heritage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxury);
}

.heritage-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.heritage-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.heritage-text {
  color: var(--muted-foreground);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 1.5rem;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: white;
}

.timeline-year {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.timeline-description {
  color: var(--muted-foreground);
}

.story-quote {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-luxury);
}

.story-quote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.story-quote cite {
  color: var(--primary);
  font-weight: 600;
}

/* Collections Section */
.collection-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-elegant);
  height: 100%;
}

.collection-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-luxury);
}

.collection-image {
  height: 250px;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-elegant);
}

.collection-content {
  padding: 1.5rem;
}

.collection-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.collection-subtitle {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.collection-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.platinum-card {
  text-align: center;
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-luxury);
}

.platinum-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.platinum-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-luxury);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.quote-icon {
  text-align: left;
  font-size: 4rem;
  color: hsla(45, 45%, 75%, 0.3);
  font-family: "Playfair Display", serif;
  line-height: 0.25;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
}

.star.filled {
  fill: currentColor;
}

.testimonial-author {
  text-align: center;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}

.author-role {
  color: var(--muted-foreground);
}

/* Visit Section */
.visit-section {
  background: var(--gradient-elegant);
}

.store-details {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-smooth);
  height: 450px;
}

.store-details:hover {
  transform: scale(1.02);
}

.store-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.detail-label {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.detail-text {
  color: var(--muted-foreground);
}

.address-link {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.address-link:hover {
  color: var(--primary);
}

.social-links {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
  margin-top: 1.5rem;
}

.social-links:hover {
  transform: scale(1.02);
}

.social-title {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.map-container {
  background: white;
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-smooth);
  height: 620px;
}

.map-container:hover {
  transform: scale(1.02);
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  border: 0;
}

.heritage-message {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-smooth);
}

.heritage-message:hover {
  transform: scale(1.02);
}

.heritage-message-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.heritage-message-text {
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 0 1rem;
}

.footer-description {
  color: hsla(35, 20%, 98%, 0.8);
  line-height: 1.6;
}

.footer-title {
  font-size: 1.125rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: hsla(35, 20%, 98%, 0.8);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--secondary);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsla(35, 20%, 98%, 0.8);
  margin-bottom: 1rem;
}

.contact-item i {
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-address {
  transition: var(--transition-smooth);
  cursor: pointer;
  color: hsla(35, 20%, 98%, 0.8);
  text-decoration: none;
}

.contact-address:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid hsla(35, 20%, 98%, 0.2);
  padding-top: 1rem;
}

.footer-copyright {
  color: hsla(35, 20%, 98%, 0.8);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(35, 20%, 98%, 0.1);
  border-radius: 50%;
  color: var(--secondary);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-link:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Animations */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Custom responsive utilities */
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .platinum-card {
    padding: 2rem 1rem;
  }

  .testimonial-card {
    padding: 2rem 1rem;
  }
}
