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

:root {
  --primary-color: #D4AF37; /* Gold */
  --primary-color-dark: #B8860B;
  --secondary-color: #097969; /* Emerald Green */
  --secondary-color-dark: #004B49;
  --bg-dark: #0A0A0A; /* Black Theme */
  --bg-light: #1A1A1A;
  --text-light: #F8F8F8;
  --text-muted: #B0B0B0;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --section-padding: 100px 5%;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* Typography & Utilities */
.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.section { padding: var(--section-padding); }
.bg-light { background-color: var(--bg-light); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--bg-dark);
}

.btn-solid {
  background-color: var(--primary-color);
  color: var(--bg-dark);
}

.btn-solid::before {
  background-color: var(--primary-color-dark);
}

.btn-solid:hover {
  color: var(--text-light);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.sticky {
  background-color: rgba(10, 10, 10, 0.95);
  padding: 15px 5%;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  font-weight: 500;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

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

.mobile-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/luxury_closeup.jpg') no-repeat center center/cover;
  z-index: -2;
  transform: scale(1.1);
  animation: bgZoom 20s infinite alternate;
}

@keyframes bgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.8));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.5s;
}

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

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-light);
  letter-spacing: 1px;
}

/* Layout Grids */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Collection Cards */
.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  group: collection;
  transition: var(--transition-smooth);
}

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

.collection-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.collection-card:hover .collection-info {
  transform: translateY(0);
}

.collection-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.collection-link {
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.collection-card:hover .collection-link {
  opacity: 1;
}

/* About Preview Layout */
.about-preview {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-preview-img {
  flex: 1;
  position: relative;
}

.about-preview-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 20px 20px 0 var(--secondary-color-dark);
}

.about-preview-text {
  flex: 1;
}

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

/* Services */
.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card {
  background-color: var(--bg-light);
  padding: 50px 30px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

/* Testimonials */
.testimonial-card {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.client-name {
  color: var(--primary-color);
  font-weight: 600;
  font-family: var(--font-heading);
}

/* Forms */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-light);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 15px;
  background-color: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

select.form-control {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23D4AF37" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 5px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-group a {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-error {
  color: #ff4d4d;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  padding: 80px 5% 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 300px;
  margin-bottom: 25px;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--bg-dark);
}

.footer-links h4 {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: var(--text-muted);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .about-preview {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    padding: 100px 30px;
    transition: var(--transition-smooth);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
  }

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

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Page Headers for subpages */
.page-header {
  padding: 150px 5% 80px;
  background-color: var(--bg-light);
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Pages (Legal) */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.content-section p, .content-section ul {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.content-section ul {
  list-style: disc;
  padding-left: 20px;
}
