/* Your CSS styles here */

:root {
    --primary-font: "Cinzel", serif;
    --secondary-font: "Pinyon Script", cursive;
}

.italic {
    font-style: italic;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffee99;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #666;
}

.home-link {
    font-weight: normal;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #666;
}

.rsvp-link {
    position: relative;
    border: 1px solid #666;
    padding: 8px 16px;
    transition: color 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.rsvp-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: width 0.3s ease;
    z-index: -1;
}

.rsvp-link:hover {
    color: #000;
}

.rsvp-link:hover::before {
    width: 100%;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #666;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Drawer Styles */
.drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    display: none;
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: left 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    padding: 30px 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
}

.drawer.active {
    left: 0;
    visibility: visible;
    opacity: 1;
}

.drawer-brand {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.drawer-links a {
    text-decoration: none;
    color: #666;
    font-size: 18px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.drawer-links a:hover {
    color: #666;
}

.drawer-links .rsvp-link {
    position: relative;
    border: 1px solid #666;
    padding: 10px 20px;
    display: inline-block;
    transition: color 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.drawer-links .rsvp-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: width 0.3s ease;
    z-index: -1;
}

.drawer-links .rsvp-link:hover {
    color: #000;
}

.drawer-links .rsvp-link:hover::before {
    width: 100%;
}

/* Welcome Section */
.welcome-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.welcome-subheading {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #666;
    margin-bottom: 40px;
}

.welcome-names {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.welcome-names .name {
    font-size: 96px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 25px;
    color: #ffee99;
}

.name-connector {
    font-size: 96px;
    font-weight: 400;
    font-family: var(--secondary-font);
    /* letter-spacing: 4px; */
    color: #666;
    margin-top: -70px;
    margin-bottom: -50px;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.welcome-date {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #666;
    margin-bottom: 40px;
}

.welcome-photo-frame {
    margin: 40px 0;
    padding: 15px 15px 60px 15px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.15);
    display: inline-block;
    max-width: 350px;
    width: 70%;
    position: relative;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.welcome-photo-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.welcome-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 0;
}

.welcome-text {
    width: 70%;
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    font-family: "Playfair Display", serif;
    text-transform: none !important;
}

.welcome-text-section {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.welcome-from-text {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #666;
  
    font-family: "Playfair Display", serif;
}

/* Section Divider */
.section-divider {
    width: 50%;
    height: 1px;
    background-color: #666;
    margin: 0 auto;
    
}

/* Schedule Section */
.schedule-section {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px 80px;
}

/* Location Section */
.location-section {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.location-content {
    display: flex;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin-top: 0px;
    align-items: center;
}

.location-text {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.location-name {
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location-address {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.location-text p {
    margin-bottom: 20px;
}

.location-map {
    flex: 1;
}

.location-map iframe {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 0;
    border-radius: 4px;
}

/* Accommodation Section */
.accommodation-section {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.accommodation-content {
    display: flex;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin-top: 60px;
    align-items: center;
}

.accommodation-image {
    flex: 1;
}

.accommodation-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
}

.accommodation-text {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.accommodation-name {
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.accommodation-text p {
    margin-bottom: 20px;
}

.accommodation-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 32px;
    border: 1px solid #666;
    text-decoration: none;
    color: #666;
    font-family: var(--primary-font);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.accommodation-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #666;
    transition: left 0.3s ease;
    z-index: -1;
}

.accommodation-link:hover {
    color: #fff;
}

.accommodation-link:hover::before {
    left: 0;
}

/* Accommodation List */
.accommodation-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.accommodation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #666;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 150px;
}

.accommodation-item:hover {
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accommodation-item-name {
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.accommodation-item-image {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 4px;
}

.accommodation-item-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.accommodation-item .accommodation-link {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    padding: 10px 24px;
    margin-top: 20px;
    border: 1px solid #666;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.accommodation-item .accommodation-link::before {
    display: block;
}

.accommodation-item .accommodation-link:hover {
    color: #fff;
    background: none;
}

/* Details Section */
.details-section {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.details-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 800px;
    margin-top: 20px;
    text-align: center;
}

.detail-item {
    margin-bottom: 50px;
    width: 100%;
    text-align: left;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-title {
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.detail-text {
    font-family: "Playfair Display", serif !important;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
    text-align: center;
}

.taxi-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: center;
}

.taxi-list li {
    font-family: "Playfair Display", serif !important;
    font-size: 18px;
    line-height: 2;
    color: #666;
    margin-bottom: 10px;
}

.taxi-list li strong {
    font-weight: 600;
    color: #666;
}

/* RSVP Section */
.rsvp-section {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.rsvp-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 800px;
    margin-top: 20px;
    text-align: center;
}

.rsvp-intro {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.rsvp-form {
    width: 100%;
    text-align: left;
    margin-top: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #666;
    background-color: transparent;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #666;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #666;
}

.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #666;
    background-color: transparent;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #666;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: #666;
}

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

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #666;
}

.radio-label input[type="radio"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.radio-label span {
    flex: 1;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    text-align: center;
}

.rsvp-submit-button {
    width: 100%;
    padding: 12px 32px;
    border: 1px solid #666;
    background-color: transparent;
    color: #666;
    font-family: var(--primary-font);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.rsvp-submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #666;
    transition: left 0.3s ease;
    z-index: -1;
}

.rsvp-submit-button:hover {
    color: #fff;
}

.rsvp-submit-button:hover::before {
    left: 0;
}

/* Accommodation Fields */
.accommodation-fields {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.accommodation-message {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 3px solid #666;
}

.accommodation-message .rsvp-intro {
    font-size: 14px;
    margin-bottom: 0;
}

.rsvp-submit-button.primary-button {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.rsvp-submit-button.secondary-button {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border-color: #999;
    color: #999;
}

.rsvp-submit-button.secondary-button::before {
    background-color: #999;
}

.rsvp-submit-button.secondary-button:hover {
    color: #fff;
}

/* Verified Buttons Section */
.verified-buttons {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-options .rsvp-submit-button {
    width: 100%;
}

/* RSVP Form Page */
.rsvp-form-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: #fff;
   
}

/* RSVP Page Navbar Styles */
body.rsvp-page .navbar {
    background-color: #ffee99;
}

body.rsvp-page .navbar .nav-brand,
body.rsvp-page .navbar .nav-brand a {
    color: #666;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

body.rsvp-page .navbar .nav-links a {
    color: #333;
}

body.rsvp-page .drawer {
    background-color: #ffee99;
}

body.rsvp-page .drawer .drawer-brand {
    color: #666;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

body.rsvp-page .drawer .drawer-links a {
    color: #333;
}

.rsvp-form-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    background-color: #fff;
    padding: 60px 50px;
    border: 2px solid #666;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 20px;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.02) 2px,
            rgba(0, 0, 0, 0.02) 4px
        );
}

.rsvp-form-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #666 0%, #666 50%, #000 100%);
    border-radius: 50%;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    z-index: 2;
    border: 1px solid #000;
}

.rsvp-form-container::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: linear-gradient(to bottom, #666 0%, #666 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.rsvp-form-title {
    font-family: var(--secondary-font);
    font-size: 72px;
    font-weight: 400;
    color: #666;
    margin-bottom: 0px;
}

.schedule-rsvp {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.schedule-rsvp-button {
    position: relative;
    border: 1px solid #666;
    padding: 12px 32px;
    text-decoration: none;
    color: #666;
    font-size: 18px;
    transition: color 0.3s ease;
    overflow: hidden;
    z-index: 1;
    font-family: var(--primary-font);
    text-align: center;
}

.schedule-rsvp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: width 0.3s ease;
    z-index: -1;
}

.schedule-rsvp-button:hover {
    color: #000;
}

.schedule-rsvp-button:hover::before {
    width: 100%;
}

.schedule-heading,
.section-heading {
    font-family: var(--secondary-font);
    font-size: 96px;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin: 40px auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 50%;
    max-width: 800px;
}

.schedule-heading span,
.section-heading span {
    display: inline-block;
    white-space: nowrap;
}

.schedule-heading::before,
.schedule-heading::after,
.section-heading::before,
.section-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #666;
    min-width: 0;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    width: 70%;
    margin: 60px auto 0;
    padding: 0px 0;
    margin-top: 0;
}

.timeline-date-header {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #666;
    margin-bottom: 40px;
    font-family: var(--primary-font);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 80px;
    bottom: 0;
    width: 2px;
    background-color: #666;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    opacity: 0;
}

.timeline-item.animate-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.timeline-item.animate-right {
    animation: slideInFromRight 0.8s ease-out forwards;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 16px;
    background-color: #666;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 3px solid #fffae5;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background-color: transparent;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
    padding-left: 40px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 600;
    color: #666;
    margin: 0 0 10px 0;
    font-family: var(--primary-font);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-time {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--primary-font);
}

.timeline-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: "Playfair Display", serif;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .accommodation-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .drawer-overlay {
        display: block;
        pointer-events: none;
    }
    
    .drawer-overlay.active {
        pointer-events: auto;
    }
    
    .drawer {
        display: block;
    }
    
    .drawer.active {
        visibility: visible;
        opacity: 1;
    }
    
    /* Section Divider Mobile */
    .section-divider {
        width: 80%;
    }
    
    /* Welcome Section Mobile */
    .welcome-section {
        padding: 20px 15px;
    }
    
    .welcome-subheading {
        font-size: 28px;
        letter-spacing: 4px;
        margin-bottom: 50px;
    }
    
    .welcome-names {
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .welcome-names .name {
        font-size: 72px;
        letter-spacing: 15px;
    }
    
    .name-connector {
        font-size: 72px;
        margin-top: -50px;
        margin-bottom: -30px;
    }
    
    .welcome-date {
        font-size: 28px;
        letter-spacing: 4px;
        margin-top: 20px;
    }
    
    .welcome-text {
        width: 90%;
        font-size: 16px;
        margin-top: 40px;
        text-transform: none !important;
    }
    
    /* Welcome Text Section Mobile */
    .welcome-text-section {
        padding: 60px 20px;
    }
    
    /* Schedule Section Mobile */
    .schedule-section {
        padding: 80px 20px 60px;
    }
    
    /* Schedule Heading Mobile */
    .schedule-heading,
    .section-heading {
        font-size: 72px;
        margin: 30px 0;
        width: 80%;
    }
    
    /* Location Section Mobile */
    .location-section {
        padding: 30px 20px 0px;
    }
    
    /* Timeline Mobile */
    .timeline {
        width: 90%;
        margin-top: 40px;
    }
    
    .timeline-date-header {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .timeline::before {
        left: 20px;
        top: 70px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
        text-align: left !important;
        padding-left: 20px !important;
        padding-right: 0 !important;
    }
    
    .timeline-title {
        font-size: 20px;
    }
    
    .timeline-time {
        font-size: 14px;
    }
    
    .timeline-text {
        font-size: 14px;
    }
    
    /* Location Mobile */
    .location-content {
        flex-direction: column;
        width: 95%;
        gap: 30px;
    }
    
    .location-text {
        font-size: 16px;
    }
    
    .location-name {
        font-size: 24px;
    }
    
    .location-address {
        font-size: 16px;
    }
    
    .location-map iframe {
        aspect-ratio: 1 / 1;
    }
    
    /* Accommodation Mobile */
    .accommodation-section {
        padding: 30px 20px 0px;
    }
    
    .accommodation-content {
        flex-direction: column;
        width: 95%;
        gap: 30px;
    }
    
    .accommodation-image img {
        aspect-ratio: 1 / 1;
    }
    
    .accommodation-text {
        font-size: 16px;
    }
    
    .accommodation-name {
        font-size: 24px;
    }
    
    .accommodation-link {
        font-size: 14px;
        padding: 10px 24px;
    }
    
    /* Accommodation List Mobile */
    .accommodation-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .accommodation-item-name {
        font-size: 18px;
    }
    
    /* Accommodation List Mobile */
    .accommodation-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .accommodation-item-name {
        font-size: 20px;
    }
    
    .accommodation-item-image {
        max-width: 100%;
    }
    
    /* Details Mobile */
    .details-section {
        padding: 30px 20px 0px;
    }
    
    .details-content {
        width: 95%;
        margin-top: 20px;
    }
    
    .detail-item {
        margin-bottom: 40px;
    }
    
    .detail-title {
        font-size: 20px;
    }
    
    .detail-text {
        font-size: 16px;
    }
    
    .taxi-list li {
        font-size: 16px;
    }
    
    /* RSVP Mobile */
    .rsvp-section {
        padding: 30px 20px 0px;
    }
    
    .rsvp-content {
        width: 95%;
        margin-top: 20px;
    }
    
    .rsvp-intro {
        font-size: 16px;
    }
    
    .form-options {
        gap: 15px;
    }
    
    .rsvp-form {
        max-width: 100%;
       
    }
    
    .form-group input {
        font-size: 16px;
    }
    
    /* RSVP Form Page Mobile */
    .rsvp-form-page {
        padding: 60px 20px;
    }
    
    .rsvp-form-container {
        padding: 40px 30px;
        margin: 10px;
        border-radius: 15px;
    }
    
    .rsvp-form-container::before {
        top: -12px;
        width: 16px;
        height: 16px;
    }
    
    .rsvp-form-container::after {
        top: -4px;
        height: 8px;
    }
    
    .rsvp-form-title {
        font-size: 48px;
        margin-bottom: 30px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .welcome-subheading {
        font-size: 24px;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }
    
    .welcome-names {
        margin-bottom: 40px;
    }
    
    .welcome-names .name {
        font-size: 56px;
        letter-spacing: 10px;
    }
    
    .name-connector {
        font-size: 56px;
        margin-top: -40px;
        margin-bottom: -25px;
    }
    
    .welcome-date {
        font-size: 24px;
        letter-spacing: 3px;
        margin-top: 0px;
    }
    
    .welcome-photo-frame {
        margin: 30px 0;
        padding: 12px 12px 50px 12px;
        max-width: 70%;
        transform: rotate(-0.5deg);
    }
    
    .welcome-photo-frame:hover {
        transform: rotate(0deg) scale(1.01);
    }
    
    .welcome-text {
        width: 90%;
        font-size: 15px;
        margin-top: 30px;
        text-transform: none !important;
    }
}

