/* ============================================
   DRIED FLOWER WREATH MAKING - STYLESHEET
   High-End Architectural Gallery Design
   ============================================ */

:root {
  /* Color Palette - Architectural Gallery */
  --color-anthracite: #1E1E24;
  --color-ochre: #B5835A;
  --color-sage: #7D8471;
  --color-linen: #FDFDFD;
  --color-dark: #0A0A0C;
  --color-light: #F5F5F5;
  
  /* Typography */
  --font-primary: 'Cinzel', serif;
  --font-secondary: 'Tenor Sans', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Layout */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  /* Shadows & Effects */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px rgba(181, 131, 90, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Glassmorphism */
  --glass-bg: rgba(253, 253, 253, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --backdrop-blur: blur(10px);
}

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

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

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

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-linen);
  background-color: var(--color-dark);
  overflow-x: hidden;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

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

h1 {
  font-size: clamp(1.4rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.2rem, 4vw, var(--font-size-3xl));
}

h3 {
  font-size: clamp(1rem, 3vw, var(--font-size-2xl));
}

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

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

.site-header {
  position: relative;
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(180deg, rgba(30, 30, 36, 0.95) 0%, rgba(30, 30, 36, 0.8) 100%);
  backdrop-filter: var(--backdrop-blur);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-linen);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

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

.nav-link {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-sm) var(--space-md);
  position: relative;
  transition: color var(--transition-base);
}

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

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

.burger-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100001;
  margin-left: var(--space-md);
}

.burger-line {
  width: 100%;
  height: 2px;
  background: var(--color-linen);
  transition: all var(--transition-base);
}

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

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

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

/* Mobile Navigation */
@media (max-width: 1023px) {
  .burger-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--color-anthracite);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-lg);
    transition: right var(--transition-slow);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    border-left: 1px solid rgba(253, 253, 253, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: var(--space-md);
    border-bottom: 1px solid rgba(253, 253, 253, 0.1);
  }
  
  .header-nav {
    gap: var(--space-md);
  }
}

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

main {
  min-height: calc(100vh - 200px);
}

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 30, 36, 0.85) 0%, rgba(10, 10, 12, 0.9) 100%);
  z-index: 2;
}

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

.hero-title {
  font-size: clamp(var(--font-size-3xl), 6vw, var(--font-size-4xl));
  margin-bottom: var(--space-lg);
  color: var(--color-linen);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(var(--font-size-md), 2.5vw, var(--font-size-xl));
  color: var(--color-ochre);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
}

.hero-description {
  font-size: var(--font-size-base);
  color: rgba(253, 253, 253, 0.9);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

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

.content-section {
  padding: var(--space-3xl) var(--space-xl);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-linen);
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-ochre);
}

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

.section-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.section-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-item {
  background: rgba(30, 30, 36, 0.6);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid rgba(253, 253, 253, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  text-align: center;
}

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

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

.grid-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-ochre);
}

.grid-text {
  font-size: var(--font-size-sm);
  color: rgba(253, 253, 253, 0.8);
  line-height: 1.7;
}

/* ============================================
   BANNER SECTION WITH IMAGE
   ============================================ */

.banner-section {
  position: relative;
  width: 100vw;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-3xl) 0;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

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

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 30, 36, 0.9) 0%, rgba(10, 10, 12, 0.85) 100%);
  z-index: 2;
}

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

.banner-title {
  font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-3xl));
  margin-bottom: var(--space-lg);
  color: var(--color-linen);
}

.banner-text {
  font-size: var(--font-size-base);
  color: rgba(253, 253, 253, 0.9);
  line-height: 1.8;
}

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

.contact-form {
  max-width: 600px;
  margin: var(--space-2xl) auto;
  padding: var(--space-xl);
  background: rgba(30, 30, 36, 0.6);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid rgba(253, 253, 253, 0.1);
  border-radius: var(--radius-lg);
}

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

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-linen);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: rgba(10, 10, 12, 0.5);
  border: 1px solid rgba(253, 253, 253, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-linen);
  font-family: inherit;
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-ochre);
  box-shadow: 0 0 0 3px rgba(181, 131, 90, 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-lg);
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: var(--font-size-sm);
  color: rgba(253, 253, 253, 0.8);
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--color-ochre) 0%, var(--color-sage) 100%);
  color: var(--color-linen);
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  margin-top: var(--space-lg);
}

.form-submit:hover {
  color: black;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

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

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

.product-card {
  background: rgba(30, 30, 36, 0.6);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid rgba(253, 253, 253, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  text-align: center;
}

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

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

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

.product-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-ochre);
}

.product-description {
  font-size: var(--font-size-sm);
  color: rgba(253, 253, 253, 0.8);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.product-price {
  font-size: var(--font-size-xl);
  font-family: var(--font-primary);
  color: var(--color-linen);
  font-weight: 400;
}

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

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

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

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

.site-footer {
  background: var(--color-anthracite);
  padding: var(--space-2xl) var(--space-xl);
  margin-top: var(--space-3xl);
  border-top: 1px solid rgba(253, 253, 253, 0.1);
}

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

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

.footer-title {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-md);
  color: var(--color-ochre);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer-link {
  display: block;
  padding: var(--space-sm) 0;
  font-size: var(--font-size-sm);
  color: rgba(253, 253, 253, 0.7);
  transition: color var(--transition-base);
}

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

.footer-text {
  font-size: var(--font-size-sm);
  color: rgba(253, 253, 253, 0.6);
  line-height: 1.8;
}

.footer-copyright {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(253, 253, 253, 0.1);
  font-size: var(--font-size-xs);
  color: rgba(253, 253, 253, 0.5);
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-anthracite);
  border-top: 1px solid rgba(253, 253, 253, 0.1);
  padding: var(--space-lg) var(--space-xl);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-xl);
}

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

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

.privacy-text {
  font-size: var(--font-size-sm);
  color: rgba(253, 253, 253, 0.8);
  flex: 1;
  min-width: 250px;
}

.privacy-link {
  color: var(--color-ochre);
  text-decoration: underline;
}

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

.privacy-button {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.privacy-accept {
  background: var(--color-ochre);
  color: var(--color-linen);
}

.privacy-accept:hover {
  background: var(--color-sage);
}

.privacy-decline {
  background: transparent;
  color: var(--color-linen);
  border: 1px solid rgba(253, 253, 253, 0.3);
}

.privacy-decline:hover {
  border-color: var(--color-ochre);
}

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

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

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

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

.date {
  font-size: var(--font-size-sm);
  color: rgba(253, 253, 253, 0.6);
  font-style: italic;
}

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

@media (max-width: 768px) {
  .site-header {
    padding: var(--space-md) var(--space-lg);
  }
  
  .content-section {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .hero-banner,
  .banner-section {
    min-height: 400px;
  }
  
  .section-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .privacy-content {
    flex-direction: column;
    text-align: center;
  }
  
  .privacy-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .privacy-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-banner,
  .banner-section {
    min-height: 350px;
  }
  
  .contact-form {
    padding: var(--space-lg);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
  
  .site-header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .content-section {
    padding: var(--space-lg) var(--space-md);
  }
}

