/* @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap'); */
/* @import 'node_modules/bootstrap-icons/font/bootstrap-icons.css'; */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


/***
====================================================================
    Color
====================================================================
 ***/

:root {
    --primary-color: #FFBE33;
    --secondary-color: #ccad6e;
    --heading-color: #0384AC;
}

/***
====================================================================
    Reset
====================================================================
 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}

/***
====================================================================
    Global Settings
====================================================================
 ***/

body {
    font-family: "Rubik", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}


header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* background: linear-gradient(135deg, rgb(17, 17, 121), pink); */
}

.navbar {
    background-color: #000000;
}

.navbar .nav-item a {
    color: white;
    font-size: 25px;
}

.navbar .navbar-toggler-icon {
    background-color: white;
    border-radius: 2px;
}

.announcement-bar {
    background-color: white;
    height: 50px;
    border-top: 2px solid orange;
    border-bottom: 2px solid orange;
    overflow: hidden;
}

.announcement-bar marquee {
    line-height: 50px;
    font-size: 20px;
    /* Adjust as needed */
}

footer {
    background: linear-gradient(135deg, rgb(17, 17, 121), pink);
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffc107;
    text-decoration: underline;
}

.banner-section img {
    height: 600px;
}

@media (max-width:767px) {
    .banner-section img {
        height: 200px;
    }
}

.lottery-card {
    margin: 30px 0 30px 0;
}

.lottery-card img {
    height: 500px;
    width: 350px;
}

@media (max-width:767px) {
    .lottery-card img {
        height: 180px;
        width: 120px;
    }
}

/* Tickets */
.ticket {
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 30px auto;
    max-width: 350px;
}

.ticket:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25); */
}

.ticket-top {
    background: linear-gradient(135deg, #007bff, #00b4d8);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.ticket-top h5 {
    font-weight: bold;
    font-size: 1.2rem;
}

.ticket-top h1 {
    font-size: 3rem;
    margin: 10px 0 5px;
}

.ticket-top h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

.ticket-bottom {
    background-color: #f94144;
    color: white;
    padding: 25px 20px;
    text-align: center;
    border-top: 4px dotted white;
}

.btn-buy {
    background: white;
    color: #f94144;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    margin-bottom: 15px;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-buy:hover {
    background-color: #ffd6d6;
    color: #900c3f;
}

.ticket-bottom small {
    display: block;
    font-size: 0.9rem;
    margin-top: 2px;
}

@media (max-width:767px) {
    .ticket {
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin: 30px auto;
        max-width: 170px;
    }

    .ticket:hover {
        transform: translateY(-5px);
        /* box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25); */
    }

    .ticket-top {
        background: linear-gradient(135deg, #007bff, #00b4d8);
        color: white;
        padding: 10px 10px;
        text-align: center;
    }

    .ticket-top h5 {
        font-weight: bold;
        font-size: 16px;
    }

    .ticket-top h1 {
        font-size: 24px;
        margin: 10px 0 5px;
    }

    .ticket-top h2 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .ticket-bottom {
        background-color: #f94144;
        color: white;
        padding: 25px 20px;
        text-align: center;
        border-top: 4px dotted white;
    }

    .btn-buy {
        background: white;
        color: #f94144;
        font-weight: bold;
        border: none;
        border-radius: 30px;
        padding: 10px 30px;
        margin-bottom: 15px;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .btn-buy:hover {
        background-color: #ffd6d6;
        color: #900c3f;
    }

    .ticket-bottom small {
        display: block;
        font-size: 0.9rem;
        margin-top: 2px;
    }
}
