/* Make RSVP forms more compact */
.rsvp .container,
.modal .container {
    max-width: 600px;
}

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

.form-control {
    padding: 8px 10px;
}

textarea.form-control {
    height: auto;
    min-height: 60px;
}

.radio-group, .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.radio-option, .checkbox-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group label {
    margin-bottom: 4px;
    display: block;
}

.form-text {
    font-size: 0.85em;
    color: #666;
    margin-top: 2px;
}

/* Add loading indicator styles for the RSVP modal */
.loading-indicator {
    text-align: center;
    padding: 20px;
    color: #666;
}

.loading-indicator p {
    margin: 0;
    font-style: italic;
}

/* Improve modal scrolling */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
    padding: 15px 25px;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

/* Ensure modal content scroll works */
body.modal-open {
    overflow: hidden;
}

/* Compact modal header */
.modal h2 {
    margin-bottom: 5px;
}

.modal .divider {
    margin: 10px 0;
}

.modal p {
    margin-bottom: 15px;
}

/* Make the modal itself taller */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make the modal form more compact */
#rsvp-modal .form-group {
    margin-bottom: 10px;
}

#rsvp-modal label {
    margin-bottom: 5px;
    display: block;
}

#rsvp-modal .radio-group,
#rsvp-modal .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
/* Ensure shuttle details section is styled properly in the modal */
#rsvp-modal #shuttle-details {
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border-left: 3px solid #91ae96;
    margin-bottom: 15px;
}

/* Make event checkboxes display better in modal */
#rsvp-modal .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Make form submit button stand out */
#rsvp-modal .form-submit {
    margin-top: 15px;
    text-align: center;
}

/* Global Styles */
:root {
    --primary-color: #3e554a; /* Deep Juniper - rich green */
    --primary-light: #91ae96; /* Soft Sage - lighter green */
    --secondary-color: #f0f4e0; /* Cream Mist - soft cream */
    --secondary-light: #f6e97d; /* Golden Straw - warm yellow */
    --accent-color: #f7b89c; /* Peach Rose - vibrant peach */
    --dark-color: #333333;
    --light-color: #ffffff;
    --success-color: #48bb78;
    --danger-color: #e53e3e;
    --font-heading: 'Cormorant Garamond', serif; /* Elegant serif font for headings */
    --font-body: 'Lato', sans-serif; /* Clean sans-serif for body text */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--dark-color);
    background-color: var(--light-color);
    letter-spacing: 0.3px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 10;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 3px;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Venue links - match surrounding text */
.venue-link {
    color: var(--dark-color) !important;
}

/* For venue links in page headers with green background */
.page-header .venue-link {
    color: var(--secondary-color) !important;
}

.venue-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.divider {
    height: 2px;
    width: 80px;
    background: linear-gradient(to right, var(--primary-light), var(--accent-color));
    margin: 0 auto 2.5rem;
    position: relative;
}

.divider:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 400;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    background-color: transparent;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--box-shadow);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

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

.btn-primary:hover {
    color: white;
}

.btn-primary:before {
    background-color: var(--accent-color);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

section {
    padding: 5rem 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 3px;
    position: relative;
}

.logo:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
    bottom: 8px;
    right: -10px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    padding: 0.5rem 0;
    margin: 0 1rem;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px; /* Thinner lines */
    background-color: var(--dark-color);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh; /* Fallback for browsers that do not support custom properties */
    height: calc(var(--vh, 1vh) * 100);
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    overflow: hidden;
}
.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.image-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(62, 85, 74, 0.8), rgba(62, 85, 74, 0.6));
    z-index: 1;
    pointer-events: none;
}

.image-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.image-control-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.image-control-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

#image-counter {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero .date, .hero .location {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.hero .btn {
    margin-top: 3rem;
    border: 2px solid var(--accent-color);
    color: white;
    background-color: var(--accent-color);
}

.hero .btn:hover {
    color: white;
}

.hero .btn:before {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Welcome Section */
.welcome {
    text-align: center;
    background-color: white;
    padding: 6rem 0;
    position: relative;
}

.welcome:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://betterplaceholder.com/1600x900?text=Background+Pattern');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.welcome .container {
    position: relative;
    z-index: 1;
}

.welcome-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4rem; /* Increased gap */
    margin-bottom: 2rem;
}

.welcome-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.welcome-image img:hover {
    transform: scale(1.02);
}

.welcome-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.welcome-text p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--dark-color);
}

.welcome-text p:first-of-type:first-letter {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    float: left;
    padding-right: 10px;
    line-height: 0.8;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .welcome-content {
        flex-direction: column;
    }
    
    .welcome-text {
        text-align: center;
    }
}

/* Countdown */
.countdown {
    margin-top: 4rem;
    padding: 3rem 0;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.countdown h3 {
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 3rem; /* Increased gap */
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

/* Quick Links */
.quick-links {
    background-color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.quick-links:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.link-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.link-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-light), var(--accent-color));
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.link-card:hover h3 {
    color: var(--accent-color);
}

.link-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.link-card:hover .icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.link-card h3 {
    margin-bottom: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.link-card p {
    color: var(--dark-color);
    font-weight: 300;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-light), var(--accent-color));
}

footer p {
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

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

    .hero h2 {
        font-size: 1.2rem;
    }

    #countdown-timer {
        gap: 1rem;
    }

    .countdown-item span:first-child {
        font-size: 2rem;
    }
}

/* Page-specific styles */

/* Itinerary Page */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light), var(--accent-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.timeline-content .time {
    font-weight: 400;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.event-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border: 3px solid white;
    border-radius: 50%;
    top: 20px;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(odd)::after {
    right: -8px;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 25px;
    }
}

/* Travel & Accommodations Pages */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-image:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.card-content {
    padding: 1.8rem;
}

.card-content h3 {
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.card-content p {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.7;
}

.card-content .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* RSVP Page */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: white;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(62, 85, 74, 0.1);
}

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

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

.radio-option, .checkbox-option {
    display: flex;
    align-items: center;
}

.radio-option input, .checkbox-option input {
    margin-right: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 2.5rem;
}

.form-text {
    font-size: 0.85rem;
    color: var(--dark-color);
    margin-top: 0.5rem;
    font-style: italic;
}

/* FAQ Page */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    margin-top: 1rem;
    display: none;
    font-weight: 300;
    line-height: 1.8;
}

.faq-answer.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.success-message p {
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.5s;
}

@keyframes modalFadeIn {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--dark-color);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal h2 {
    text-align: center;
    margin-top: 10px;
}

.modal .divider {
    margin-bottom: 20px;
}

.modal p {
    text-align: center;
    margin-bottom: 20px;
}

.modal-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--dark-color);
    text-align: center;
}

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

.checkbox-option {
    display: flex;
    align-items: center;
}

.checkbox-option input {
    margin-right: 10px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
}

/* Transportation Note */
.transportation-note {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
    box-shadow: var(--box-shadow);
}

.transportation-note h2 {
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    text-align: center;
    padding: 10rem 0 5rem;
    position: relative;
    color: white;
}

.page-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='white' fill-opacity='1' d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header .divider {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

.page-header p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Travel Options */
.travel-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.travel-option {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.travel-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.travel-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.travel-option {
    background-color: white;
    padding: 2rem;
    border-radius: 0; /* Removed border radius */
    box-shadow: none; /* Removed shadow */
    border: 1px solid var(--accent-color); /* Added subtle border */
}

.travel-option h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Transportation Note */
.transportation-note {
    background-color: var(--secondary-color);
    text-align: center;
}