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

/* --- CUSTOM DESIGN SYSTEM VARIABLES --- */
:root {
  --bg-cream-light: #FDFBF8;
  --bg-cream-medium: #F6F1EA;
  --bg-cream-dark: #EDE5D9;
  
  --color-bordeaux: #6A1C23;
  --color-bordeaux-dark: #4A1015;
  --color-bordeaux-light: #8E2B34;
  --color-bordeaux-trans: rgba(106, 28, 35, 0.08);
  --color-bordeaux-overlay: rgba(74, 16, 21, 0.7);
  
  --color-gold: #C59B27;
  --color-gold-light: #E9D28B;
  --color-gold-dark: #9A7416;
  --gold-gradient: linear-gradient(135deg, #A87C11 0%, #E9D28B 30%, #C59B27 50%, #F5E5C0 75%, #9A7416 100%);
  --gold-text-gradient: linear-gradient(135deg, #9A7416 0%, #D8B75B 50%, #9A7416 100%);
  
  --color-white: #FFFFFF;
  --color-black: #1A1818;
  --color-text-main: #332E2E;
  --color-text-muted: #6A6262;
  --color-border: #E5DDD3;
  
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-medium: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease-in-out;
  
  --shadow-subtle: 0 4px 20px rgba(74, 16, 21, 0.04);
  --shadow-medium: 0 10px 30px rgba(74, 16, 21, 0.08);
  --shadow-gold: 0 4px 15px rgba(197, 155, 39, 0.2);
  
  --max-width: 1200px;
}

/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-cream-light);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--color-black);
  font-weight: 500;
  line-height: 1.3;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream-medium);
}
::-webkit-scrollbar-thumb {
  background: var(--color-bordeaux);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-bordeaux-light);
}

/* --- REUSABLE UTILITIES & LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-cream-medium);
}

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

/* Titles and Headers */
.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-bordeaux);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 1rem auto 0 auto;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 4rem auto;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 0px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-bordeaux);
  color: var(--color-white);
  border: 1px solid var(--color-bordeaux);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-bordeaux);
  box-shadow: var(--shadow-subtle);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--color-black);
  border: 1px solid transparent;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--color-gold-dark);
  border-color: var(--color-gold);
  box-shadow: none;
}

.btn-outline {
  border: 1px solid var(--color-bordeaux);
  color: var(--color-bordeaux);
}

.btn-outline:hover {
  background-color: var(--color-bordeaux);
  color: var(--color-white);
}

/* Decorative Gold Gradient Line */
.gold-divider {
  width: 100px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 2rem auto;
}

/* --- TOP ANNOUNCEMENT BAR --- */
.top-bar {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(197, 155, 39, 0.3);
  overflow: hidden;
}

.top-bar-slider {
  display: flex;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.top-bar-text {
  display: inline-block;
  padding-right: 4rem;
}

.top-bar-text span {
  color: var(--color-gold-light);
  font-weight: 600;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* --- HEADER & NAVIGATION --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(253, 251, 248, 0.95);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-medium);
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(253, 251, 248, 0.98);
  box-shadow: var(--shadow-medium);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: var(--transition-medium);
}

header.scrolled .nav-container {
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo-img {
  height: 75px;
  width: auto;
  transition: var(--transition-medium);
}

header.scrolled .nav-logo-img {
  height: 55px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  color: var(--color-text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-medium);
}

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

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

.nav-link.active {
  color: var(--color-bordeaux);
}

.nav-link.active::after {
  width: 100%;
  background: var(--color-bordeaux);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 101;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-bordeaux);
  transition: var(--transition-medium);
  border-radius: 2px;
}

/* Hamburger transition to 'X' */
.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--bg-cream-medium);
  overflow: hidden;
}

/* Elegant gold/bordeaux overlay abstract shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, var(--color-bordeaux-trans) 0%, rgba(253, 251, 248, 0) 70%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-content {
  padding-right: 2rem;
}

.hero-brand {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 6px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 400;
  color: var(--color-bordeaux);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-title span {
  display: block;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

/* Facebook invitation alert box in Hero */
.facebook-invite {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, #1877F2 0%, #0d5ec4 100%);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  margin-bottom: 2.2rem;
  max-width: 540px;
  border-left: 4px solid var(--color-gold-light);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.15);
  border-radius: 4px;
  animation: pulseLight 3s infinite;
}

@keyframes pulseLight {
  0% { box-shadow: 0 8px 24px rgba(24, 119, 242, 0.15); }
  50% { box-shadow: 0 8px 28px rgba(24, 119, 242, 0.3); }
  100% { box-shadow: 0 8px 24px rgba(24, 119, 242, 0.15); }
}

.facebook-invite .fb-icon-wrapper {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.facebook-invite span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.facebook-invite a {
  color: var(--color-gold-light);
  font-weight: 700;
  text-decoration: underline;
  transition: var(--transition-fast);
}

.facebook-invite a:hover {
  color: var(--color-white);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}

/* Map Wrapper in Boutique */
.map-wrapper {
  width: 100%;
  min-height: 450px;
  height: 100%;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-medium);
}

/* Floating Logo Showcase */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-bg {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: var(--bg-cream-light);
  border: 1px solid var(--color-border);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-medium);
  animation: float 6s ease-in-out infinite;
}

/* Decorative outer gold rings */
.hero-circle-bg::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  border: 1px dashed var(--color-gold);
  opacity: 0.4;
  animation: rotateClockwise 40s linear infinite;
}

.hero-circle-bg::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 1px solid var(--color-bordeaux);
  opacity: 0.15;
}

.hero-logo-img {
  width: 90%;
  height: auto;
  z-index: 2;
  transition: var(--transition-slow);
}

.hero-logo-img:hover {
  transform: scale(1.03);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes rotateClockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- SECTION: QUI SOMMES NOUS & HISTOIRE --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  padding: 2rem;
}

.about-img-main {
  width: 100%;
  border-radius: 0;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 2;
}

.about-img-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: 2px solid var(--color-gold);
  z-index: 1;
  transform: translate(-1rem, -1rem);
  pointer-events: none;
}

.about-tag {
  position: absolute;
  bottom: 4rem;
  right: 0rem;
  background-color: var(--color-bordeaux);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  z-index: 3;
  box-shadow: var(--shadow-medium);
  border-left: 4px solid var(--color-gold);
}

.about-tag-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-gold-light);
  display: block;
}

.about-tag-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-story {
  margin-bottom: 2.5rem;
}

.about-story h3 {
  font-size: 1.8rem;
  color: var(--color-bordeaux);
  margin-bottom: 1.2rem;
}

.about-story p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.value-item {
  display: flex;
  gap: 1rem;
}

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

.value-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--color-bordeaux);
  margin-bottom: 0.3rem;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- SECTION: NOS MARQUES --- */
.marques-slider-container {
  overflow: hidden;
  position: relative;
  padding: 3rem 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
}

.marques-slider-container::before,
.marques-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marques-slider-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-cream-light) 0%, rgba(253, 251, 248, 0) 100%);
}

.marques-slider-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-cream-light) 0%, rgba(253, 251, 248, 0) 100%);
}

.marques-track {
  display: flex;
  align-items: center;
  gap: 6rem;
  width: max-content;
  animation: scrollMarques 30s linear infinite;
}

.marques-track:hover {
  animation-play-state: paused;
}

.marque-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.marque-name {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--color-text-main);
  text-transform: uppercase;
  transition: var(--transition-medium);
  cursor: default;
}

.marque-name:hover {
  color: var(--color-bordeaux);
  transform: scale(1.05);
}

.marque-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.3rem;
  font-weight: 600;
}

@keyframes scrollMarques {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Brand Grid details for showcase */
.marques-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
}

.brand-showcase-card {
  background-color: var(--color-white);
  padding: 3rem 2rem;
  border: 1px solid var(--color-border);
  transition: var(--transition-slow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition-medium);
  transform-origin: left;
}

.brand-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--bg-cream-dark);
}

.brand-showcase-card:hover::before {
  transform: scaleX(1);
}

.brand-card-logo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--color-bordeaux);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.brand-card-tags {
  font-size: 0.75rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.brand-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- SECTION: NOS COLLECTIONS --- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.collection-card {
  height: 450px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--color-border);
}

.collection-card-large {
  grid-column: span 2;
}

/* Placeholder card visuals using css styles */
.collection-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(2px); /* Soft macro blur */
  transform: scale(1.05); /* Prevent blurred edges bleed */
  transition: var(--transition-slow);
}

.collection-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--color-black) 0%, rgba(26, 24, 24, 0.4) 60%, rgba(26, 24, 24, 0.1) 100%);
  z-index: 1;
  transition: var(--transition-medium);
}

/* Specific background styles for categories */
.bg-lingerie-fine {
  background-color: #4A1015;
  background-image: url('assets/macro_lace.png');
}
.bg-lingerie-nuit {
  background-color: #2F2A2B;
  background-image: url('assets/macro_silk.png');
}
.bg-lingerie-bain {
  background-color: #A08C75;
  background-image: url('assets/macro_beach.png');
}
.bg-lingerie-masculin {
  background-color: #1F2833;
  background-image: url('assets/macro_cotton.png');
}
.bg-lingerie-loungewear {
  background-color: #D3C2B0;
  background-image: linear-gradient(135deg, #BEAB94 25%, #EDE5D9 100%);
}

/* Decorative lingerie design elements inside background */
.collection-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  background-image: radial-gradient(var(--color-gold) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.collection-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem;
  z-index: 2;
  transition: var(--transition-slow);
}

.collection-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-gold-light);
  letter-spacing: 3px;
  margin-bottom: 0.8rem;
  display: block;
}

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

.collection-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  max-width: 450px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition-medium);
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 1.5rem;
  font-weight: 500;
}

.collection-link span {
  transition: var(--transition-fast);
}

.collection-link:hover span {
  transform: translateX(5px);
}

/* Card Hover States */
.collection-card:hover .collection-bg {
  transform: scale(1.08);
}

.collection-card:hover .collection-bg-overlay {
  background: linear-gradient(to top, var(--color-bordeaux-dark) 0%, rgba(74, 16, 21, 0.6) 60%, rgba(74, 16, 21, 0.2) 100%);
}

.collection-card:hover .collection-desc {
  opacity: 1;
  height: auto;
  margin-top: 0.5rem;
}

.collection-card:hover .collection-content {
  transform: translateY(-10px);
}

/* --- SECTION: LA BOUTIQUE (INFO & MAP) --- */
.boutique-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}

/* Flyer style presentation */
.flyer-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-medium);
}

.flyer-wrapper::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--color-border);
  pointer-events: none;
}

.flyer-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow-subtle);
  border: 1px solid #eee;
}

.boutique-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  background-color: var(--color-white);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
}

.info-card-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-bordeaux-trans);
  color: var(--color-bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  border: 1px solid rgba(106, 28, 35, 0.2);
}

.info-card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--color-bordeaux);
  margin-bottom: 0.5rem;
}

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

.info-card-details strong {
  color: var(--color-black);
}

.info-card-details a {
  color: var(--color-bordeaux);
  font-weight: 500;
}

.info-card-details a:hover {
  color: var(--color-bordeaux-light);
  text-decoration: underline;
}

/* Styled Map Placeholder */
.map-container {
  height: 300px;
  width: 100%;
  background-color: var(--bg-cream-dark);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.map-placeholder-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  z-index: 2;
  background: radial-gradient(circle, rgba(253,251,248,0.9) 0%, rgba(237,229,217,0.95) 100%);
}

.map-placeholder-title {
  font-size: 1.2rem;
  color: var(--color-bordeaux);
  margin-bottom: 0.5rem;
}

.map-placeholder-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.map-iframe-styled {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) sepia(10%) contrast(90%);
}

/* --- SECTION: CONTACT & FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.contact-text-intro h3 {
  font-size: 2rem;
  color: var(--color-bordeaux);
  margin-bottom: 1.5rem;
}

.contact-text-intro p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.contact-highlight-box {
  background-color: var(--bg-cream-medium);
  padding: 2.5rem;
  border-left: 3px solid var(--color-gold);
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.contact-highlight-box p {
  margin-bottom: 0;
  font-style: italic;
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--color-text-main);
  line-height: 1.6;
}

/* Premium Form Styling */
.contact-form-wrapper {
  background-color: var(--color-white);
  padding: 4rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-medium);
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group-full {
  margin-bottom: 2.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  background-color: var(--bg-cream-light);
  border: 1px solid var(--color-border);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: var(--color-black);
  transition: var(--transition-medium);
}

.form-control:focus {
  border-color: var(--color-bordeaux);
  background-color: var(--color-white);
  box-shadow: 0 4px 12px rgba(106, 28, 35, 0.04);
}

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

/* Feedback Status Styles */
.form-status {
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  display: none;
  border-left: 3px solid transparent;
}

.form-status.success {
  display: block;
  background-color: #EAF4EC;
  border-color: #2E7D32;
  color: #1B5E20;
}

.form-status.error {
  display: block;
  background-color: #FDF2F2;
  border-color: #D32F2F;
  color: #C62828;
}

.form-status.loading {
  display: block;
  background-color: var(--bg-cream-medium);
  border-color: var(--color-gold);
  color: var(--color-text-main);
}

/* --- FOOTER --- */
footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 5rem 0 2rem 0;
  border-top: 3px solid var(--color-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  align-self: flex-start;
  filter: invert(1) brightness(0.9) contrast(1.2); /* Invert logo color to white for dark footer */
}

.footer-logo-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold-light);
  margin-bottom: 1.8rem;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--color-gold);
  margin-top: 0.5rem;
}

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

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold-light);
  padding-left: 5px;
}

.footer-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  list-style: none;
}

.footer-info li {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1rem;
}

.footer-info-icon {
  color: var(--color-gold-light);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-hours-day {
  font-weight: 500;
  color: var(--color-gold-light);
}

/* Bottom Footer copyright */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a {
  margin-left: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--color-gold-light);
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  transition: var(--transition-medium);
}

.social-icon:hover {
  background-color: var(--color-white);
  color: var(--color-bordeaux-dark);
  border-color: var(--color-white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

/* --- ANIMATIONS (SCROLL-REVEAL & EFFECTS) --- */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Shimmer animation effect for gold background elements */
.gold-shimmer {
  position: relative;
  overflow: hidden;
}

.gold-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  pointer-events: none;
}

.gold-shimmer:hover::after {
  left: 125%;
}

/* --- RESPONSIVE DESIGN --- */

/* Tablet layout */
@media (max-width: 992px) {
  .section {
    padding: 6rem 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    order: 2;
  }
  
  .hero-image-wrapper {
    order: 1;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-circle-bg {
    width: 350px;
    height: 350px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .collection-card-large {
    grid-column: span 1;
  }
  
  .boutique-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Mobile Layout */
@media (max-width: 768px) {
  /* Navigation menu toggle styling */
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background-color: var(--bg-cream-light);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    box-shadow: var(--shadow-medium);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
  }
  
  header.scrolled .nav-links {
    top: 70px;
  }
  
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-link {
    display: block;
    font-size: 1.1rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
  }
  
  .collection-card {
    height: 380px;
  }
  
  .contact-form-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom-links a {
    margin: 0 0.8rem;
  }
}
