/* ============================================
   SEASONAL HOME REFRESH - STYLESHEET
   Futuristic Atmospheric Transition Design
   ============================================ */

:root {
  /* Foundation Colors */
  --color-base: #0F0F0F;
  --color-surface: #1a1a1a;
  --color-surface-light: #2a2a2a;
  --color-text-primary: #f4f4f4;
  --color-text-secondary: #b0b0b0;
  
  /* Seasonal Accents (Dynamic) */
  --accent-spring: #00FF41;
  --accent-summer: #FFD700;
  --accent-autumn: #FF4500;
  --accent-winter: #00E5FF;
  --accent-current: #00FF41; /* Default Spring */
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;
  
  /* Layout */
  --container-width: 1200px;
  --container-padding: 1.5rem;
  
  /* Effects */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--accent-current);
  --blur-sm: blur(8px);
  --blur-md: blur(16px);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-primary);
  background-color: var(--color-base);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Cursor Effect */
body::before {
  content: '';
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-current);
  border-radius: var(--radius-full);
  pointer-events: none;
  left: var(--cursor-x, 0);
  top: var(--cursor-y, 0);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 9999;
  mix-blend-mode: difference;
}

body.cursor-active::before {
  opacity: 0.6;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

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

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

a:hover {
  opacity: 0.8;
}

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

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

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.site-header {
  position: relative;
  z-index: 100;
  padding: var(--space-md) 0;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.site-brand {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

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

.nav-link {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-base);
}

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

/* Burger Menu Button */
.burger-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 10002;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-base);
  border-radius: var(--radius-full);
}

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

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

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

/* Mobile Navigation */
@media (max-width: 1023px) {
  .burger-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-base);
    z-index: 101;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.125rem;
    width: 100%;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* ============================================
   BANNERS & HERO SECTIONS
   ============================================ */

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

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

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.9));
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-xl) var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}

.banner-title {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.banner-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

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

.grid-section {
  padding: var(--space-xl) 0;
}

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

.grid-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  width: 100%;
  max-width: 100%;
}

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

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

.grid-title {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.grid-text {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Two Column Grid */
.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  align-items: start;
  justify-items: center;
  max-width: 100%;
}

.grid-two > div {
  width: 100%;
  max-width: 100%;
}

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

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: transparent;
  border: 2px solid var(--accent-current);
  color: var(--accent-current);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 1rem;
  text-align: center;
  margin-top: 10px;
}

.btn:hover {
  background: var(--accent-current);
  color: var(--color-base);
  box-shadow: var(--shadow-glow);
}

.btn-primary {
  background: var(--accent-current);
  color: var(--color-base);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

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

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

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

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-current);
  box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.1);
}

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

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

.form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent-current);
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ============================================
   CIRCULAR NAVIGATION WHEEL
   ============================================ */

.nav-wheel-container {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-xl) 0;
}

.nav-wheel {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent-current);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-slow), box-shadow var(--transition-base);
}

.nav-wheel:hover {
  box-shadow: var(--shadow-glow);
}

.wheel-center {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--color-surface);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
  z-index: 2;
  border: 2px solid var(--accent-current);
}

.wheel-segment {
  position: absolute;
  width: 140px;
  height: 2px;
  background: var(--accent-current);
  transform-origin: left center;
  opacity: 0.3;
}

.wheel-segment:nth-child(1) { transform: rotate(0deg); }
.wheel-segment:nth-child(2) { transform: rotate(90deg); }
.wheel-segment:nth-child(3) { transform: rotate(180deg); }
.wheel-segment:nth-child(4) { transform: rotate(270deg); }

/* ============================================
   PRODUCTS GRID
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-current);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-lg);
}

.product-title {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.product-description {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.product-price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--accent-current);
}

/* ============================================
   MAP CONTAINER
   ============================================ */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.site-footer {
  background: var(--color-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-section-title {
  color: var(--color-text-primary);
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
}

.footer-menu {
  list-style: none;
}

.footer-link {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
  display: block;
  transition: color var(--transition-base);
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

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

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

.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); }

.content-narrow {
  max-width: 900px;
}

.content-medium {
  max-width: 700px;
}

.content-list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.contact-info-section {
  margin-top: var(--space-lg);
}

.contact-info-title {
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}

.contact-info-title:first-of-type {
  margin-top: 0;
}

.text-large {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

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

.spacing-top-xl {
  margin-top: var(--space-xl);
}

/* Privacy Policy Popup */
.privacy-popup {
  display: none;
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface);
  border: 1px solid var(--accent-current);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 500px;
  width: calc(100% - 2rem);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
}

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

.privacy-popup-content {
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --container-padding: 1rem;
  }
  
  .grid-container,
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-two {
    grid-template-columns: 1fr;
  }
  
  .nav-wheel-container {
    min-height: 300px;
  }
  
  .nav-wheel {
    width: 250px;
    height: 250px;
  }
  
  .hero-banner {
    min-height: 50vh;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 2rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
}

/* Weather Effects */
.weather-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
}

.weather-rain::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: var(--accent-winter);
  animation: rain-fall 1s linear infinite;
}

@keyframes rain-fall {
  0% {
    transform: translateY(-100vh);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

