@import url(/css/nav.css);
@import url(/css/index.css);
@import url(/css/responsive.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --text: #FFFFFF;
    --text-2: #c7c7c7;
    --hr: #fafafa1c;
    --text-secondary: #000000;
    --background: #091016;
    --primary: #007EC7;
    --secondary: #43657A;
    --accent: #2478A8;
    --badge-color-1: #e8641b;
    --badge-color-2: #e81b1b;
    --background-color: rgba(0, 0, 0, 0.1);
    --background-color-inner: rgba(255, 255, 255, 0.05);
    --color-yellow: rgb(255, 213, 14);
    --color-gold: #ebb665;
    --cressman-orange: #f5b028;
    --facebook: #1877f3;
    --messages: #5bf676;
    --mail: #1d78f4;
    --benefit-bg: #e4f7e5;
    --benefit: #2a863b;
}

body {
    background-color: var(--background);
}

h1 {font-size: 52px; font-weight: 800;}
h2 {font-size: 42px; font-weight: 700;}
h3 {font-size: 38px; font-weight: 600;}
h4 {font-size: 34px; font-weight: 600;}
h5 {font-size: 28px; font-weight: 600;}
h6 {font-size: 22px; font-weight: 600;}
.paragraph-1 {font-size: 18px; font-weight: 500;}
.paragraph-2 {font-size: 16px; font-weight: 400;}
.paragraph-3 {font-size: 14px; font-weight: 300;}

.logo {
    width: 165px !important;
    height: fit-content;
}

hr {
    margin-bottom: 1rem;
    width: 35%;
    border: 2px solid var(--primary);
    border-radius: 24px;
}

a {
    display: inline-block;
    position: relative;
    color: var(--text-secondary);
    transition: 200ms;
}

a:hover {
    color: var(--primary);
    transition: 200ms;
}
  
a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
  
a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.badge {
    position: relative;
    font-size: .5rem;
    font-weight: 500;
    text-transform: uppercase;
    top: -7px;
    right: -5px;
    padding: .2rem;
    border: none;
    border-radius: 3px;
}

.badge-comingSoon {
    background-color: var(--badge-color-1);
    color: var(--text);
}

.badge-new {
    background-color: var(--primary);
    color: var(--text);
}

.badge-open {
    background-color: var(--primary);
    color: var(--text);
}

.badge-closed {
    background-color: var(--badge-color-2);
    color: var(--text);
}

.badge-money {
    background-color: var(--benefit);
    color: var(--text);
    font-size: .6rem;
}

.benefit {
    padding: .3rem .3rem;
    border: none;
    border-radius: 6px;
    background-color: var(--benefit-bg);
    color: var(--benefit);
    width: fit-content;
    font-weight: 500;
    font-size: 13px;
}

.btn {
    font-size: 1rem;
    font-weight: 400;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text);
    padding: .7rem 1.4rem;
    transition: 200ms;
}

.btn-secondary {
    font-size: .9rem;
    font-weight: 400;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text);
    padding: .5rem .7rem;
    transition: 200ms;
}

.primary-btn {
    background-color: var(--primary);
    transition: 200ms;
}

.primary-btn:hover {
    background-color: var(--accent);
    transition: 200ms;
}

.secondary-btn {
    background-color: var(--secondary);
    transition: 200ms;
}

.secondary-btn:hover {
    background-color: var(--accent);
    transition: 200ms;
}

.btn-christmas {
    background-color: red;
}

.btn-card {
    background-color: transparent;
    border: 1px solid var(--text-2);
    color: var(--text-2);
    transition: 200ms;
    width: 50%;
}

.btn-card:hover {
    transition: 200ms;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--text);
}

.btn .fa-chevron-up {
    transform: rotate(45deg);
    margin-left: .3rem;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(5, 17rem);
    grid-template-rows: repeat(1, 20rem);
    gap: 2rem;
}

.card {
    border: none;
    border-radius: 12px;
}

.column {
    border: none;
    border-radius: 6px;
    color: var(--text);
}

#topBtn {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 100;
    border: 1px solid var(--text);
    outline: none;
    background-color: var(--text-secondary);
    color: var(--text);
    cursor: pointer;
    padding: .5rem 1rem;
    border-radius: 6px;
    font-size: 16px;
    transition: 200ms;
    text-transform: uppercase;
}
  
#topBtn:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--text);
    transition: 200ms;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    width: 50%; /* Adjust the width as desired */
    margin: 10% auto; /* Center modal vertically and horizontally */
    padding: 20px;
    border-radius: 12px;
    position: relative;
}

.closeBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem;
    background-color: transparent;
    font-size: 16px;
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    text-align: left !important;
    transition: 200ms;
    width: fit-content !important;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.closeBtn:hover {
    background-color: var(--badge-color-2);
    border-color: var(--badge-color-2);
    color: var(--text);
    transition: 200ms;
}

#notice {
    background-color: var(--color-yellow);
    padding: 1rem;
    border-radius: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 400 !important;
    font-size: .9rem;
}

#notice a {
    color: var(--text-secondary);
    font-weight: 600;
}

#notice a:hover {
    color: var(--primary);
}

#notice .fa-triangle-exclamation {
    font-size: 3rem;
}

#notice u {
    text-decoration: underline;
}

.banner {
    display: flex;
    justify-content: center;
}

.banner-mobile {
    display: none;
}

.banner-mobile .bannerInner {
    width: 100%;
}

.bannerInner {
    background-color: var(--background-color-inner);
    color: var(--text);
    padding: .5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    z-index: 1000;
    margin-top: .5rem;
    border: 1px solid var(--text);
    border-radius: 6px;
}

.banner a {
    color: var(--primary);
    transition: 200ms;
}

.banner a:hover {
    color: var(--primary);
    transition: 200ms;
}

.banner .fa-triangle-exclamation {
    color: var(--color-yellow);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.995);
}

::-webkit-scrollbar-thumb {
    background-color: var(--text-2);
    border-radius: 6px;
    transition: 200ms;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--text);
    transition: 200ms;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    opacity: 0; /* Start with opacity 0 */
    transition: opacity 0.3s ease-in-out; /* Apply transition effect */
    transition-delay: 1s; /* Delay before the transition starts */
    top: 100%;
    left: 50%;
    margin-left: -60px;
    width: max-content;
    background-color: var(--text-2);
    color: var(--background);
    text-align: center;
    padding: .3rem;
    border: none;
    border-radius: 3px;
    position: absolute;
    z-index: 1;
    font-size: .7rem;
    font-weight: 500;
    text-transform: uppercase;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1; /* Change opacity to fully visible on hover */
}

.glow-text {
    font-weight: 500;
    text-shadow: 0 0 5px red, 0 0 10px red, 0 0 15px red, 0 0 20px red;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px red, 0 0 10px red, 0 0 15px red, 0 0 20px red;
    }
    50% {
        text-shadow: 0 0 10px red, 0 0 15px red, 0 0 20px red, 0 0 25px red;
    }
}