/* ==========================================================================
   VROOR DECOR - LUXURY HOME DECOR DESIGN SYSTEM
   Location: Capital Mall, Hoshangabad Road, Bhopal, MP
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Color Palette */
  --primary: #2F241F;       /* Deep Espresso Brown */
  --primary-light: #44352E;
  --secondary: #C7A17A;     /* Champagne Warm Gold */
  --secondary-hover: #b58e65;
  --accent: #D8B892;        /* Soft Cashmere Sand */
  --bg-main: #FAF8F5;       /* Warm Linen / Off-White */
  --bg-surface: #FFFFFF;    /* Pure White */
  --bg-card: #FFFFFF;
  --bg-dark: #1E1714;       /* Showroom Midnight */
  
  /* Text Colors */
  --text-dark: #2C2C2C;     /* Charcoal Slate */
  --text-muted: #777777;    /* Muted Taupe */
  --text-light: #A3A3A3;
  --text-gold: #C7A17A;
  --text-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-btn: 'Montserrat', sans-serif;

  /* Spacing & Layout */
  --section-padding: 100px 0;
  --container-max: 1320px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 15px rgba(47, 36, 31, 0.04);
  --shadow-md: 0 10px 30px rgba(47, 36, 31, 0.08);
  --shadow-lg: 0 20px 50px rgba(47, 36, 31, 0.12);
  --shadow-gold: 0 10px 30px rgba(199, 161, 122, 0.25);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

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

ul, ol {
  list-style: none;
}

/* Container */
.vroor-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY HELPERS & UTILITIES
   -------------------------------------------------------------------------- */
.subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-btn);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--secondary);
  margin-bottom: 12px;
}
.subtitle-badge::before {
  content: '';
  width: 24px;
  height: 1px;
  background-color: var(--secondary);
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--primary);
}

.section-desc {
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 40px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn-vroor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-btn);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-gold-outline {
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-gold-outline:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION BAR
   -------------------------------------------------------------------------- */
/* Top Announcement Bar */
.top-bar {
  background-color: var(--primary);
  color: var(--accent);
  font-size: 0.8rem;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(216, 184, 146, 0.15);
}
.top-bar strong {
  color: var(--secondary);
}

/* Main Header */
.vroor-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(47, 36, 31, 0.06);
  transition: var(--transition-smooth);
}
.vroor-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(250, 248, 245, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--primary);
  line-height: 1;
  text-transform: uppercase;
}
.brand-logo .logo-text span {
  color: var(--secondary);
}
.brand-logo .logo-subtext {
  font-family: var(--font-btn);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-btn);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--primary);
  color: var(--text-white);
  z-index: 2000;
  padding: 40px 30px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.mobile-nav-drawer.active {
  right: 0;
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.close-drawer {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-white);
}
.mobile-menu-links a:hover {
  color: var(--secondary);
}

/* Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   6. HERO CAROUSEL / BANNER
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  height: calc(100vh - 125px);
  min-height: 600px;
  overflow: hidden;
  background-color: var(--primary);
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease;
}
.swiper-slide-active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(24, 18, 15, 0.85) 0%, rgba(24, 18, 15, 0.4) 60%, rgba(24, 18, 15, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
  max-width: 750px;
}

.hero-title {
  font-size: 4rem;
  color: var(--text-white);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title span {
  font-style: italic;
  color: var(--secondary);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Swiper Navigation Customization */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: var(--secondary);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(199, 161, 122, 0.4);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background-color: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}
.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   7. FEATURED BENTO GRID & COLLECTIONS
   -------------------------------------------------------------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--primary);
  min-height: 320px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }

.bento-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.bento-card:hover .bento-bg {
  transform: scale(1.06);
}

.bento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(30, 23, 20, 0.85) 0%, rgba(30, 23, 20, 0.2) 60%);
}

.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  color: var(--text-white);
  z-index: 2;
}

.bento-tag {
  font-family: var(--font-btn);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
  margin-bottom: 8px;
}

.bento-title {
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.bento-link {
  font-family: var(--font-btn);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.bento-card:hover .bento-link {
  color: var(--accent);
  gap: 12px;
}

/* --------------------------------------------------------------------------
   8. PRODUCT CARDS & SHOWCASE
   -------------------------------------------------------------------------- */
.product-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(47, 36, 31, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199, 161, 122, 0.3);
}

.product-thumb {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect ratio */
  overflow: hidden;
  background-color: #F4F0EA;
}

.product-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-thumb img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary);
  color: var(--secondary);
  font-family: var(--font-btn);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 2;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-family: var(--font-btn);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.product-specs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.product-specs span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-actions {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(47, 36, 31, 0.06);
}

/* --------------------------------------------------------------------------
   9. SHOWROOM SPOTLIGHT & CAPITAL MALL SECTION
   -------------------------------------------------------------------------- */
.showroom-banner {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showroom-info .section-title {
  color: var(--text-white);
}

.showroom-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 40px;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 184, 146, 0.2);
  padding: 20px;
  border-radius: var(--radius-sm);
}

.highlight-box i {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.highlight-box h5 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. MODAL DIALOGS & ENQUIRY SYSTEM
   -------------------------------------------------------------------------- */
.vroor-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(30, 23, 20, 0.8);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.vroor-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 680px;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition-smooth);
  border: 1px solid var(--accent);
}
.vroor-modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
.modal-close:hover {
  color: var(--primary);
}

.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-family: var(--font-btn);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--primary);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(47, 36, 31, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--bg-main);
  transition: var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(199, 161, 122, 0.2);
}

/* --------------------------------------------------------------------------
   11. FLOATING WIDGETS
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 990;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  cursor: pointer;
}
.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-call {
  background-color: var(--primary);
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.back-to-top {
  background-color: var(--secondary);
  color: var(--primary);
  opacity: 0;
  visibility: hidden;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   12. LUXURY FOOTER
   -------------------------------------------------------------------------- */
.vroor-footer {
  background-color: var(--primary);
  color: var(--text-white);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(216, 184, 146, 0.15);
}

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

.footer-brand .logo-text {
  color: var(--text-white);
  font-size: 2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0 30px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(199, 161, 122, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.footer-heading {
  font-family: var(--font-btn);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--secondary);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
