/* Sophisticated Premium Aesthetics */
:root {
  --bg-color: #121212; /* Deep Charcoal */
  --panel-bg: #1c1c1c; /* Rich Gray */
  --primary-color: #D4AF37; /* Brushed Gold */
  --primary-color-dark: #A98C46;
  --secondary-color: #1a2a3a; /* Deep Sapphire Accent */
  --text-main: #F2F0EB; /* Warm Cream */
  --text-muted: #A6A29C;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

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

/* Glassmorphism Header - More Subtle */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1); /* Subtle gold border */
  transition: var(--transition);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

/* Hero Section */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0 2rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.65); /* More transparent for video */
  z-index: -1;
}

.hero-fallback {
  background: linear-gradient(135deg, rgba(18,18,18,0.7), rgba(18,18,18,0.8)), url('assets/images/bedroom-20art-20madeleine_edited_edited-AR0Le4aqVJikK5De.jpg') center/cover no-repeat;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
  animation: fadeIn 1.5s ease-out;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
  line-height: 1.1;
}

.hero h1 span {
  font-style: italic;
  font-weight: 300;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-main);
  margin-bottom: 3rem;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Sophisticated Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

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

.btn:hover::before {
  transform: scaleY(1);
}

/* Sections - More Whitespace */
.section {
  padding: 8rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--text-main);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

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

/* Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.card {
  background: var(--panel-bg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 4px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(212, 175, 55, 0.2);
}

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

.card:hover .card-img {
  opacity: 0.85;
}

.card-content {
  padding: 2.5rem 2rem;
  text-align: center;
}

.card-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: #0a0a0a;
  padding: 5rem 2rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
  margin-bottom: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.footer-content .logo {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; 
  }
  .hero h1 {
    font-size: 3rem;
  }
  .section {
    padding: 5rem 1.5rem;
  }
}

/* Masonry Grid Custom Jazz - Subtle Refinements */
.masonry-grid {
  column-count: 3;
  column-gap: 2rem;
  padding: 2rem 0;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
  filter: brightness(0.9);
}

.masonry-item .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18, 18, 18, 0.5); /* Sophisticated dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border inside */
}

.masonry-item .overlay p {
  color: var(--primary-color);
  font-family: var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.9rem;
  transform: translateY(15px);
  transition: transform 0.5s ease;
}

.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.masonry-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.masonry-item:hover .overlay {
  opacity: 1;
}

.masonry-item:hover .overlay p {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* Lightbox Custom Jazz */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s ease;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(212, 175, 55, 0.5); /* Gold outline */
}

.lightbox-close {
  position: absolute;
  top: 2.5rem; right: 3.5rem;
  color: var(--text-muted);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.4s ease, transform 0.4s ease;
}

.lightbox-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}


/* --- Landing Page Enhancements --- */

/* Enhanced Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.footer-content .logo {
  font-size: 2.2rem;
}

/* Base Card Enhancements */
.card-content {
  position: relative;
  z-index: 1;
  background: var(--panel-bg);
  transition: background 0.4s ease;
}
.card:hover .card-content {
  background: #252525;
}

/* Testimonial Carousel Styles */
.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: 3rem 1rem;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 300%;
}
.testimonial-slide {
  width: 33.333%;
  padding: 0 3rem;
  text-align: center;
  opacity: 0.3;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(0.9);
}
.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
}
.testimonial-stars {
  color: var(--primary-color);
  font-size: 2.5rem;
  letter-spacing: 8px;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}
.testimonial-text {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 2.5rem;
  color: var(--text-main);
  line-height: 1.7;
}
.testimonial-author {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 3rem;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.4s ease;
}
.dot:hover {
  background: rgba(212, 175, 55, 0.5);
}
.dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
