* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* MAIN CONTAINER */
#screen{
    margin: 20px auto;
    max-width: 1200px;
    border: 1px solid black;
    background-color: rgb(235, 158, 171);
    border-radius: 30px;
    padding: 15px;
}

/* NAVBAR */
#navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* LOGO */
#logoimage img{
    height: 120px;
    width: auto;
    border-radius: 20px;
}

/* TAGLINE IMAGE */
#today img{
    width: 100%;
    max-width: 250px;
}

/* NAVBAR LINKS */
#navbar{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;

    padding: 10px 20px;
    border: 2px solid #ff6b81;
    border-radius: 40px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#navbar a{
    text-decoration: none;
    color: rgb(236, 43, 75);
    font-weight: bold;
    transition: 0.3s;
}

#navbar a:hover{
    color: rgb(132, 8, 8);
}

/* ADMISSION IMAGE */
#admission{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#admission img{
    width: 95%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
}

/* TAGLINE TEXT */
#tag{
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
    font-family: "Dancing Script", cursive;
}

/* DESCRIPTION */
#desc{
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;

    text-align: center;

    border-radius: 20px;
    background-color: antiquewhite;

    letter-spacing: 1px;
    font-family: "Lobster Two", sans-serif;
    font-style: italic;
}

/* KEY POINTS */
#keypoints{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px auto;
    align-items: center;
}

/* COMMON POINT STYLE */
.point{
    width: 90%;
    max-width: 600px;
    border-radius: 25px;
    padding: 10px;
    text-align: center;
    color: black;
}

/* COLORS */
.one{ background-color: chartreuse; }
.two{ background-color: skyblue; }
.three{ background-color: orange; }
.four{ background-color: yellow; }
.five{ background-color: rgb(211, 22, 211); }

/* LAST SECTION */
#last{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
}

/* JOIN IMAGE */
#join img{
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 30px;
}

/* FOOTER */
.credit{
    width:100%;
    padding:20px;
    border-radius:20px;
    background-color: lightgrey;
    text-align: center;
    margin-top: 20px;
}

/* SNOW EFFECT */
.snow-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.snowflake{
    position: absolute;
    top: -10px;
    color: white;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    0%{ transform: translateY(0); }
    100%{ transform: translateY(100vh); }
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px){

    #navigation{
        flex-direction: column;
        align-items: center;
    }

    #logoimage img{
        height: 80px;
    }

    #today img{
        max-width: 180px;
    }

    #tag{
        font-size: 18px;
    }

    #desc{
        font-size: 14px;
    }

    #last{
        flex-direction: column;
    }

    #join img{
        max-width: 250px;
    }
}