/* Vows by Gio - Custom Styles */

:root {
  --primary: #1A8A7D;
  --primary-light: #22A898;
  --accent: #E8985A;
  --accent-light: #F0B07A;
  --dark: #2D2A27;
  --light: #FDF9F5;
  --text: #3D3835;
  --text-light: #6B6560;
  --white: #fff;
}

/* Base */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', -apple-system, sans-serif;
  color: var(--dark);
  font-weight: 700;
}

/* Navbar */
.navbar {
  padding: 1rem 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary) !important;
}

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.lang-toggle {
  border: 1px solid var(--primary);
  border-radius: 100px;
  padding: 0.25rem 0.75rem !important;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary) !important;
}

.lang-toggle:hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* Hero */
.hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(160deg, rgba(253,249,245,0.4) 0%, rgba(245,237,228,0.45) 100%), url('/images/hero-bg.jpg') center/cover no-repeat;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

.hero .lead {
  font-size: 1.3rem;
  color: #1a1a1a;
  max-width: 650px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

/* Buttons */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 138, 125, 0.25);
}

.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.feature-card p {
  color: var(--text-light);
}

/* Ceremony Type Badges */
.badge-type {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--white);
  border: 1px solid #ebe5de;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
}

/* Package Cards */
.package-card {
  background: var(--white);
  border: 1px solid #ebe5de;
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  transition: box-shadow 0.2s;
}

.package-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.package-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
}

.package-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0.5rem 0 1rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
}

.package-card ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.package-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Audience Tags */
.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.audience-list li {
  background: var(--white);
  border: 1px solid #ebe5de;
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
}

/* Process Steps */
.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.step-roles {
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.step-roles strong {
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #157A6E 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  border-radius: 0;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.cta-section p {
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-section .btn-primary-custom {
  background: var(--accent);
  color: var(--dark);
}

.cta-section .btn-primary-custom:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 20px rgba(232, 152, 90, 0.4);
}

/* About page */
.bio-section {
  max-width: 700px;
}

.credentials-list {
  list-style: none;
  padding: 0;
}

.credentials-list li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.credentials-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* FAQ */
.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ebe5de;
}

.faq-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form .form-control {
  border: 1px solid #ebe5de;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 138, 125, 0.1);
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

/* Timeline Table */
.timeline-table {
  width: 100%;
  border-collapse: collapse;
}

.timeline-table th {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-weight: 600;
  text-align: left;
}

.timeline-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ebe5de;
}

.timeline-table tr:nth-child(even) {
  background: var(--light);
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 5rem 0 4rem;
  }

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

  .section {
    padding: 3.5rem 0;
  }

  .step {
    flex-direction: column;
    gap: 1rem;
  }
}
