/* ===========================
   Global Styling
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans Devanagari", "Mukta", "Nirmala UI", sans-serif;
}

body {
    background: #f4f4f4;
    margin: 0;
    min-height: 100vh;
    padding-bottom: 55px;
    /* Space for fixed footer */
}

.logo {
    display: flex;
    flex-direction: row;
    justify-content: center;

}

/* ===========================
   Navigation Bar
=========================== */

nav {
    width: 100%;
    height: 45px;
    background: #030d30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);

}

/* ===========================
   Dropdown
=========================== */

.dropdown {
    position: relative;
    transition: 1s;
}

/* Button */

.dropbtn {
    background: #b3000000;
    color: #fff;
    border: none;
    padding: 6px 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.dropbtn:hover {
    background: #8a8a8a00;


    transform: scale(1.1);
}

/* Dropdown Menu */

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    overflow: hidden;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;
}

/* Links */

.dropdown-content a {
    display: block;

    padding: 14px 18px;

    color: #333;

    text-decoration: none;

    font-size: 16px;

    transition: .3s;

    border-bottom: 1px solid #ececec;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #b30000;
    color: white;
}

/* Show Dropdown */

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===========================
   Date (Extreme Right)
=========================== */
.coming-soon {
    text-align: center;
    /* Center horizontally */
    font-size: 45px;
    /* Large font */
    font-weight: bold;
    /* Bold text */
    color: #8B0000;
    /* Dark red */
    margin-top: 60px;
    /* Space from top */
    font-family: "Tiro Devanagari Marathi", serif;
}

.tagline {
    text-align: center;
    /* Center horizontally */
    font-size: 65px;
    /* Large font */
    font-weight: bolder;
    /* Bold text */
    color: #ff3c00;
    /* Dark red */
    margin-top: 60px;
    /* Space from top */
    font-family: "Tiro Devanagari Marathi", serif;
}

.date {
    margin-left: auto;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ===========================
   Footer
=========================== */

footer {
    position:fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #a49999;
    color: #fff;
    text-align: center;
    padding: 12px 10px;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, .25);
}

@media  (max-width: 500px)  {

    .logo img {
        width: 220px;
        height: auto;
    }

    .tagline {
        font-size: 55px;
        margin-top: 30px;
    }

    .coming-soon {
        font-size: 40px;
        margin-top: 25px;
    }

    .dropbtn {
        font-size: 14px;
        
    }

    .date {
        font-size: 14px;
    }

    footer {
        font-size: 12px;
        padding: 5px 2px;
    }

    body {
        padding-bottom: 50px;
    }
}