:root {
    --pink-bg: linear-gradient(135deg, #ffafbd 0%, #ffc3a0 100%);
    --purple-bg: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --glass: rgba(255, 255, 255, 0.2);
    --text-dark: #4a0e0e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: var(--pink-bg);
    color: white;
    scroll-behavior: smooth;
}

/* Floating Animation Background */
.floating-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.heart,
.butterfly {
    position: absolute;
    font-size: 1.5rem;
    animation: float 10s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* Sections */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Hero Section */
.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.hero p {
    font-size: 1.2rem;
    color: #633;
    text-align: center;
}

.btn-main {
    margin-top: 30px;
    margin-left: 220px;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    background: #ff5e62;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-main:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 94, 98, 0.4);
}

/* Gallery Section */
.gallery {
    background: white;
    color: var(--text-dark);
}

.gallery h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 40px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1100px;
}

.photo-card {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    transition: transform 0.5s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}

.photo-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Message Section */
.message-section {
    background: var(--purple-bg);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px;
    border-radius: 30px;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.glass-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight {
    font-weight: 600;
    color: #ffd700;
    margin-top: 20px;
}

/* Entrance Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .glass-card {
        padding: 30px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .btn-main {
        margin-left: 30px;
            padding: 18px 28px;
    }
}