@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lora:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Great+Vibes&display=swap");
body {
  font-family: "Lora", "Georgia", serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C3A2B;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #2C3A2B;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: #4A5D4A;
}
p:last-child {
  margin-bottom: 0;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 1.5em;
  color: #6B7C59;
}

.couple-names {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #6B7C59;
  text-align: center;
  margin: 1.5rem 0;
}

.wedding-date {
  color: #6B7C59;
}

a {
  color: #6B7C59;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #8B9F7A;
}
a:focus {
  outline: 2px solid #6B7C59;
  outline-offset: 2px;
}

.scripture {
  font-style: italic;
  font-size: 18px;
  color: #4A5D4A;
  text-align: center;
  margin: 2.5rem 0;
  padding: 0 1.5rem;
  position: relative;
}
.scripture .reference {
  display: block;
  font-size: 14px;
  margin-top: 1rem;
  color: #6B7C69;
  font-style: normal;
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-weight: 500;
}

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.text-light {
  color: #6B7C69;
}

.text-olive {
  color: #6B7C59;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #FDFDF8;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

section {
  padding: 6rem 0 4rem 0;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}
section.no-padding {
  padding: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, transparent, #8B9F7A, transparent);
  margin: 1.5rem auto 0;
}

.olive-branch-divider {
  text-align: center;
  margin: 2.5rem 0;
  color: #A4B494;
  font-size: 2rem;
}
.olive-branch-divider::before {
  content: "🌿";
}

.card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(44, 58, 43, 0.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(44, 58, 43, 0.15);
}

.grid {
  display: grid;
  gap: 2.5rem;
}
.grid.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn.btn-primary {
  background: #6B7C59;
  color: #FFFFFF;
}
.btn.btn-primary:hover {
  background: #8B9F7A;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(44, 58, 43, 0.15);
}
.btn.btn-outline {
  background: transparent;
  color: #6B7C59;
  border: 2px solid #6B7C59;
}
.btn.btn-outline:hover {
  background: #6B7C59;
  color: #FFFFFF;
}
.btn:focus {
  outline: 3px solid #A4B494;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}

.fade-in-delay-2 {
  animation-delay: 0.4s;
}

.fade-in-delay-3 {
  animation-delay: 0.6s;
}

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

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mb-lg {
  margin-bottom: 2.5rem;
}

.mb-xl {
  margin-bottom: 4rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 1.5rem;
}

.mt-lg {
  margin-top: 2.5rem;
}

.mt-xl {
  margin-top: 4rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.header-hidden {
  transform: translateY(-100%);
}

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

.nav-logo {
  font-family: "Great Vibes", cursive;
  font-size: 1.5rem;
  color: #6B7C59;
  font-weight: normal;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}
.nav-menu a {
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
}
.nav-menu a:hover {
  color: #8B9F7A;
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle .hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background: #6B7C59;
  position: relative;
  transition: all 0.3s;
}
.nav-toggle .hamburger::before, .nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #6B7C59;
  transition: all 0.3s;
}
.nav-toggle .hamburger::before {
  top: -8px;
}
.nav-toggle .hamburger::after {
  top: 8px;
}
.nav-toggle.active .hamburger {
  background: transparent;
}
.nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

#main-content {
  padding-top: 1em;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FDFDF8;
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .mobile-nav-list {
  list-style: none;
  text-align: center;
}
.mobile-menu .mobile-nav-list li {
  margin: 1.5rem 0;
}
.mobile-menu .mobile-nav-list a {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.5rem;
  color: #6B7C59;
  padding: 1rem;
  display: block;
}
.mobile-menu .mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: #6B7C59;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(107, 124, 89, 0.3), rgba(107, 124, 89, 0.5)), url("../images/hero-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: #2C3A2B;
  position: relative;
}
.hero .hero-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 6rem 2.5rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 20px;
}
@media (max-width: 768px) {
  .hero .hero-content {
    padding: 4rem 1.5rem;
  }
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
}
.hero .scroll-indicator::before {
  content: "↓";
  font-size: 2rem;
  color: #6B7C59;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.countdown .countdown-item {
  text-align: center;
  min-width: 80px;
}
.countdown .countdown-item .countdown-number {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 2.5rem;
  color: #6B7C59;
  font-weight: 700;
  display: block;
}
.countdown .countdown-item .countdown-label {
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4A5D4A;
  margin-top: 0.5rem;
}

.timeline {
  position: relative;
  padding: 2.5rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #A4B494;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
}

.timeline-item {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    padding-left: 60px;
  }
}
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
  }
}
.timeline-item .timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #6B7C59;
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 768px) {
  .timeline-item .timeline-marker {
    left: 20px;
  }
}
.timeline-item .timeline-content {
  flex: 1;
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .timeline-item .timeline-content {
    padding: 0;
  }
}
.timeline-item .timeline-content h3 {
  color: #6B7C59;
  margin-bottom: 1rem;
}
.timeline-item .timeline-content .timeline-date {
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-size: 14px;
  color: #6B7C69;
  margin-bottom: 1rem;
}
.timeline-item .timeline-image {
  flex: 1;
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .timeline-item .timeline-image {
    padding: 1.5rem 0;
  }
}
.timeline-item .timeline-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(44, 58, 43, 0.15);
}

.site-footer {
  background: #6B7C59;
  color: #FFFFFF;
  padding: 4rem 0 1.5rem;
  margin-top: 6rem;
}
.site-footer a {
  color: #FFFFFF;
}
.site-footer a:hover {
  color: #A4B494;
}
.site-footer .scripture {
  color: #FFFFFF;
}
.site-footer .reference {
  color: #FFFFFF;
}
.site-footer .footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.site-footer .footer-section h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.site-footer .footer-section p {
  color: #FFFFFF;
}
.site-footer .footer-section ul {
  list-style: none;
}
.site-footer .footer-section ul li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: #A4B494;
}

/*# sourceMappingURL=main.css.map */