/* Elegant Theme Styles */

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f5f5f0;
    z-index: 100;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

/* Mobile Navigation */
.nav-mobile {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-mobile {
        padding: 20px 32px;
    }
}

@media (min-width: 1024px) {
    .nav-mobile {
        display: none;
    }
}

.nav-mobile-burger-btn {
    background-color: rgba(44, 44, 44, 0.1);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    padding: 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    border: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.nav-mobile-burger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #2c2c2c;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-mobile-burger-btn span:nth-child(2) {
    transition: opacity 0.3s ease;
}

.nav-mobile-burger-btn span:last-child {
    width: 10px;
    transition: width 0.3s ease, transform 0.3s ease;
}

.nav-mobile-burger-btn.active span:first-child {
    transform: translateY(6px) rotate(45deg);
}

.nav-mobile-burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.nav-mobile-burger-btn.active span:last-child {
    width: 20px;
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.nav-menu-mobile {
    position: fixed;
    background: #f5f5f0;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 40;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-menu-mobile.active {
    transform: translateX(0);
}

@media (min-width: 1024px) {
    .nav-menu-mobile {
        display: none;
    }
}

.nav-menu-mobile-list {
    margin: 0;
    padding: 94px 0 0;
    list-style-type: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

.nav-menu-mobile-list li {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.nav-menu-mobile-list li a {
    color: #666666;
    text-decoration: none;
}

.nav-menu-mobile-list div {
    padding: 20px;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.nav-menu-mobile-button {
    color: white;
    background: #2c2c2c;
    padding: 10px 24px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    display: block;
    text-decoration: none;
}

/* Desktop Navigation */
.nav-container {
    display: none;
}

@media (min-width: 1024px) {
    .nav-container {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 40px;
        justify-content: space-between;
        align-items: center;
    }
}

.nav-brand {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 400;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c2c2c;
}

.nav-button {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: white;
    background: #2c2c2c;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.nav-button:hover {
    background: #1a1a1a;
}

/* Main Container */
.main {
    padding-top: 80px;
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.hero-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 32px;
}

.hero-date {
    margin-bottom: 24px;
}

.hero-date-text {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 0.02em;
}

.hero-countdown {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-countdown-value {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1;
}

.hero-countdown-label {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999999;
}

.hero-button {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: #2c2c2c;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.hero-button:hover {
    background: #1a1a1a;
}

.hero-deadline {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #999999;
    margin-top: 16px;
}

.hero-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
    .hero-image {
        width: 60%;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-image {
        width: 75%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 90%;
        margin: 0 auto;
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Section */
.info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.info-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card {
    background: white;
    padding: 48px;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
}

.info-title {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.info-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #666666;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.info-item {
    margin-bottom: 28px;
}

.info-item:last-of-type {
    margin-bottom: 32px;
}

.info-label {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.info-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.info-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: #2c2c2c;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.info-button:hover {
    background: #1a1a1a;
}

/* Schedule Section */
.schedule-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.schedule-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid rgba(44, 44, 44, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.schedule-card-icon {
    margin-bottom: 20px;
    color: var(--color-primary, #2c2c2c);
}

.schedule-card-icon svg {
    width: 28px;
    height: 28px;
}

.schedule-day-header {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.schedule-day-header:first-child {
    margin-top: 0;
}

.schedule-day-name {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 400;
    color: #2c2c2c;
}

.schedule-day-date {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #999999;
    letter-spacing: 0.05em;
}

.schedule-card-time {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--color-primary, #2c2c2c);
    margin-bottom: 8px;
    line-height: 1;
}

.schedule-card-title {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.schedule-card-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
}

/* Story Section */
.story-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-content {
    max-width: 400px;
}

.story-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 32px;
}

.story-button {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: #2c2c2c;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.story-button:hover {
    background: #1a1a1a;
}

.story-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.story-photo {
    background: white;
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

@media (min-width: 480px) {
    .story-photo {
        width: 70%;
        margin: 0 auto;
    }
}

@media (min-width: 640px) {
    .story-photo {
        width: 100%;
    }
}

.story-photo:nth-child(even) {
    transform: rotate(2deg);
}

.story-photo:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.story-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 2px;
}

/* Story Modal */
.story-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.story-modal-hidden {
    opacity: 0;
    pointer-events: none;
}

.story-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.story-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px 40px;
}

@media (max-width: 640px) {
    .story-modal-content {
        padding: 32px 24px;
        border-radius: 16px 16px 0 0;
        max-height: 90vh;
        align-self: flex-end;
    }
}

.story-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.story-modal-close:hover {
    color: #2c2c2c;
}

.story-modal-title {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 8px;
    text-align: center;
}

.story-modal-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #999;
    text-align: center;
    margin-bottom: 40px;
}

.story-modal-milestones {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-milestone {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

@media (max-width: 640px) {
    .story-milestone {
        flex-direction: column;
        gap: 16px;
    }
}

.story-milestone-image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 640px) {
    .story-milestone-image {
        width: 100%;
        height: 200px;
    }
}

.story-milestone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-milestone-body {
    flex: 1;
}

.story-milestone-date {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 6px;
}

.story-milestone-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.story-milestone-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Common Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* Announcements Section */
.announcements-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.announcement-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid rgba(44, 44, 44, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.announcement-icon {
    margin-bottom: 20px;
    color: var(--color-primary, #2c2c2c);
}

.announcement-icon svg {
    width: 32px;
    height: 32px;
}

.announcement-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.announcement-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
}

/* Locations Section */
.locations-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.location-card {
    background: white;
    padding: 48px;
    border-radius: 12px;
    border: 1px solid rgba(44, 44, 44, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.location-icon {
    margin-bottom: 24px;
    color: var(--color-primary, #2c2c2c);
}

.location-icon svg {
    width: 36px;
    height: 36px;
}

.location-title {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.location-name {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.location-address {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 16px;
}

.location-time {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.location-link {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #666666;
}

/* Gallery Section */
.gallery-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

@media (min-width: 480px) {
    .gallery-item {
        width: 70%;
        margin: 0 auto;
    }
}

@media (min-width: 640px) {
    .gallery-item {
        width: 100%;
        margin: 0 auto;
    }
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Parallax Section */
.parallax-section {
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-overlay {
    background: rgba(44, 44, 44, 0.6);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.parallax-content {
    text-align: center;
    color: white;
}

.parallax-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.9;
}

.parallax-title {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
}

/* Quote Section */
.quote-section {
    background: #edeae4;
    padding: 60px 40px;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: "Playfair Display", serif;
    font-size: 100px;
    color: #2c2c2c;
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: 20px;
}

.quote-text {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.6;
    margin-bottom: 24px;
}

.quote-author {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #666666;
}

/* Timeline Section */
.timeline-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.timeline-time {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    min-width: 100px;
}

.timeline-details {
    flex: 1;
}

.timeline-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.timeline-description {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* FAQ Section */
.faq-section {
    max-width: 100%;
    padding: 80px 40px;
    background: #f9f9f8;
}

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

.faq-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-description {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #666666;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2c2c2c;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(44, 44, 44, 0.02);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #666666;
    transition: transform 0.3s ease;
}

.faq-chevron-open {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
}

.faq-answer-content {
    padding: 0 24px 24px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
}

/* Travel Section */
.travel-section {
    max-width: 100%;
    padding: 80px 40px;
}

.travel-section .section-header {
    max-width: 1200px;
    margin: 0 auto 48px;
}

.travel-section .travel-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.travel-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid rgba(44, 44, 44, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.travel-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 20px;
    color: var(--color-primary, #2c2c2c);
}

.travel-icon svg {
    width: 100%;
    height: 100%;
}

.travel-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.travel-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
}

@media (max-width: 968px) {
    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .travel-grid {
        grid-template-columns: 1fr;
    }

    .faq-title {
        font-size: 32px;
    }
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 40px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-names {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        gap: 20px;
    }

    .hero-section,
    .info-section,
    .story-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-section,
    .story-section {
        padding: 60px 40px 40px;
    }

    .info-section,
    .schedule-section,
    .announcements-section,
    .locations-section,
    .quote-section {
        padding: 40px;
    }

    .gallery-section {
        padding: 40px 40px 60px;
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .info-image {
        order: -1;
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .announcements-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-link {
        font-size: 12px;
    }

    .nav-button {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .announcements-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .story-title {
        font-size: 32px;
    }

    .story-gallery {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .parallax-title {
        font-size: 36px;
    }

    .quote-text {
        font-size: 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }

    .timeline-time {
        min-width: auto;
    }
}

/* Footer Enhancements */
.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-date {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 8px;
    color: white;
}

.footer-brand {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0;
}

.footer-brand a {
    color: rgba(255, 255, 255, 0.4);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RSVP Form
   ───────────────────────────────────────────────────────────────────────────── */
.rsvp-section {
    background: #edeae4;
    position: relative;
    padding: 60px 20px 30px;
}

@media (min-width: 640px) {
    .rsvp-section {
        padding: 60px 40px;
    }
}

@media (min-width: 968px) {
    .rsvp-section {
        padding: 80px 40px;
    }
}

.rsvp-container {
    max-width: 600px;
    margin: 0 auto;
}

.rsvp-form {
    background: white;
    padding: 56px 48px;
    border-radius: 12px;
    border: 1px solid rgba(44, 44, 44, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.rsvp-field {
    margin-bottom: 28px;
}

.rsvp-label {
    font-family: "Playfair Display", serif;
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
    display: block;
    margin-bottom: 10px;
}

.rsvp-input,
.rsvp-textarea,
.rsvp-select {
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #2c2c2c;
    padding: 14px 18px;
    border: 1px solid rgba(44, 44, 44, 0.15);
    border-radius: 6px;
    background: #fafaf8;
    transition: all 0.3s ease;
}

.rsvp-input:focus,
.rsvp-textarea:focus,
.rsvp-select:focus {
    outline: none;
    border-color: #2c2c2c;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.08);
}

.rsvp-input::placeholder,
.rsvp-textarea::placeholder {
    color: #999999;
}

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

.rsvp-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.rsvp-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #2c2c2c;
    cursor: pointer;
    padding: 12px 20px;
    border: 1px solid rgba(44, 44, 44, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.rsvp-radio:hover {
    border-color: #2c2c2c;
    background: rgba(44, 44, 44, 0.02);
}

.rsvp-radio:has(input:checked) {
    border-color: #2c2c2c;
    background: rgba(44, 44, 44, 0.05);
}

.rsvp-radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #666666;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.rsvp-radio input[type="radio"]:checked {
    border-color: #2c2c2c;
}

.rsvp-radio input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #2c2c2c;
    border-radius: 50%;
}

.rsvp-submit {
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: #2c2c2c;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.rsvp-submit:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.25);
}

.rsvp-submit:active {
    transform: translateY(0);
}

/* RSVP Message Styles */
.rsvp-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

.rsvp-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #166534;
}

.rsvp-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

/* Guest Fields */
.guest-fields {
    margin-top: 24px;
    padding: 24px;
    background: #fafaf8;
    border-radius: 8px;
    border: 1px solid rgba(44, 44, 44, 0.1);
}

.guest-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.guest-field-row:last-child {
    margin-bottom: 0;
}

.add-guest-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #2c2c2c;
    background: transparent;
    border: 1px dashed rgba(44, 44, 44, 0.3);
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.add-guest-btn:hover {
    border-color: #2c2c2c;
    background: rgba(44, 44, 44, 0.02);
}

@media (max-width: 640px) {
    /* .rsvp-section {
        padding: 60px 20px;
    } */
    .rsvp-form {
        padding: 40px 28px;
    }

    .rsvp-radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .guest-field-row {
        grid-template-columns: 1fr;
    }
}
