/* ============================================
   FUTURISTIC INTERIOR STYLING DESIGN SYSTEM
   "The Sculpted Space" - Architectural Minimalism meets Futuristic Softness
   ============================================ */

:root {
  /* Color Palette - Ethereal Neutral */
  --color-base: #F9F8F5;
  --color-base-alt: #E5E4E2;
  --color-accent: #4B533F;
  --color-accent-alt: #A66E5B;
  --color-contrast: #1A1A1B;
  --color-text: #2C2C2D;
  --color-text-light: #6B6B6C;
  --color-white: #FFFFFF;
  
  /* Typography */
  --font-header: 'Cormorant Garamond', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 8rem;
  
  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  
  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 27, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 26, 27, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 26, 27, 0.12);
  --blur-glass: blur(20px);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s ease;
  --transition-fast: 0.15s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Texture overlay for background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(75, 83, 63, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(166, 110, 91, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-contrast);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent-alt);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-content {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: relative;
  padding: var(--space-md) 0;
  background: rgba(249, 248, 245, 0.85);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid rgba(26, 26, 27, 0.06);
  z-index: 1000;
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand-name {
  font-family: var(--font-header);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--color-contrast);
  flex: 1;
}

.nav-menu {
  display: flex;
  gap: 15px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--color-text);
  padding: var(--space-xs) var(--space-xs);
  position: relative;
  transition: color var(--transition-base);
  white-space: nowrap;
}

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

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

/* Burger Menu - Always visible in header */
.burger-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
  margin-left: var(--space-md);
  order: 999;
}

.burger-icon {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-contrast);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.burger-toggle.active .burger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-toggle.active .burger-icon span:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active .burger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
  
  .burger-toggle {
    display: none;
  }
}

/* Mobile Navigation */
@media (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(249, 248, 245, 0.98);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-xxl) var(--space-lg);
    transition: right var(--transition-slow);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    margin: 0;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1.1rem;
    width: 100%;
  }
  
  .header {
    z-index: 1000;
  }
}

/* ============================================
   HERO BANNER
   ============================================ */

.hero-banner {
  width: 100vw;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(249, 248, 245, 0.85) 0%,
    rgba(249, 248, 245, 0.75) 50%,
    rgba(75, 83, 63, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: var(--space-md);
  color: var(--color-contrast);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   SECTION BANNERS
   ============================================ */

.section-banner {
  width: 100vw;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: var(--space-xl) calc(-50vw + 50%);
  border-radius: var(--radius-lg);
}

.section-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

.section-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(249, 248, 245, 0.9) 0%,
    rgba(249, 248, 245, 0.8) 100%
  );
  z-index: 1;
}

.section-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
  max-width: 900px;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  align-items: start;
  justify-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  align-items: start;
  justify-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  align-items: start;
  justify-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid rgba(26, 26, 27, 0.06);
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.card-title {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.card-text {
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
}

.btn:hover {
  background: var(--color-accent-alt);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 26, 27, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(75, 83, 63, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: rgba(26, 26, 27, 0.03);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-xxl);
  border-top: 1px solid rgba(26, 26, 27, 0.06);
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-md);
}

.footer-link {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-info {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(26, 26, 27, 0.06);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    --container-padding: 1rem;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .hero-banner {
    min-height: 60vh;
  }
  
  .grid-two,
  .grid-three,
  .grid-four {
    grid-template-columns: 1fr;
  }
  
  .footer-nav {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.5rem;
  }
  
  .hero-content,
  .section-banner-content {
    padding: var(--space-md);
  }
}

/* ============================================
   PRIVACY POPUP
   ============================================ */

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  padding: var(--space-md);
  box-shadow: 0 -4px 16px rgba(26, 26, 27, 0.1);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  border-top: 1px solid rgba(26, 26, 27, 0.06);
}

.privacy-popup.active {
  transform: translateY(0);
}

.privacy-popup-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: space-between;
}

.privacy-popup-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.privacy-popup-actions {
  display: flex;
  gap: var(--space-sm);
}

/* ============================================
   GOOGLE MAPS
   ============================================ */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: var(--space-lg) 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.product-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid rgba(26, 26, 27, 0.06);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}


.product-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-contrast);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

/* ============================================
   MOOD SLIDER (Interactive Feature)
   ============================================ */

.mood-slider-container {
  padding: var(--space-xl) 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-radius: var(--radius-xl);
  margin: var(--space-lg) 0;
}

.mood-slider-label {
  text-align: center;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  color: var(--color-text);
}

.mood-slider-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.mood-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, rgba(75, 83, 63, 0.2), rgba(166, 110, 91, 0.2));
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.mood-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.mood-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  background: var(--color-accent-alt);
}

.mood-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.mood-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  background: var(--color-accent-alt);
}

.mood-labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-xs);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ============================================
   404 PAGE
   ============================================ */

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.error-message {
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.thank-you-title {
  margin-bottom: var(--space-md);
}

.thank-you-text {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .header,
  .footer,
  .burger-toggle,
  .privacy-popup {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

