/* ============================================
   MURAL PAINTING & WALL ART - STYLESHEET
   Mixed Reality Minimalism & Parallax Depth
   ============================================ */

/* CSS Variables - Artist's Studio Palette */
:root {
  /* Colors - The Wall & Paint */
  --color-wall-raw: #3D3D3D;
  --color-wall-plaster: #F5F5F5;
  --color-paint-ultramarine: #3F00FF;
  --color-paint-amber: #FFBF00;
  --color-ui-quartz: rgba(255, 255, 255, 0.2);
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #666666;
  --color-text-light: #ffffff;
  --color-accent: #3F00FF;
  
  /* Typography */
  --font-header: 'Bebas Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Layout */
  --container-max: 1200px;
  --section-padding: 5rem 1rem;
  
  /* Effects */
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.2);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-wall-plaster);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: var(--space-sm);
}

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

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

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

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header */
.header-wrapper {
  position: relative;
  z-index: 1000;
}

.header-main {
  background: var(--color-ui-quartz);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-sm) var(--space-md);
  position: relative;
}

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

.brand-text {
  font-family: var(--font-header);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  text-transform: uppercase;
}

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

.burger-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
  position: relative;
  margin-left: auto;
}

.nav-link {
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-xs) var(--space-sm);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

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

/* Burger Menu */
.burger-icon {
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-text-primary);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

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

/* Mobile Navigation */
@media (max-width: 1023px) {
  .burger-toggle {
    display: block;
    order: 2;
  }
  
  nav {
    order: 1;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-wall-plaster);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6rem var(--space-md) var(--space-md);
    gap: 0;
    transition: right var(--transition-slow);
    box-shadow: var(--shadow-strong);
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.menu-overlay.active {
  display: block;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(61, 61, 61, 0.75) 0%,
    rgba(63, 0, 255, 0.5) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-text-light);
  padding: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
}

.hero-title {
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 300;
  margin-bottom: var(--space-lg);
}

/* Section Banner */
.section-banner {
  width: 100vw;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin: var(--space-xl) calc(-50vw + 50%);
}

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

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(61, 61, 61, 0.75) 0%,
    rgba(63, 0, 255, 0.5) 100%
  );
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-text-light);
  padding: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
}

/* Main Content */
.main-content {
  padding: var(--space-xl) 0;
}

/* Section Styles */
.content-section {
  padding: var(--section-padding);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  margin: var(--space-sm) auto;
}

/* Grid Layouts */
.grid-container {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  justify-items: center;
  align-items: start;
}

.grid-two {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  max-width: 100%;
}

.grid-three {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  max-width: 100%;
}

.grid-four {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  max-width: 100%;
}

.grid-item {
  background: var(--color-wall-plaster);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.grid-image-container {
  width: 100%;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.grid-title {
  margin-bottom: var(--space-xs);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.grid-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

/* Blueprint to Beauty Transition */
.wall-transition {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.wall-raw {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: opacity var(--transition-slow);
}

.wall-finished {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.wall-transition:hover .wall-raw {
  opacity: 0;
}

.wall-transition:hover .wall-finished {
  opacity: 1;
}

/* Parallax Container */
.parallax-container {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}

.parallax-background {
  z-index: 1;
  transform: translateZ(0);
}

.parallax-foreground {
  z-index: 3;
  transform: translateZ(0);
}

.parallax-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent);
  color: var(--color-text-light);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  margin-top: 10px;
}

.btn:hover {
  background: var(--color-paint-amber);
  color: black;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-text-light);
}
.info p{color: black}

/* Forms */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-wall-plaster);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid rgba(61, 61, 61, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

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

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

.checkbox-input {
  margin-top: 4px;
  flex-shrink: 0;
}

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

/* Products Grid */
.product-card {
  background: var(--color-wall-plaster);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

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

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

.product-title {
  margin-bottom: var(--space-xs);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.product-description {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.product-price {
  font-family: var(--font-header);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-accent);
  margin-top: var(--space-sm);
}

/* Google Maps */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-md);
  box-shadow: var(--shadow-soft);
}

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

/* Footer */
.footer-main {
  background: var(--color-wall-raw);
  color: var(--color-text-light);
  padding: var(--space-lg) var(--space-md);
  margin-top: var(--space-xl);
}

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

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

.footer-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

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

.footer-link {
  display: block;
  padding: var(--space-xs) 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.875rem, 2vw, 1rem);
  transition: color var(--transition-fast);
}

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

.footer-info {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: rgba(255, 255, 255, 0.6);
}

/* Privacy Popup */
.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 500px;
  background: var(--color-wall-plaster);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  z-index: 2000;
  display: none;
}

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

.privacy-text {
  margin-bottom: var(--space-sm);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

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

/* Thank You Page */
.thank-you-container {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 700px;
  margin: 0 auto;
}

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

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

/* 404 Page */
.error-container {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.error-message {
  font-size: clamp(1.25rem, 4vw, 2rem);
  margin-bottom: var(--space-md);
}

.error-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

/* Legal Pages */
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.legal-title {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.legal-content {
  background: var(--color-wall-plaster);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

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

.legal-section h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.legal-date {
  text-align: center;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Scroll Animation */
@keyframes paintStroke {
  0% {
    width: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 1rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  .hero-banner,
  .section-banner {
    min-height: 50vh;
  }
  
  .grid-two,
  .grid-three,
  .grid-four {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .privacy-popup {
    left: var(--space-sm);
    right: var(--space-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 2rem 1rem;
  }
  
  .hero-banner,
  .section-banner {
    min-height: 40vh;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
}

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

