/* The main css file for the website, contains all the things that are not specific to a single page */
body {
    margin: 0;
    background-color: black;
    max-width: 100%;
    padding-top: 90px; /* Add padding equal to header height + some extra space */
}

*, .default_font {
    font-family: "Anek Gujarati", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    color: white;
}

.header {
    width: 100%;
    height: 60px; /* Set the desired height */
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 1000; /* Ensure it stays on top of other elements */
}

.header img {
    box-sizing: content-box;
}

.text_secret_solver_blue {
    color: #0076FF;
}

.spacing_div_small {
    margin-top: 10px;
}

.spacing_div_medium {
    margin-top: 20px;
}

.spacing_div_large {
    margin-top: 50px;
}

.spacing_div_xlarge {
    margin-top: 100px;
}

.fullscreen_modal {
    user-select: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.fullscreen_modal_close_button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.fullscreen_modal_content_container {
    background-color: black;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: auto;
}

.fullscreen_modal_content {
    width: 80%;
    height: 80%;
    background-color: black;
}

.header {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 1000;
}

.header_logo_container {
    width: 100%;
    display: inline-block;
}

.header_logo {
    width: 50px;
    height: 50px;
    padding: 20px;
}

.header_cart_container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.header_cart_icon {
    font-size: 24px;
    color: #000;
}


.footer {
    width: 100%;
    min-height: 120px;
    background-color: #3B3B3B;
    padding: 40px 0;
    margin-top: 50px;
}

.footer_container {
    width: 100%;
    background-color: #3B3B3B;
}

.footer_content {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.footer_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.footer_column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_heading {
    color: #0076FF;
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer_link {
    color: white;
    text-decoration: none;
    margin: 8px 0;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 0;
}

.footer_link:hover {
    color: #0076FF;
    transform: translateY(-2px);
}

.footer_divider {
    width: 80%;
    height: 1px;
    background-color: #505050;
    margin: 20px 0;
}

.footer_social {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.footer_social_link {
    color: white;
    font-size: 20px;
    margin: 0 15px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_social_link:hover {
    color: #0076FF;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer_copyright {
    font-size: 14px;
    color: #AAA;
    margin: 10px 0 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer_column {
        padding-bottom: 10px;
    }
    
    .footer_divider {
        width: 100%;
    }
}

/* Banner Styles */
.banner {
    position: fixed;
    top: 90px; /* Below the header */
    left: 0;
    right: 0;
    z-index: 1001; /* Below header but above content */
    padding: 12px 20px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.banner-message {
    flex: 1;
    margin-right: 20px;
    font-weight: 600;
}

.banner-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    min-width: 28px;
    height: 28px;
}

.banner-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.banner-close:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Banner Types */
.banner-info {
    background-color: #0076FF;
    color: white;
}

.banner-success {
    background-color: #28a745;
    color: white;
}

.banner-warning {
    background-color: #f39c12;
    color: white;
}

.banner-warning .banner-close box-icon {
    color: white !important;
}

.banner-error {
    background-color: #dc3545;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .banner-message {
        margin-right: 15px;
    }
    
    .banner-close {
        min-width: 24px;
        height: 24px;
    }
}