:root {
    --primary-color: #f8e6e4;
    --secondary-color: #d4b5b0;
    --accent-color: #786d67;
    --text-color: #2c231f;
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-color);
    line-height: 1.6;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.names {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #D4AF37; /* Orange color for better visibility */
}

.date {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #D4AF37; /* Orange color for better visibility */
}

.section {
    padding: 5rem 0;
}

.ceremony-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem 0;
    transition: transform 0.3s ease;
}

.ceremony-card:hover {
    transform: translateY(-5px);
}

.countdown {
    font-size: 1.5rem;
    margin: 2rem 0;
}

.about-us {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.unsplash.com/photo-1658851866325-49fb8b7fbcb2');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
}

.mallorca-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
}

.rsvp-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 0.8rem 2rem;
}

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

.event-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.event-details {
    padding: 1rem;
}

.event-date {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.event-time {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.event-location {
    line-height: 1.6;
}

.contact-card {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.hotel-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hotel-card p.small {
    font-size: 0.9rem;
    margin-bottom: 0;
}

a.text-decoration-none:hover {
    text-decoration: none !important;
}

a .hotel-card {
    color: inherit;
}

/* Shuttle Service Styles */
.shuttle-schedule {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.shuttle-stop {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.shuttle-stop:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.time-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    min-width: 70px;
    text-align: center;
}

.shuttle-stop h5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shuttle-option {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
}

.shuttle-option h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.shuttle-option h4 i {
    margin-right: 0.5rem;
}

.shuttle-option ul {
    padding-left: 1.5rem;
}

.shuttle-option ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .names {
        font-size: 2.5rem;
    }
    .date {
        font-size: 1.5rem;
    }
    .event-card {
        padding: 1rem;
    }
    .event-details {
        text-align: center;
        padding: 1rem 0;
    }
}