/* ============================================
   SOLAR-MINIMALISM DESIGN SYSTEM
   Thisdomaindontexist123
 Website
   ============================================ */

:root {
  /* Color Palette - Solar Minimalism */
  --color-primary: #FDFDFD;
  --color-secondary: #E2D1C3;
  --color-accent-blue: #98AFC7;
  --color-accent-terracotta: #CC7755;
  --color-text-dark: #2C2C2C;
  --color-text-light: #6B6B6B;
  --color-glass-bg: rgba(253, 253, 253, 0.85);
  --color-glass-border: rgba(226, 209, 195, 0.3);
  
  /* Typography */
  --font-primary: 'Albert Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 48px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Dynamic Lighting - Changes based on time */
  --lighting-brightness: 1;
  --lighting-warmth: 0.5;
}

/* ============================================
   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-primary);
  color: var(--color-text-dark);
  background-color: var(--color-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Dynamic Background Lighting */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(253, 253, 253, var(--lighting-brightness)) 0%,
    rgba(226, 209, 195, calc(var(--lighting-warmth) * 0.3)) 50%,
    rgba(152, 175, 199, calc(var(--lighting-warmth) * 0.2)) 100%
  );
  z-index: -1;
  transition: background 1s ease;
  pointer-events: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--space-md);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: relative;
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass-border);
  z-index: 1;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-text-dark);
  font-weight: 400;
}

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

.nav-menu li a {
  color: var(--color-text-dark);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.nav-menu li a:hover {
  background: rgba(226, 209, 195, 0.2);
  color: var(--color-accent-terracotta);
}

/* Burger Menu Button - Always in header, separate from nav */
.burger-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 100002;
  margin-left: auto;
  flex-shrink: 0;
}

.burger-icon {
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  position: relative;
  transition: all var(--transition-base);
}

.burger-icon::before,
.burger-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  transition: all var(--transition-base);
}

.burger-icon::before {
  top: -8px;
}

.burger-icon::after {
  top: 8px;
}

.burger-toggle.active .burger-icon {
  background: transparent;
}

.burger-toggle.active .burger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.burger-toggle.active .burger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Mobile Menu - Separate from desktop menu */
.mobile-menu {
  display: none;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu.active .mobile-menu-overlay {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 80px var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-menu-list li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.mobile-menu-list li a {
  display: block;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
  transition: all var(--transition-base);
}

.mobile-menu-list li a:hover,
.mobile-menu-list li a:focus {
  background: rgba(226, 209, 195, 0.2);
  color: var(--color-accent-terracotta);
  border-left-color: var(--color-accent-terracotta);
  padding-left: calc(var(--space-lg) + 3px);
}


.mobile-menu.active .mobile-menu-content {
  right: 0;
}

/* Mobile Navigation */
@media (max-width: 1023px) {
  .burger-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-container nav {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Ensure header stays in place when menu is open */
  .site-header {
    position: relative;
    z-index: 10;
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
  position: relative;
  z-index: 1;
}

/* ============================================
   FULL-WIDTH BANNER SECTIONS
   ============================================ */

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

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

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(253, 253, 253, 0.75) 0%,
    rgba(253, 253, 253, 0.85) 50%,
    rgba(226, 209, 195, 0.7) 100%
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  color: var(--color-text-dark);
}

.banner-content h1 {
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.banner-content p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  color: var(--color-text-dark);
}

/* ============================================
   SECTION STYLES
   ============================================ */

.content-section {
  padding: var(--space-xxl) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

/* Grid Layouts - Centered and Balanced */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) auto;
  max-width: 1200px;
  padding: 0 var(--space-md);
}

.grid-item {
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-blue);
}

.grid-item img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.grid-item h3 {
  margin-bottom: var(--space-md);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.grid-item p {
  margin-bottom: var(--space-md);
}

/* Asymmetric Grid - Centered */
.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) auto;
  max-width: 1200px;
  padding: 0 var(--space-md);
}

.asymmetric-item {
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.asymmetric-item img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

/* Liquid Layout - Organic Shapes */
.liquid-container {
  position: relative;
  padding: var(--space-xxl);
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-glass-border);
  margin: var(--space-xl) 0;
  clip-path: polygon(
    0% 5%,
    5% 0%,
    95% 0%,
    100% 5%,
    100% 95%,
    95% 100%,
    5% 100%,
    0% 95%
  );
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-accent-terracotta);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin-top: 10px;
}

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

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

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

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
  max-width: 700px;
  margin: var(--space-xl) auto;
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-xxl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(152, 175, 199, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) auto;
  max-width: 1200px;
  padding: 0 var(--space-md);
}

.product-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.product-card img {
  width: 100%;
  max-width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.product-price {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-accent-terracotta);
  font-weight: 600;
  margin-top: var(--space-md);
}

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

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

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

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

.site-footer {
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-glass-border);
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-xxl);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.footer-section h4 {
  margin-bottom: var(--space-md);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--space-sm);
}

.footer-section ul li a {
  color: var(--color-text-light);
  font-size: 0.9rem;
  transition: color var(--transition-base);
}

.footer-section ul li a:hover {
  color: var(--color-accent-terracotta);
}

.footer-bottom {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-glass-border);
  color: var(--color-text-light);
  font-size: 0.9rem;
}

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

.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 500px;
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: none;
}

.privacy-popup.active {
  display: block;
}

.privacy-popup p {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.privacy-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.privacy-buttons button {
  flex: 1;
}

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

.thank-you-container {
  max-width: 800px;
  margin: var(--space-xxl) auto;
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
}

.thank-you-container h1 {
  margin-bottom: var(--space-lg);
  color: var(--color-accent-terracotta);
}

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

.error-container {
  max-width: 800px;
  margin: var(--space-xxl) auto;
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

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

@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-xxl: 4rem;
  }
  
  .content-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .grid-container,
  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .banner-content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .contact-form {
    padding: var(--space-lg);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .privacy-popup {
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
  }
}

@media (max-width: 480px) {

  
  .brand-name {
    font-size: 1.25rem;
  }
  
  .hero-banner {
    min-height: 70vh;
  }
  
  .liquid-container {
    padding: var(--space-lg);
    clip-path: none;
    border-radius: var(--radius-lg);
  }
}

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

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

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

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

