/* Pressed Flower Shop - Main CSS */

/* CSS Variables - 5 Primary Colors + Light/Dark Shades */
:root {
  /* Primary Colors - Natural/Botanical Theme */
  --color-primary: #6B8E5A; /* Forest Green */
  --color-secondary: #D4A574; /* Golden Honey */
  --color-accent: #C7A96B; /* Warm Brass */
  --color-tertiary: #9A7B4F; /* Earth Brown */
  --color-quaternary: #B8A082; /* Sage Beige */
  
  /* Light Shades */
  --color-primary-light: #8FAF7B;
  --color-secondary-light: #E6C299;
  --color-accent-light: #D9C38A;
  --color-tertiary-light: #B89A6F;
  --color-quaternary-light: #D0C3A7;
  
  /* Dark Shades */
  --color-primary-dark: #4A6B3E;
  --color-secondary-dark: #B8934F;
  --color-accent-dark: #A8944B;
  --color-tertiary-dark: #7A5F3B;
  --color-quaternary-dark: #9A8B6D;
  
  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-black: #2C2C2C;
  --color-gray-light: #F8F9FA;
  --color-gray-medium: #E9ECEF;
  --color-gray-dark: #6C757D;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-secondary: linear-gradient(45deg, var(--color-accent), var(--color-tertiary));
  --gradient-hero: linear-gradient(135deg, var(--color-primary-dark), var(--color-secondary), var(--color-accent-light));
  
  /* Font Sizes - Conservative */
  --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;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-padding: 1rem;
}

/* Import Bootstrap 5 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* Import FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* Import Swiper 11 */
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');

/* Import Lightbox2 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

h1 { font-size: var(--font-size-2xl); }
h2 { font-size: var(--font-size-xl); }
h3 { font-size: var(--font-size-lg); }
h4 { font-size: var(--font-size-md); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
  color: var(--color-gray-dark);
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-medium);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: var(--font-size-lg) !important;
  font-weight: 700;
  color: var(--color-primary) !important;
  text-decoration: none;
}

.nav-link {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-black) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-primary) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--color-white);
  font-size: var(--font-size-2xl);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  color: var(--color-white);
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-desc {
  color: var(--color-white);
  font-size: var(--font-size-base);
  margin-bottom: 2rem;
  opacity: 0.85;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-secondary);
  opacity: 0.1;
  z-index: 1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(107, 142, 90, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-body {
  overflow-x: hidden !important;
  padding: 2rem;
}

/* Services */
.service-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-white);
  font-size: 2rem;
}

.service-price {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-top: 1rem;
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--color-primary-light);
  transition: all 0.3s ease;
}

.team-photo:hover {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

/* Testimonials */
.testimonial-card {
  background: var(--color-gray-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border-left: 4px solid var(--color-primary);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 1rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--color-gray-medium);
  padding: 1.5rem 0;
}

.faq-question {
  font-weight: 600;
  color: var(--color-primary-dark);
  cursor: pointer;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: var(--color-gray-dark);
  padding-left: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog */
.blog-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.blog-excerpt {
  color: var(--color-gray-dark);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--color-primary-dark);
}

/* Contact Form */
.contact-form {
  background: var(--color-gray-light);
  padding: 3rem;
  border-radius: 15px;
}

.form-control {
  border: 2px solid var(--color-gray-medium);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(107, 142, 90, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--color-quaternary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid var(--color-primary);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: var(--color-primary);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary);
}

/* Utility Classes */
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-gradient { background: var(--gradient-primary) !important; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.overflow-hidden { overflow: hidden; }

.shadow { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 15px 40px rgba(0,0,0,0.15); }

.rounded { border-radius: 10px; }
.rounded-lg { border-radius: 15px; }
.rounded-circle { border-radius: 50%; }

.border { border: 1px solid var(--color-gray-medium); }
.border-primary { border-color: var(--color-primary); }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.transition { transition: all 0.3s ease; }

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-up {
  transform: translateY(30px);
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
} 