:root {
    --primary-color: #6ea9ff;
    --secondary-color: #417eff;
    --accent-color: #ffffff;
    --text-color: #1f1e1e;
    --bg-gradient: linear-gradient(90deg, #99dae991, #ccb9f091);
    --hover-bg: linear-gradient(135deg, #244c8a, #01194e);
    --btn-bg: linear-gradient(135deg, #99DBE9, #CCB9F0);
    --btn-bg-hover: linear-gradient(135deg, #1a839b, #8662c9);
}

* {
    box-sizing: border-box;
    font-family: poppins;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-gradient);
    color: var(--text-color);
    font-family: "Poppins", sans-serif;
}

.hero {
    width: 100%;
    min-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.logo {
    width: 350px;
    height: auto;
    margin-bottom: 20px;
}

.small-logo {
    width: 200px;
    height: auto;
}

.event_name {
    font-family: "Jomolhari", serif;
    font-size: 4rem;
    color: var(--text-color);
    margin-bottom: 20px;
    display: none;
}

#countdown {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-color);
}

.getTicketBTN {
    background: var(--btn-bg);
    color: var(--text-color);
    padding: 10px 32px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.getTicketBTN:hover {
    background: var(--btn-bg-hover);
    color: #fff;
}

.disabled {
    cursor: default;
}

.ticketClose {
    /* background-color: var(--secondary-color); */
    border: none;
    color: var(--text-color);
    padding: 10px 32px;
    border-radius: 0.3rem;
    /* font-weight: bold; */
    font-size: 1.3rem;
}

.p-description {
    font-size: 1rem;
    margin: 0px 20px 20px 20px;
    color: var(--text-color);
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #d9f5ff, #a4c9ff);
    color: var(--text-color);
    /* font-size: 1.2rem; */
    padding: 10px;
    width: 100%;
    text-align: center;
    padding: 5px;
    margin: 0;
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 100;
    bottom: 0;
}

footer a {
    text-decoration: none;
    font-weight: bold;
    color: #042d69;
}

header {
    margin: 20px;
    text-align: center;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

header img {
    width: 100px;
    margin: 20px;
}

.title {
    font-family: jomolhari;
    font-size: 5rem;
    display: none;
}

form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    color: var(--accent-color);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    max-width: 400px;
    width: 90%;
    text-align: left;
    margin-bottom: 40px;
}

label {
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
}

input,
textarea,
input[type="file"],
select {
    width: 100%;
    padding: 5px 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background: #f5f9ff;
    color: var(--text-color);
}

input[type="submit"] {
    background: var(--btn-bg);
    color: var(--text-color);
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background: var(--btn-bg-hover);
    color: #fff;
}

.headerLink {
    color: var(--primary-color);
    text-decoration: none;
}


/* Mobile Responsieve */

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    .logo {
        width: 200px;
    }
    .event_name {
        font-size: 3rem;
    }
    #countdown {
        font-size: 2rem;
    }
    .getTicketBTN {
        font-size: 1.5rem;
    }
    .ticketClose {
        font-size: 1rem;
    }
    header img {
        width: 100px;
        margin: 20px;
    }
    .title {
        font-size: 3rem;
    }
    form {
        width: 100%;
    }
    label {
        font-size: 1rem;
    }
    input,
    input[type="file"] {
        width: 100%;
        font-size: 1rem;
        padding: 5px;
    }
    input[type="submit"] {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    header img {
        width: 50px;
        margin: 10px;
    }
    .title {
        font-size: 2.5rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1rem;
    }
    .getTicketBTN {
        font-size: 1.3rem;
        padding: 5px 20px;
    }
    footer {
        flex-direction: column;
    }
}