/* Global Styles */
:root {
  --gold: #D4AF37;
  --gold-light: #F5E7A3;
  --gold-dark: #B8860B;
  --black: #111111;
  --dark-gray: #333333;
  --light-gray: #f8f9fa;
  --white: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
  overflow-x: hidden;
}

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

.gold-text {
  color: var(--gold);
}

.line {
  width: 80px;
  height: 3px;
  background-color: var(--gold);
  margin-top: 20px;
}

/* Buttons */
.btn-gold {
  background-color: var(--gold);
  color: var(--black);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-gold {
  color: var(--gold);
  border: 2px solid var(--gold);
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* Navbar */
.navbar {
  background-color: rgba(17, 17, 17, 0.9);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero-section {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1601121141461-9d6647bca1ed?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center;
  background-size: cover;
  position: relative;
  color: var(--white);
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.hero-section h1 {
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-section {
  background-color: var(--light-gray);
  padding: 100px 0;
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.process-icon {
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 20px;
  flex-shrink: 0;
}

.process-item {
  transition: all 0.3s ease;
}

.process-item:hover {
  transform: translateX(10px);
}

.process-item:hover .process-icon {
  background-color: var(--black);
  color: var(--gold);
}

/* Collections Section */
.collections-section {
  padding: 100px 0;
  background-color: var(--white);
}

.collection-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.collection-img {
  position: relative;
  overflow: hidden;
}

.collection-img img {
  transition: all 0.5s ease;
  height: 300px;
  object-fit: cover;
  width: 100%;
}

.collection-card:hover .collection-img img {
  transform: scale(1.1);
}

.collection-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--white);
}

.collection-card:hover .collection-img .overlay {
  opacity: 1;
}

.collection-title h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.collection-info {
  background-color: var(--white);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rating i {
  color: var(--gold);
  margin-right: 3px;
}

.testimonial-text {
  font-style: italic;
  position: relative;
  padding: 0 10px;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 30px;
  color: var(--gold);
  font-family: 'Georgia', serif;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item {
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-item:hover .contact-icon {
  background-color: var(--black);
  color: var(--gold);
}

.contact-content a {
  color: var(--dark-gray);
  transition: all 0.3s ease;
}

.contact-content a:hover {
  color: var(--gold);
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer-section {
  background-color: var(--black);
  color: var(--white);
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--black);
  color: var(--gold);
  transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.5s ease forwards;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(17, 17, 17, 0.95);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
  }
  
  .hero-section {
    height: auto;
    padding: 150px 0 100px;
  }
  
  .about-section,
  .collections-section,
  .testimonials-section,
  .contact-section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 36px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .about-section,
  .collections-section,
  .testimonials-section,
  .contact-section {
    padding: 60px 0;
  }
  
  .social-links {
    justify-content: center;
  }
}