*{
    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;   /* 🔥 important */
    border:1px solid black;
    background-color: rgb(0, 166, 255);
    border-radius: 30px;
    padding: 20px;
}

/* NAVIGATION */
#navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;   /* responsive */
    gap: 15px;
}

/* LOGO */
#logoimage img{
    height: 100px;   /* reduced */
    width: auto;
    border-radius:20px;
}

/* TAGLINE IMAGE */
#today img{
    max-width: 250px;
    width: 100%;
}

/* NAVBAR */
#navbar{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;

    padding: 10px 20px;
    border: 2px solid orange;
    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-size: 18px;
    font-weight: bold;
}

#navbar a:hover{
    color:rgb(132, 8, 8);
}

/* CLOUD BOX */
.cloud{
    max-width: 500px;
    width: 90%;
    padding: 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-align: center;
    margin: 20px auto;
}

/* CONTACT IMAGE */
#contact-details img{
    display: block;
    margin: 20px auto;
    max-width: 100%;
}

/* CONTACT BUTTONS */
.contact-box{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
    flex-wrap: wrap;
}

.contact-item{
    text-decoration: none;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

/* COLORS */
.contact-item:nth-child(1){ background: #007bff; }
.contact-item:nth-child(2){ background: #25D366; }
.contact-item:nth-child(3){ background: #ff4d6d; }

.contact-item:hover{
    transform: scale(1.1);
}

/* ADDRESS */
.address-box{
    max-width: 320px;
    width: 90%;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FOOTER */
.credit{
    width:100%;
    padding:20px;
    border-radius:30px;
    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) translateX(0); }
    100%{ transform: translateY(100vh) translateX(50px); }
}

@media (max-width: 768px){

    #navigation{
        flex-direction: column;
        align-items: center;
    }

    #navbar{
        justify-content: center;
    }

    #logoimage img{
        height: 80px;
    }

    #today img{
        max-width: 200px;
    }

    .contact-box{
        flex-direction: column;
        align-items: center;
    }
}