/* গুগল ফন্ট */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #10002b;
    color: #e0e0e0;
    margin: 0;
    padding: 20px 0;
    overflow-x: hidden;
}

#particles-js-memories {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0; left: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.memories-header {
    text-align: center;
    margin-bottom: 50px;
}
.memories-header h1 {
    font-size: 2.5em;
    color: #fff;
    text-shadow: 0 0 15px #e94560, 0 0 25px #e94560;
}
.memories-header .wedding-date {
    font-size: 1.2em;
    color: #c77dff;
}

/* টাইমলাইন ডিজাইন */
.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #e94560, #c77dff, #00d5ff);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}
.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 4px solid #e94560;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item.left::after { right: -14px; }
.timeline-item.right::after { left: -14px; }

/* মেমোরি কার্ড ডিজাইন */
.memory-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #e94560;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s;
}
.memory-card:hover {
    transform: scale(1.05);
}
.memory-card img {
    width: 100%;
    display: block;
}
.card-body {
    padding: 20px;
}
.card-body h2 {
    margin-top: 0;
    color: #e94560;
}
.card-body p {
    color: #e0e0e0;
}

/* মোবাইল রেসপনসিভনেস */
@media screen and (max-width: 768px) {
    .timeline::after { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 10px; }
    .timeline-item.right { left: 0%; }
    .timeline-item.left::after, .timeline-item.right::after { left: 10px; }
}