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

:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --bg-main: #FAF3F4;
  --bg-card: #FFFFFF;
  --bg-accent: #F4E7EA;
  --bg-bordeaux-deep: #3A0D16;
  --bordeaux-main: #611827;
  --bordeaux-light: #7E2235;
  --bordeaux-dark: #460F1A;
  --bordeaux-glow: rgba(97, 24, 39, 0.25);
  
  --rose-gold: #C99777;
  --rose-gold-light: #E8C7B0;
  --text-main: #241216;
  --text-muted: #695257;
  --border-light: rgba(97, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::selection {
  background-color: #611827;
  color: #ffffff;
}

.font-serif-title {
  font-family: var(--font-serif);
}

.font-display-sub {
  font-family: var(--font-display);
}

/* Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.glass-nav {
  background: rgba(250, 243, 244, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(97, 24, 39, 0.12);
}

/* Bordeaux Text Gradients */
.bordeaux-gradient-text {
  background: linear-gradient(135deg, #241216 0%, #611827 50%, #9B283E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Luxury Buttons */
.bordeaux-btn {
  background: linear-gradient(135deg, #611827 0%, #7E2235 100%);
  color: #FFFFFF;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(97, 24, 39, 0.28);
}

.bordeaux-btn:hover {
  background: linear-gradient(135deg, #4E121E 0%, #6E1B2D 100%);
  box-shadow: 0 6px 26px rgba(97, 24, 39, 0.42);
  transform: translateY(-2px);
}

.outline-bordeaux-btn {
  border: 1px solid #611827;
  color: #611827;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.outline-bordeaux-btn:hover {
  background: #611827;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Service & Portfolio Cards */
.service-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(97, 24, 39, 0.5);
  box-shadow: 0 20px 40px rgba(97, 24, 39, 0.12);
}

.portfolio-card {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(58, 13, 22, 0.14);
}

.portfolio-card .img-zoom {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .img-zoom {
  transform: scale(1.06);
}

/* Scroll Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FAF3F4;
}

::-webkit-scrollbar-thumb {
  background: #7E2235;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #460F1A;
}

/* Language Switcher Button */
.lang-btn.active {
  background-color: #611827;
  color: #FFFFFF;
  font-weight: 700;
}
