/* static/styles/main.scss */
/* static/styles/_variables.scss */
/* Engravers Gothic (Body Text) */
@font-face {
  font-family: 'Engravers Gothic';
  src: url("../fonts/engravers-gothic-regular.otf") format("truetype");
  font-weight: normal;
  font-style: normal; }
.font-main {
  font-family: 'Montserrat', sans-serif; }

.font-cursive {
  font-family: 'Dancing Script', cursive; }

.font-engraved {
  font-family: 'Engravers Gothic', sans-serif; }

/* static/styles/_layout.scss */
/* static/styles/_variables.scss */
/* Engravers Gothic (Body Text) */
@font-face {
  font-family: 'Engravers Gothic';
  src: url("../fonts/engravers-gothic-regular.otf") format("truetype");
  font-weight: normal;
  font-style: normal; }
.font-main {
  font-family: 'Montserrat', sans-serif; }

.font-cursive {
  font-family: 'Dancing Script', cursive; }

.font-engraved {
  font-family: 'Engravers Gothic', sans-serif; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem; }

.section-header {
  text-align: center;
  margin-bottom: 4rem; }
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem; }
    @media (min-width: 768px) {
      .section-header h2 {
        font-size: 3rem; } }
  .section-header .divider {
    width: 6rem;
    height: 0.25rem;
    background-color: #87A878;
    margin: 0 auto 2rem; }
  .section-header p {
    max-width: 36rem;
    margin: 0 auto;
    color: #6B7280;
    font-size: 1.125rem; }

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); }

.btn {
  display: inline-block;
  background-color: #87A878;
  color: white;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 300ms, transform 300ms; }
  .btn:hover {
    background-color: #799e68;
    transform: translateY(-2px); }

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); }
  .overlay.blush-overlay {
    background-color: rgba(154, 118, 83, 0.6); }

.divider {
  width: 6rem;
  height: 0.25rem;
  background-color: #87A878;
  margin: 0 auto; }

/* static/styles/_sections.scss */
/* static/styles/_variables.scss */
/* Engravers Gothic (Body Text) */
@font-face {
  font-family: 'Engravers Gothic';
  src: url("../fonts/engravers-gothic-regular.otf") format("truetype");
  font-weight: normal;
  font-style: normal; }
.font-main {
  font-family: 'Montserrat', sans-serif; }

.font-cursive {
  font-family: 'Dancing Script', cursive; }

.font-engraved {
  font-family: 'Engravers Gothic', sans-serif; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #2B3B50;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 300ms; }
  .site-nav .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0; }
  .site-nav .logo h1 {
    font-size: 1.5rem;
    color: #936121;
    font-weight: 600; }
  .site-nav .desktop-nav {
    display: none; }
    @media (min-width: 768px) {
      .site-nav .desktop-nav {
        display: flex;
        gap: 2rem; } }
  .site-nav .nav-link {
    color: #FEFBF3;
    font-family: "Engravers Gothic", sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 300ms; }
    .site-nav .nav-link:hover {
      color: #936121; }
  .site-nav .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #FEFBF3;
    cursor: pointer; }
    @media (min-width: 768px) {
      .site-nav .mobile-menu-btn {
        display: none; } }
  .site-nav .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0 1.5rem;
    text-align: center; }
    .site-nav .mobile-menu.active {
      display: flex; }
    .site-nav .mobile-menu .nav-link {
      display: block;
      padding: 0.5rem 0; }
    @media (min-width: 768px) {
      .site-nav .mobile-menu {
        display: none; } }

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/DSC_9762.jpg"); }
  .hero-section .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 40rem;
    padding: 0 1.5rem; }
    .hero-section .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 0rem;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
      color: #936121;
      animation: fadeIn 1s ease-in-out; }
      @media (min-width: 768px) {
        .hero-section .hero-content h1 {
          font-size: 5rem; } }
    .hero-section .hero-content p {
      font-size: 2.25rem;
      line-height: 3rem;
      margin-bottom: 2rem;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      animation: slideUp 0.8s ease-out; }
      @media (min-width: 768px) {
        .hero-section .hero-content p {
          font-size: 2.25rem; } }
  .hero-section .countdown-container {
    font-family: "Dancing Script", cursive;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    display: inline-block; }
    .hero-section .countdown-container p {
      font-family: "Montserrat", sans-serif;
      font-size: 1.125rem;
      margin-bottom: 1rem; }
  .hero-section .countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center; }
  .hero-section .countdown-box {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 1rem; }
  .hero-section .countdown-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FEFBF3; }
  .hero-section .countdown-label {
    font-size: 1rem; }
  .hero-section .scroll-indicator {
    animation: bounce 2s infinite; }
    .hero-section .scroll-indicator svg {
      width: 2rem;
      height: 2rem;
      margin: 0 auto; }

.story-section {
  padding: 5rem 0;
  background-image: url("../images/DSC_0262.jpg"); }
  .story-section .section-header {
    z-index: 10;
    position: relative; }
    .story-section .section-header h2 {
      color: #FEFBF3; }
  .story-section .divider {
    background-color: #FEFBF3; }
  .story-section .story-grid {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 10; }
    @media (min-width: 768px) {
      .story-section .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center; } }
  .story-section .story-card {
    background-color: #FEFBF3;
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
    .story-section .story-card h3 {
      font-size: 1.5rem;
      color: #0F0D0C;
      margin-bottom: 1rem; }
    .story-section .story-card p {
      color: #6B7280;
      line-height: 1.6;
      margin-bottom: 1.5rem; }
      .story-section .story-card p:last-child {
        margin-bottom: 0; }
  .story-section .story-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; }
  .story-section .story-image {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
  .story-section .proposal-card {
    background-color: rgba(43, 59, 80, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
    .story-section .proposal-card h4 {
      font-family: "Engravers Gothic", sans-serif;
      font-size: 1.25rem;
      color: #FEFBF3;
      margin-bottom: 0.75rem; }
    .story-section .proposal-card p {
      color: #FEFBF3;
      font-size: 1rem; }

.rsvp-section {
  padding: 5rem 0;
  background-color: #9a7653;
  background-image: url("../images/DSC_0251-Edit.jpg");
  background-size: cover;
  background-position: 0px 40%;
  text-align: center; }
  .rsvp-section p {
    margin-bottom: 1rem;
    color: #FEFBF3;
    background-color: rgba(43, 59, 80, 0.7);
    border-radius: 8px;
    padding: 20px;
    color: #FEFBF3;
    font-family: "Engravers Gothic", sans-serif;
    font-size: 1.25rem; }
  .rsvp-section .blush-overlay {
    background-color: rgba(43, 59, 80, 0.5); }
  .rsvp-section .divider {
    background-color: #FEFBF3; }
  .rsvp-section h2 {
    font-family: "Dancing Script", cursive;
    color: #FEFBF3; }
  .rsvp-section .container {
    z-index: 55;
    position: relative; }
  .rsvp-section .btn {
    background-color: #FEFBF3;
    color: #0F0D0C;
    cursor: pointer; }

.modal {
  z-index: 99999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5); }

.modal-content {
  position: relative;
  width: 95vw;
  height: 95vh;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column; }
  .modal-content iframe {
    flex: 1 1 auto;
    width: 100%;
    height: 100%; }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
  background-color: #9a7653;
  border-radius: 6px;
  padding: 10px 15px; }

.modal-close:hover {
  color: #333; }

.details-section {
  padding: 5rem 0;
  background-color: #FEFBF3; }
  .details-section .events-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem; }
    @media (min-width: 768px) {
      .details-section .events-grid {
        grid-template-columns: repeat(2, 1fr); } }
  .details-section .event-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 300ms, box-shadow 300ms; }
    .details-section .event-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); }
  .details-section .event-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(135, 168, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem; }
    .details-section .event-icon i {
      color: #2B3B50;
      font-size: 2rem; }
  .details-section h3 {
    font-size: 1.5rem;
    color: #0F0D0C;
    margin-bottom: 0.5rem; }
  .details-section .event-time {
    font-weight: 600;
    color: #87A878;
    margin-bottom: 0.5rem; }
  .details-section .event-location {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #2B3B50; }
  .details-section .event-address {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 1rem; }
  .details-section .event-description {
    color: #6B7280;
    font-size: 0.875rem; }
  .details-section .venue-gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem; }
    @media (min-width: 768px) {
      .details-section .venue-gallery {
        grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 768px) {
      .details-section .venue-gallery {
        display: none; } }
  .details-section .venue-image {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 10px #87a878;
    transition: box-shadow 300ms; }
    .details-section .venue-image:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }

.travel-section {
  padding: 5rem 0;
  background-color: #FEFBF3; }
  @media (min-width: 768px) {
    .travel-section .travel-grid {
      grid-template-columns: 1fr 1fr; } }
  .travel-section .travel-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem; }
    .travel-section .travel-card h3 {
      font-size: 1.5rem;
      color: #0F0D0C;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center; }
      .travel-section .travel-card h3 svg {
        color: #87A878;
        margin-right: 0.75rem; }
  .travel-section .hotel-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: .8rem;
    margin-bottom: 15px;
    transition: box-shadow 300ms; }
    .travel-section .hotel-card:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); }
    .travel-section .hotel-card h4 {
      font-weight: 600;
      color: #0F0D0C;
      font-size: 1.125rem;
      margin-bottom: 0.5rem; }
    .travel-section .hotel-card .hotel-distance {
      color: #6B7280;
      font-size: 0.875rem;
      margin-bottom: 0.75rem; }
    .travel-section .hotel-card .hotel-rate {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem; }
      .travel-section .hotel-card .hotel-rate .price {
        color: #87A878;
        font-weight: 600; }
      .travel-section .hotel-card .hotel-rate .special-rate {
        color: #6B7280;
        font-size: 0.75rem; }
    .travel-section .hotel-card .hotel-description {
      font-size: 0.875rem;
      color: #6B7280;
      margin-bottom: 1rem; }
  .travel-section .travel-details {
    display: grid;
    gap: 1.5rem; }
  .travel-section .travel-method h4 {
    font-weight: 600;
    color: #0F0D0C;
    margin-bottom: 0.5rem; }
  .travel-section .travel-method p {
    color: #6B7280;
    font-size: 0.875rem; }
  .travel-section .important-notes {
    list-style: none;
    padding: 0;
    margin: 0; }
    .travel-section .important-notes li {
      display: flex;
      align-items: start;
      margin-bottom: 0.75rem;
      color: #6B7280;
      font-size: 0.875rem; }
      .travel-section .important-notes li svg {
        color: #87A878;
        margin-right: 0.5rem;
        flex-shrink: 0;
        width: 1rem;
        height: 1rem;
        margin-top: 0.25rem; }
  .travel-section i {
    color: #87A878;
    font-size: 2rem;
    margin-right: 10px; }
  .travel-section a {
    color: #2B3B50; }

.site-footer {
  background-color: #0F0D0C;
  color: white;
  padding: 4rem 0; }
  .site-footer .footer-header {
    text-align: center;
    margin-bottom: 2rem; }
    .site-footer .footer-header h3 {
      font-size: 2.5rem;
      color: #9a7653;
      margin-bottom: 1rem; }
    .site-footer .footer-header p {
      color: #D1D5DB;
      margin-bottom: 1.5rem; }
    .site-footer .footer-header .divider {
      background-color: #87A878; }
  .site-footer .footer-content {
    margin: 20px auto;
    padding: 0 1.5rem;
    text-align: center; }
    .site-footer .footer-content img {
      margin: 0 auto;
      height: 20rem;
      border-radius: 1rem;
      box-shadow: 0 4px 10px #87a878;
      transition: box-shadow 300ms; }
      .site-footer .footer-content img:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }
  .site-footer .footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem; }
    @media (min-width: 768px) {
      .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr; } }
  .site-footer h4 {
    font-weight: 600;
    margin-bottom: 0.75rem; }
  .site-footer .footer-contact p {
    color: #D1D5DB;
    font-size: 0.875rem; }
  .site-footer .footer-link {
    color: #9a7653;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 300ms; }
    .site-footer .footer-link:hover {
      color: #795d41; }
    .site-footer .footer-link svg {
      width: 1rem;
      height: 1rem; }
  .site-footer .footer-social {
    text-align: center; }
  .site-footer .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem; }
  .site-footer .social-link {
    color: #D1D5DB;
    transition: color 300ms; }
    .site-footer .social-link:hover {
      color: #9a7653; }
  .site-footer .footer-copyright {
    text-align: center; }
    .site-footer .footer-copyright p {
      color: #9CA3AF;
      font-size: 0.875rem; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-20px); }
  60% {
    transform: translateY(-10px); } }
.map-section {
  padding: 5rem 0;
  background-color: #e6e8ea;
  text-align: center; }
  .map-section .map-embed {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    overflow: hidden; }
  .map-section h2 {
    color: #2B3B50; }
  .map-section .divider {
    background-color: #2B3B50; }
  .map-section h3, .map-section p {
    margin-bottom: 25px; }
  .map-section .map-description {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    font-size: 1.25rem; }
    .map-section .map-description a {
      color: #0F0D0C; }
      .map-section .map-description a:hover {
        color: #87A878; }

.map-label {
  background: rgba(154, 118, 83, 0.8);
  color: #FEFBF3;
  font-family: Montserrat, sans-serif;
  font-size: .8rem;
  padding: 5px 5px;
  border-radius: 0.25rem;
  border: 1px solid #FEFBF3;
  white-space: nowrap;
  pointer-events: none;
  font-weight: 600; }

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

body {
  font-family: "Montserrat", sans-serif;
  color: #0F0D0C;
  line-height: 1.6;
  background-color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  max-width: 100%;
  height: auto; }

img[height] {
  height: auto; }

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