body {
    margin: 0;
    min-height: 100vh;   /* use min-height instead of fixed height */
    overflow-x: hidden;  /* allow vertical scroll, block horizontal */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    background: #0f2027;
}

/* Animated blobs */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,126,95,0.6), transparent);
    border-radius: 50%;
    animation: float 12s infinite ease-in-out;
}

.blob:nth-child(2) {
    background: radial-gradient(circle, rgba(0,198,255,0.5), transparent);
    left: 60%;
    animation-delay: 3s;
}

.blob:nth-child(3) {
    background: radial-gradient(circle, rgba(131,58,180,0.5), transparent);
    top: 60%;
    animation-delay: 6s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, -100px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Content */
.title {
    color: #fff;
    margin-bottom: 25px;
}
.journey-btn {
    font-size: 1.2rem;
    padding: 14px 35px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3), 0 4px 10px rgba(255, 105, 180, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* .journey-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, #ff6a88, #ff99ac, #ffc3a0, #ff6a88);
    animation: rotate 6s linear infinite;
    z-index: 0;
    opacity: 0.4;
} */

.journey-btn span {
    position: relative;
    z-index: 1;
}

.journey-btn:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.6), 0 6px 15px rgba(255, 105, 180, 0.4);
    border-color: #ff6a88;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile */
@media (max-width: 576px) {
    .journey-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}
/* Romantic Title */
.romantic-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6a88, #ff99ac, #ffc3a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: relative;
    animation: glow 2.5s ease-in-out infinite alternate;
}

/* Glow animation */
@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 105, 135, 0.5),
                     0 0 20px rgba(255, 105, 135, 0.4);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 105, 180, 0.9),
                     0 0 30px rgba(255, 105, 180, 0.7);
    }
}
 
.romantic-title::after {
    content: "💖 💕 💗";
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
    animation: floatText 3s ease-in-out infinite;
}
 
@keyframes floatText {
    0% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-10px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.7; }
}
 
@media (max-width: 576px) {
    .romantic-title {
        font-size: 2rem;
    }
}

.heart {
    position: fixed;
    bottom: -10px;
    color: pink;
    animation: floatUp 6s linear infinite;
    font-size: 20px;
}

@keyframes floatUp {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100vh); opacity: 0; }
}
.fade-text {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
}

.fade-text.show {
    opacity: 1;
    transform: translateY(0);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.gallery img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    transition: transform 0.5s, box-shadow 0.5s;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.6);
}

p.fade-text {
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.6;
}

.bg-animation { /* same blobs as main page */ }
.blob { position: absolute; width: 300px; height: 300px; border-radius: 50%; animation: float 12s infinite ease-in-out; }
.blob:nth-child(2) { left: 60%; animation-delay: 3s; }
.blob:nth-child(3) { top: 60%; animation-delay: 6s; }

@keyframes float { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(100px, -100px) scale(1.2); } 100% { transform: translate(0,0) scale(1); } }

.romantic-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6a88, #ff99ac, #ffc3a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-top: 20px;
    animation: glow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255,105,135,0.5), 0 0 20px rgba(255,105,135,0.4); }
    to { text-shadow: 0 0 20px rgba(255,105,180,0.9), 0 0 30px rgba(255,105,180,0.7); }
}

.slideshow {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 40px auto;
}

.slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255,105,180,0.3);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow img.active {
    opacity: 1;
}

p.message {
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.6;
}

/* Back button styling */
.journey-btn {
    font-size: 1.2rem;
    padding: 14px 35px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 25px rgba(255,105,180,0.3), 0 4px 10px rgba(255,105,180,0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.journey-btn span {
    position: relative;
    z-index: 1;
}

.journey-btn:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,105,180,0.6), 0 6px 15px rgba(255,105,180,0.4);
    border-color: #ff6a88;
} 