/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    pointer-events:all;
}

body {
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    overflow: hidden;
}

/* Landing Page Container */
.landing-container {
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index:10;
}

/* Header */
header {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    align-items: center;
}

header h1 {
    font-size: 30px;
}

nav .btn {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    margin-left: 15px;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.login {
    background: #ff6f91;
}

.register {
    background: #b47cff;
}

.btn:hover {
    opacity: 0.8;
}

/* Content */
.content {
    margin-top: 80px;
}

.content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    pointer-events:all;
}

.content p {
    font-size: 18px;
    margin-bottom: 20px;
    pointer-events:all;
}

/* Romance GIF */
.gif-container img {
    width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Call-to-Action */
.explore {
    display: inline-block;
    background: #ff4081;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    margin-top: 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
    pointer-events:all;
}

.explore:hover {
    background: #e91e63;
}

/* Floating Hearts Animation */
.hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.heart {
    position: absolute;
    color: #ff4081;
    font-size: 20px;
    animation: float 4s linear infinite;
    opacity: 0.7;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-100px) scale(1.2); opacity: 0.5; }
    100% { transform: translateY(-200px) scale(1); opacity: 0; }
}