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

:root {
  /* Ember Colors - Warm, transformative energy */
  --ember-deep: #B84C1A;      /* Deep burnt orange - primary brand color */
  --ember-glow: #E07548;      /* Warm coral - active states */
  --ember-light: #F5A78E;     /* Soft peach - highlights */
  
  /* Bloom Colors - Growth and renewal */
  --bloom-sage: #7A9A82;      /* Sage green - secondary color */
  --bloom-lavender: #9B89B3;  /* Soft lavender - accents */
  --bloom-rose: #D4A5A5;      /* Dusty rose - soft touches */
  
  /* Neutral Foundation */
  --neutral-dark: #3A3A3A;    /* Charcoal - main text */
  --neutral-medium: #6B6B6B;  /* Medium gray - secondary text */
  --neutral-light: #E8E8E8;   /* Light gray - borders */
  --neutral-cream: #FBF8F4;   /* Warm cream - backgrounds */
  --white: #FFFFFF;
  
  /* Functional Colors */
  --primary-color: var(--ember-deep);
  --secondary-color: var(--bloom-sage);
  --accent-color: var(--bloom-lavender);
  --text-color: var(--neutral-dark);
  --light-bg: var(--neutral-cream);
  --gray-light: #F5F5F5;
  --gray-medium: var(--neutral-light);
  --gray-dark: var(--neutral-medium);
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--neutral-cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--ember-glow);
}

/* Header Styles */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(184, 76, 26, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(184, 76, 26, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-color);
}

.logo-text {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text-color);
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
  padding: 3rem 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(184, 76, 26, 0.03) 0%, rgba(122, 154, 130, 0.03) 100%);
  background-color: var(--white);
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-light {
  background-color: var(--light-bg);
}

/* About Section */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Services */
.services {
  background: linear-gradient(180deg, rgba(245, 167, 142, 0.08) 0%, rgba(155, 137, 179, 0.05) 100%);
  background-color: var(--white);
  border: 1px solid rgba(184, 76, 26, 0.1);
  padding: 3rem;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: 0 2px 15px rgba(184, 76, 26, 0.08);
}

.services-list {
  list-style: none;
  margin: 2rem 0;
}

.services-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-list li:last-child {
  border-bottom: none;
}

.service-name {
  font-weight: 600;
  color: var(--primary-color);
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bloom-sage);
}

/* Forms */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(122, 154, 130, 0.05) 0%, rgba(212, 165, 165, 0.05) 100%);
  background-color: var(--white);
  border: 1px solid rgba(122, 154, 130, 0.15);
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-medium);
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--bloom-sage);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(122, 154, 130, 0.1);
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--ember-glow);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 76, 26, 0.3);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.product-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.product-description {
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

/* Resources Section */
.resource-card {
  background: linear-gradient(180deg, rgba(155, 137, 179, 0.08) 0%, rgba(122, 154, 130, 0.05) 100%);
  background-color: var(--white);
  border: 1px solid rgba(155, 137, 179, 0.15);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.resource-card:hover {
  box-shadow: 0 5px 25px rgba(155, 137, 179, 0.15);
  transform: translateY(-2px);
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #2A2A2A 0%, #1F1F1F 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--ember-glow) 50%, transparent 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--ember-light);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-medium);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-medium);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(184, 76, 26, 0.15);
    border: 1px solid rgba(184, 76, 26, 0.05);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  
  .hero {
    padding: 2rem 0;
  }
  
  .services-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Theme-specific enhancements */
.hero h1 {
  background: linear-gradient(135deg, var(--ember-deep) 0%, var(--ember-glow) 50%, var(--bloom-sage) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.service-name {
  color: var(--ember-deep);
  transition: color 0.3s ease;
}

.services-list li:hover .service-name {
  color: var(--ember-glow);
}

/* Add subtle bloom accent to section backgrounds */
.section-light {
  background: linear-gradient(180deg, var(--neutral-cream) 0%, rgba(155, 137, 179, 0.05) 100%);
}

/* Main content background pattern */
.main-content {
  position: relative;
  background-color: var(--neutral-cream);
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(184, 76, 26, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(122, 154, 130, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(155, 137, 179, 0.01) 0%, transparent 50%);
  pointer-events: none;
} 