@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5e6d3;
    color: #5b4232;
    text-align: center;
    cursor: url('images/bow.png') 16 16, auto;
    overflow-x: hidden;
}

/* Premium fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Subtle parallax container */
.landing{
    padding-top: 80px;
    position: relative;
}

/* Decorative background elements */
.landing::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 153, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.landing::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

h1{
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: #3f2017;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.subtitle{
    font-size: 1.2rem;
    color: #9a7e6f;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.bouquet-images{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.bouquet-images img{
    width: 150px;
    transition: none;
    cursor: default;
    filter: brightness(1) contrast(1);
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    animation: fadeInUp 1.2s ease-out both;
}

.bouquet-images img:nth-child(1) { animation-delay: 0.4s; }
.bouquet-images img:nth-child(2) { animation-delay: 0.5s; }
.bouquet-images img:nth-child(3) { animation-delay: 0.6s; }
.bouquet-images img:nth-child(4) { animation-delay: 0.7s; }

.bouquet-images img:hover{
    transform: none;
    filter: brightness(1) contrast(1);
    box-shadow: none;
}

.start-btn{
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: #5b4232;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 40px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: fadeInUp 1.4s ease-out 0.8s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}





.start-btn:hover{
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Music Control Button - Top Right */
.music-control {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    animation: fadeIn 1s ease-out 1s both;
}

.music-btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 600;
    color: #5b4232;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.music-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.music-btn.playing {
    background: rgba(232, 153, 129, 0.4);
    border-color: rgba(232, 153, 129, 0.6);
    color: #3f2017;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(232, 153, 129, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(232, 153, 129, 0.4);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .music-control {
        top: 20px;
        right: 20px;
    }

    .music-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .landing::before,
    .landing::after {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .music-control {
        top: 15px;
        right: 15px;
    }

    .music-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}