/* WEDDING SOUVENIR DEMO #10 - ARTISAN SAGE PALETTE */
:root {
  --color-primary: #5a6b5b;
  --color-secondary: #a8b89f;
  --color-accent: #d4c4b8;
  --color-light: #f9f7f4;
  --color-text: #3d3d3d;
  --color-border: #e8ddd3;
  --color-success: #8b9a7f;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.6;
  min-height: 100vh;
}

/* Demo Bar */
.demo-bar {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 2px solid var(--color-success);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1000;
}

.demo-bar a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.demo-bar a:hover {
  color: var(--color-light);
  text-decoration: underline;
}

/* Header & Navigation */
header {
  background: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 60px;
  z-index: 99;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 1px;
}

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

.nav-menu a {
  color: var(--color-light);
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
}

.nav-menu a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Mobile Menu */
.menu-toggle { display: none; }
.menu-label { display: none; cursor: pointer; color: var(--color-light); font-size: 1.5rem; }

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #4a5b4b 100%);
  color: var(--color-light);
  padding: 4rem 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 2rem;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.page-header p {
  font-size: 1.05rem;
  color: var(--color-secondary);
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  background: var(--color-success);
  color: var(--color-light);
  padding: 0.85rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 154, 127, 0.3);
}

/* Features Section */
.features {
  margin: 3rem 0;
}

.features h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-primary);
}

/* Cards */
.card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-success);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.card p {
  color: var(--color-text);
  line-height: 1.7;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

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

.mt-2 { margin-top: 2rem; }

/* Highlight Section */
.highlight {
  background: #f0f4ed;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.highlight h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Product Cards */
.product-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #faf7f4 0%, #f0f4ed 100%);
  border-radius: 6px;
}

.product-icon {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.05));
}

.product-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.product-card p {
  color: var(--color-secondary);
  font-size: 0.95rem;
}

/* Products Grid */
.products {
  margin: 2rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.product-item {
  background: white;
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  text-align: center;
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  background: #f5f1ed;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.product-svg {
  width: 100%;
  height: 100%;
  max-width: 100px;
  max-height: 100px;
}

.product-item h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.product-item p {
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.price {
  color: var(--color-success);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Service Box */
.service-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-top: 3px solid var(--color-success);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-box h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.service-box p {
  color: var(--color-text);
  line-height: 1.6;
}

/* Why Us Section */
.why-us h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Testimonial Section */
.testimonial {
  background: #f0f4ed;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.testimonial h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.testimonial-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-success);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-box p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.testimonial-box p:last-child {
  color: var(--color-secondary);
  font-weight: 600;
  margin-top: 1rem;
}

/* CTA Final */
.cta-final {
  background: linear-gradient(135deg, #5a6b5b 0%, #4a5b4b 100%);
  margin: 3rem 0 0 0;
}

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

.price-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border-top: 4px solid var(--color-success);
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.price-card.featured {
  border-top-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(90, 107, 91, 0.2);
}

.badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--color-success);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.price-tag {
  font-size: 1.8rem;
  color: var(--color-success);
  font-weight: 700;
  margin: 0.5rem 0;
}

.subtitle {
  color: var(--color-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.features-list li {
  padding: 0.5rem 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

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

/* Package Info */
.package-info h2 {
  text-align: center;
  color: var(--color-primary);
  margin: 2rem 0;
  font-size: 1.8rem;
}

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

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-card p {
  color: var(--color-text);
  line-height: 1.6;
}

/* Timeline */
.timeline {
  margin: 2rem 0;
}

.timeline h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.timeline-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.timeline-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 3px solid var(--color-success);
  position: relative;
}

.timeline-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--color-success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.timeline-item h4 {
  color: var(--color-primary);
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1rem;
}

.timeline-item p {
  color: var(--color-text);
  font-size: 0.95rem;
}

/* About Section */
.about-intro {
  background: #f0f4ed;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.about-content p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Values Section */
.values h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.value-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Team Section */
.team {
  margin: 2rem 0;
}

.team h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--color-text);
  line-height: 1.8;
}

.team-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.team-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.team-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.team-card p {
  color: var(--color-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Process Section */
.process {
  margin: 2rem 0;
}

.process h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.step {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: var(--color-success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step h4 {
  color: var(--color-primary);
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.step p {
  color: var(--color-text);
  font-size: 0.95rem;
}

/* Testimonial About */
.testimonial-about h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.testimonial-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-success);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-box p {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* Certification */
.certification {
  background: #f0f4ed;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.certification h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.commitment-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}

.commitment-list li {
  padding: 0.7rem 0;
  color: var(--color-text);
  font-size: 1rem;
  border-bottom: 1px solid var(--color-border);
}

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

/* Contact Info */
.contact-info {
  margin: 2rem 0;
}

.info-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.info-box h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-box a {
  color: var(--color-success);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.info-box a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
  max-width: 600px;
  margin: 2rem auto;
}

.contact-form-section h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-success);
  box-shadow: 0 0 0 3px rgba(139, 154, 127, 0.1);
}

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

/* Contact Methods */
.contact-methods {
  margin: 2rem 0;
}

.contact-methods h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.method-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.method-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.method-card p {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* FAQ */
.faq {
  margin: 2rem 0;
}

.faq h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-success);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.faq-item p {
  color: var(--color-text);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f0f4ed 0%, #faf7f4 100%);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

.cta-section h2 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.cta-section p {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: var(--color-primary);
  color: var(--color-light);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  border-top: 2px solid var(--color-success);
}

footer p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-links {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-light);
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-primary);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu a {
    display: block;
    padding: 1rem;
    border-bottom: none;
  }

  .menu-toggle {
    display: none;
  }

  .menu-label {
    display: block;
  }

  .menu-toggle:checked ~ nav .nav-menu {
    max-height: 300px;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .price-card.featured {
    transform: scale(1);
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  main {
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .demo-bar {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  nav {
    padding: 0.75rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}
