@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateZ(0);
}

.shimmer-text {
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200%;
    }
    100% {
        background-position: 200%;
    }
}

.particle-container {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.timeline {
    position: relative;
    padding: 0 0 0 10px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #fca311;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 10px 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: #fca311;
    border: 4px solid #fff;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -16px;
}

.polaroid-container, .cinematic-container, .carousel-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.polaroid-container:hover, .cinematic-container:hover {
    transform: scale(1.05);
}

.polaroid-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 10px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.polaroid-caption {
    display: block;
    text-align: center;
    padding: 8px 0;
    color: #333;
    font-size: 1rem;
    background: white;
}

.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.cinematic-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}
