@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Poppins:wght@300;400;500&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff9fb;
}

.title-font {
    font-family: 'Playfair Display', serif;
}

.login-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.card {
    box-shadow: 0 10px 30px rgba(181, 91, 136, 0.15);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(181, 91, 136, 0.2);
}

.map-container {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.destination-spot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #e56b6f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.destination-spot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #e56b6f;
    animation: pulse 1.5s infinite;
    opacity: 0.6;
    z-index: 9;
    top: 0;
    left: 0;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #e56b6f;
    top: 0;
    bottom: 0;
    left: 35px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid #e56b6f;
    border-radius: 50%;
    left: 30px;
}

.photo-portrait {
    height: 64vw;
    max-height: 320px;
    aspect-ratio: 3/4;
}
