

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  opacity: 1 !important;
  visibility: visible !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
  overflow-x: hidden;
}

:root {
  --primary-bg: #ffffff;
  --secondary-bg: #f8f9fa;
  --accent-bg: #fefefe;
  --text-primary: #2c3e50;
  --text-secondary: #7f8c8d;
  --text-muted: #bdc3c7;
  --pastel-peach: #ffeaa7;
  --lavender: #dda0dd;
  --mint-green: #98d8c8;
  --emerald: #50c878;
  --sapphire: #0067a5;
  --ruby: #9b111e;
  --gold: #ffd700;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--sapphire);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--emerald);
  text-decoration: underline;
}

.container-fluid {
  padding: 0 15px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.hero-section {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--lavender) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px var(--shadow-light);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--sapphire);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--sapphire);
  border: 2px solid var(--sapphire);
}

.btn-secondary:hover {
  background: var(--sapphire);
  color: #fff;
}

.card {
  background: var(--primary-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px var(--shadow-light);
  overflow: hidden;
  transition: var(--transition-medium);
  display: block !important;
  opacity: 1 !important;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-medium);
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 20px;
}

.card-title {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--sapphire);
  box-shadow: 0 0 0 3px rgba(0, 103, 165, 0.1);
}

.btn-submit {
  background: var(--emerald);
  color: #fff;
}

.btn-submit:hover {
  background: var(--sapphire);
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px var(--shadow-light);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-fast);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-primary) !important;
}

.navbar-nav .nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover {
  color: var(--sapphire) !important;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-text {
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
}

.bloom-canvas {
  min-height: 400px;
  border: 2px dashed var(--lavender);
  border-radius: var(--border-radius);
  background: var(--secondary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.flower-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.flower-item {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: grab;
  transition: var(--transition-fast);
  position: relative;
}

.flower-item:hover {
  transform: scale(1.1);
}

.flower-item.dragging {
  opacity: 0.5;
  cursor: grabbing;
}

.testimonial-card {
  background: var(--primary-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px var(--shadow-light);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.hover-lift {
  transition: var(--transition-fast);
}

.hover-lift:hover {
  transform: translateY(-3px);
}

.hover-scale {
  transition: var(--transition-fast);
}

.hover-scale:hover {
  transform: scale(1.02);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.focus-visible:focus {
  outline: 2px solid var(--sapphire);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section {
    padding: 60px 0;
  }

  .card-img-top {
    height: 200px;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .card-body {
    padding: 15px;
  }
}

@media print {
  .navbar,
  .btn,
  .gallery-overlay {
    display: none !important;
  }

  body {
    background: #fff !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --text-primary: #000;
    --text-secondary: #000;
    --primary-bg: #fff;
    --secondary-bg: #f0f0f0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

[data-aos],
.menu-item,
.card,
.content-block,
.gallery-item,
.testimonial-card,
.form-group,
.btn,
.navbar,
.hero-section,
.section {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.hamburger {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.mobile-nav.show {
  display: block;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: white;
  padding: 10px;
  text-align: center;
  z-index: 1000;
}

.cookie-banner button {
  margin: 0 10px;
  background: #fff;
  color: #333;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.placed-flower {
  position: absolute;
  cursor: move;
}

.placed-flower.dragging {
  opacity: 0.5;
}

.flower-option {
  width: 80px;
  height: 80px;
  margin: 5px;
  cursor: grab;
}

.flower-option:active {
  cursor: grabbing;
}

.canvas {
  min-height: 400px;
  border: 2px dashed #ddd;
  position: relative;
  background: #f9f9f9;
}

.price {
  font-weight: bold;
  color: #28a745;
}

.story-card {
  margin-bottom: 20px;
}

.quick-view {
  margin-top: 10px;
}