* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f5 50%, #fff0f5 100%);
    overflow-x: hidden;
}

.playfair {
    font-family: "Playfair Display", serif;
}

.hero-bg {
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f5 50%, #fff0f5 100%);
    position: relative;
    overflow: hidden;
}

.floating {
    position: absolute;
    z-index: 1;
}

.flower {
    width: 30px;
    height: 30px;
    position: absolute;
    opacity: 0.8;
}

.heart {
    width: 25px;
    height: 25px;
    position: absolute;
    opacity: 0.7;
}

.btn-love {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 154, 158, 0.4);
}

.btn-love:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 154, 158, 0.6);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.message-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.hidden-message {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.show-message {
    opacity: 1;
    transform: scale(1);
}

.flower-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b95 0%, #feca57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef);
    border-radius: 2px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 154, 158, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}
