/* ============================================
   Wholesale Italian Handbags — Luxury Editorial
   Color: Deep charcoal, champagne gold, warm cream
   Fonts: Cormorant Garamond + DM Sans
   ============================================ */

:root {
  --color-dark: #1a1a1a;
  --color-charcoal: #2c2c2c;
  --color-warm-gray: #4a4542;
  --color-gold: #c9a96e;
  --color-gold-light: #dfc89a;
  --color-gold-dark: #a88a4e;
  --color-cream: #faf7f2;
  --color-warm-white: #f5f0eb;
  --color-ivory: #f0ebe3;
  --color-burgundy: #8b2635;
  --color-text: #3a3632;
  --color-text-light: #6d6560;
  --color-text-on-dark: #e8e2da;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold-dark); text-decoration: none; transition: color 0.3s var(--transition-smooth); }
a:hover { color: var(--color-burgundy); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==== HEADER / NAVIGATION ==== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: background 0.4s var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-logo span { font-weight: 400; color: var(--color-text-on-dark); }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }

.main-nav a {
  color: var(--color-text-on-dark);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.3s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--color-gold);
  transition: left 0.3s var(--transition-smooth), right 0.3s var(--transition-smooth);
}
.main-nav a:hover { color: var(--color-gold); }
.main-nav a:hover::after { left: 1rem; right: 1rem; }

.nav-cta {
  background: var(--color-gold) !important;
  color: var(--color-dark) !important;
  padding: 0.55rem 1.3rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  border-radius: 0;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--color-gold-light) !important;
  color: var(--color-dark) !important;
  transform: translateY(-1px);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--color-gold);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(26, 26, 26, 0.97);
    padding: 1rem 0;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.9rem 2rem; }
  .nav-cta { margin: 0.5rem 2rem !important; text-align: center; display: block; }
}

/* ==== HERO SECTION ==== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.7) contrast(1.1);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.4) 50%, rgba(26,26,26,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 5rem;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--transition-smooth) forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 750px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s var(--transition-smooth) forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-on-dark);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s var(--transition-smooth) forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--transition-smooth) forwards;
}

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

/* ==== BUTTONS ==== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--transition-smooth);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-dark);
}
.btn-gold:hover {
  background: var(--color-gold-light);
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-cream);
}
.btn-dark:hover {
  background: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ==== INTRO / ABOUT SECTION ==== */
.intro-section {
  padding: 7rem 0;
  background: var(--color-cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
}

.intro-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.intro-section p {
  color: var(--color-text-light);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.intro-image {
  position: relative;
  overflow: hidden;
}
.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}
.intro-image:hover img { transform: scale(1.03); }
.intro-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26,26,26,0.15), transparent);
  pointer-events: none;
}

@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-image img { height: 350px; }
}

/* ==== FEATURES / WHY ITALY SECTION ==== */
.features-section {
  padding: 7rem 0;
  background: var(--color-dark);
  color: var(--color-text-on-dark);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--color-text-on-dark);
  font-size: 1.05rem;
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--transition-smooth);
}
.feature-card:hover {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
  font-size: 1.3rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--color-text-on-dark);
  opacity: 0.75;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ==== GALLERY ==== */
.gallery-section {
  padding: 7rem 0;
  background: var(--color-warm-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth), filter 0.6s var(--transition-smooth);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  animation: fadeIn 0.3s;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==== CTA BAND ==== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2520 100%);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-section p {
  color: var(--color-text-on-dark);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.8;
}

/* ==== CONTACT FORM SECTION ==== */
.contact-section {
  padding: 5rem 0 6rem;
  background: var(--color-ivory);
}
.contact-section .section-header h2 { color: var(--color-dark); }
.contact-section .section-header p { color: var(--color-text-light); }

/* ==== MULTILINGUAL LINKS ==== */
.lang-section {
  padding: 5rem 0;
  background: var(--color-cream);
}

.lang-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 2.5rem;
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.lang-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.lang-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.lang-card .lang-flag { font-size: 1.5rem; flex-shrink: 0; }
.lang-card .lang-name {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.92rem;
}

/* ==== CONTENT PAGES (wholesale/manufacturers) ==== */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--color-dark);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero p {
  color: var(--color-text-on-dark);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.8;
}

.content-section {
  padding: 5rem 0;
  background: var(--color-cream);
}

.content-body {
  max-width: 780px;
  margin: 0 auto;
}

.content-body h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 2.5rem 0 1rem;
}

.content-body p {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.content-body a {
  color: var(--color-gold-dark);
  border-bottom: 1px solid var(--color-gold-light);
  transition: all 0.3s;
}
.content-body a:hover {
  color: var(--color-burgundy);
  border-color: var(--color-burgundy);
}

.content-cta {
  text-align: center;
  padding: 3rem 0;
}

/* ==== FOOTER ==== */
.site-footer {
  background: var(--color-dark);
  color: var(--color-text-on-dark);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: block;
}

.footer-desc {
  font-size: 0.92rem;
  opacity: 0.65;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: var(--color-text-on-dark);
  font-size: 0.9rem;
  opacity: 0.65;
  transition: all 0.3s;
}
.footer-links a:hover { opacity: 1; color: var(--color-gold); }

.footer-contact p {
  font-size: 0.9rem;
  opacity: 0.65;
  margin-bottom: 0.5rem;
}
.footer-contact a { color: var(--color-gold-light); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.45;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* ==== UTILITIES ==== */
.gold-line {
  width: 50px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 1.5rem;
}
.gold-line-center {
  width: 50px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 1.5rem;
}

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

/* Decorative grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Scroll reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
