*{
    font-family: 'Fredoka', sans-serif;
}
body{
    background-color: #fbddde;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
    background-image: url('images/wallpaper.png');
    background-size: contain;
}
.back-ground-img{
    max-width: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: min(10vw,30px);
    box-sizing: border-box;
}
.container{
    box-sizing: border-box;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    width: 100%;
    gap: 1em;
    background-color: white;
    position: relative;
    z-index: 2;

}
.container * {
    z-index: 11;
}
.logo-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    width: 100%;
    position: relative;
}
.logo {
    width: 70%;
    aspect-ratio: 1;
}


.logo-container .sticker{
    width: 30%;
    aspect-ratio: 1;
    max-width: 100px;
    position: absolute;
}
.logo-container .sticker:nth-child(2) {
    bottom: -12%;
    left: 0%;
    transform: scaleX(-1); 
}
.logo-container .sticker:nth-child(3) {
    bottom: -10%;
    right: 0%;
    animation: glow 2s infinite ease;

}
.decor{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100% ;
}
.decor h1{
    color: #d98c8c;
    font-weight: bold;
    font-size: 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    white-space: nowrap;
    max-width: 90%;
    margin-top: 10px;
}
.decor .flowers{
    width: 100%;
}
.decor .social-links{
    display: flex;
    gap: 1em;
}
.decor .social-links a:hover{
    transition: all 0.3s ease;
    transform: translateY(-0px) scale(1.2);
}
.decor .social-links a svg{
    width: 30px;
    height: 30px;
    max-height: 30px;
    fill: #ffa4b3;
    transition: transform 0.3s, fill 0.3s;
    position: relative;
}
.decor .social-links a:nth-child(4) svg{
   max-height: 35px;
   height: 35px;
    width: 35px;
    transform: translateY(-2px);
}
.decor .social-links a:nth-child(odd) svg {
    fill: #ffa4b3; 
}

.decor .social-links a:nth-child(even) svg {
    fill: #ff6c69; 
}

.urls-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    width: 100%;
    padding-bottom: 15vh;
}
.url-link{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 2em;
    font-weight: bold;
    background-color: #ff8ea0;
    border-radius: 1em;
    position: relative;
    max-width: 400px;
    min-height: 80px;
    max-height: 80px;
    gap: 10px;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.url-link:hover{
    transform: translateY(-5px);
    box-shadow: 1px 5px 5px 1px #ffadad;
}

.url-link::after {
    --border-inside: 10px;
    content: '';
    position: absolute;
    top:var(--border-inside);  
    left:var(--border-inside);
    right:var(--border-inside);
    bottom:var(--border-inside);
    border-radius: calc(1em - var(--border-inside));
    pointer-events: none;
    box-sizing: border-box;
    background-color: transparent;
    border: 2px dashed #ffffff;
    z-index: 2;
}
.url-link img {
    max-height: 70px;
    height:75% ;
    aspect-ratio: 1 / 1;
    object-fit: contain; 
    z-index: 5;
    position: absolute;
    top: 0%;

}   
.url-link img:nth-child(odd) {
    left: 15%;
    animation: glow-odd 2s infinite ease;
}
.url-link img:nth-child(even) {
    right: 15%;
    animation: glow-even 2s infinite ease;
}
.url-link:not(:nth-child(1)) img:nth-child(odd) {
    left: -10%;
    top: 15%;
}
.url-link:not(:nth-child(1)) img:nth-child(even) {
    right: -10%;
    top: 15%;
}

@keyframes glow {
    0%{
        transform: scale(1) ;
    }
    50%{
        transform: scale(1.1) ;
    }
    100%{
        transform: scale(1) ;
    }
}

@keyframes glow-odd {
    0%{
        transform: scale(1) rotate(-10deg) translateY(15%);
    }
    50%{
        transform: scale(1.25) rotate(-10deg) translateY(15%);
    }
    100%{
        transform: scale(1) rotate(-10deg) translateY(15%);
    }
}
@keyframes glow-even {
    0%{
        transform: scale(1) rotate(10deg) scaleX(-1) translateY(15%);
    }
    50%{
        transform: scale(1.25) rotate(10deg) scaleX(-1) translateY(15%);
    }
    100%{
        transform: scale(1) rotate(10deg) scaleX(-1) translateY(15%);
    }
}

.kitty {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 18vh; 
    min-height: 100px;
    max-height: 200px;
    aspect-ratio: 1;
    pointer-events: none;
    animation: kitty-animation 3s ease-in-out infinite;
}

@keyframes kitty-animation {
    0%, 100% {
         transform: translateX(-50%) translateY(0) rotate(0deg); 
        }
    33% {
         transform: translateX(-50%) translateY(-10px) rotate(15deg); 
        }
    66% {
         transform: translateX(-60%) translateY(-10px) rotate(-15deg); 
        }
    
    
}



/*Cloudy design*/
/* Cloud circles */
        .cloud-circle {
            position: absolute;
            border-radius: 50%;
            background: white;
            opacity: 1;
            width: 60px;
            height: 60px;
            z-index: 10;
        }
        
        /* Top cloud circles */
        .cloud-circle.top {
            top: -10px;
            animation: float 6s ease-in-out infinite;
        }
        
        /* Bottom cloud circles */
        .cloud-circle.bottom {
            bottom: -10px;
            animation: float 7s ease-in-out infinite;
        }
        
        /* Left cloud circles */
        .cloud-circle.left {
            left: -10px;
            animation: float 8s ease-in-out infinite;
        }
        
        /* Right cloud circles */
        .cloud-circle.right {
            right: -10px;
            animation: float 9s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            50% {
                transform: translateY(-5px) translateX(3px);
            }
        }
        
        /* Corner circles (larger) */
        .cloud-circle.corner {
            width: 50px;
            height: 50px;
        }

/* Falling sakura styles */
.sakura-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
    z-index: 11;
}

.sakura {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #ffc6d3;
    border-radius: 50% 0 50% 0;
    opacity: 0.8;
    box-shadow: 0 0 5px rgba(255, 198, 211, 0.5);
    animation: fall linear infinite;
    z-index: 5 !important;
}

@keyframes fall {
    to {
        transform: translateX(10vw) rotate(360deg);
        top: 110%;
    }
}

/* Falling sakura styles */
.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hearts {
    position: absolute;
    animation: flying linear infinite;
    background-color: transparent;
    color: #ff6c69;
    top: -10%;
}

@keyframes flying {
    from {
        top: 100%;
    }
    to {
        top: -10%; 
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .container {
        gap: 1em;
        padding: min(5vw, 30px);
    }
    .url-link {
        min-height: 60px;
        max-height: 70px;
    }
    .urls-container{
        padding-bottom: 12vh;        
    }
}
@media (max-width: 480px) {
    .container {
        gap: 0.5em;
        
    }
    .urls-container{
        padding-bottom: 15vh;
    }
    .url-link {
        font-size: 1.2rem;
        min-height: 50px;
        max-height: 60px;
        border-radius: 0.8em;
    }
    .url-link::after {
        --border-inside: 5px;
        border-radius: calc(0.8em - var(--border-inside));
    }
    .kitty {
        height: 15vh;
    }
}
@media (max-width: 480px) {
    .decor h1 {
        font-size: 2rem;
    }
}
@media (max-width: 380px) {
    .decor h1 {
        font-size: 1.8rem;
    }
}
@media (max-width: 340px) {
    .decor h1 {
        font-size: 1.5rem;
    }
}
@media (max-width: 277px) {
    .decor h1 {
        font-size: 1.3rem;
    }
}