@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

.title-font {
    font-family: 'Playfair Display', serif;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.countdown-box {
    background: rgb(61 59 59 / 80%);
    backdrop-filter: blur(5px);
}

.section-divider {
    width: 100px;
    height: 3px;
    background: #d4a373;
    margin: 20px auto;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
    border-bottom: 1px solid #d4a373;
    transition: all 0.3s ease;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
    border-bottom: 2px solid #d4a373;
}

.animate-pulse-slow {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.transport-icon {
    background-color: #d4a373;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.transport-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #f8f4f0;
    padding: 15px;
    border-radius: 8px;
}

.custom-icon {
    width: 48px;
    height: 48px;
    display: inline-block;
}