﻿/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'ShouldveKnown-Regular';
    src: url('/Fonts/ShouldveKnown-Regular.woff2') format('woff2'), url('/Fonts/ShouldveKnown-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MisterPixelRegular';
    src: url('/Fonts/MisterPixelRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DWARVESC';
    src: url('/Fonts/DWARVESC.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    min-height: 100vh;
    overflow: auto;
}

.headerspace{
    /*margin-top:80px;*/
    height: 80px;
    width: 100%;
}

.background-section {
    /*background-image: url('../Images/GamePage.png');
    background-size: cover;*/ /* or contain */
    /*background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 80vh;*/ /* or 80vh or 100vh depending on how prominent you want it */
    /*display: flex;
    justify-content: center;
    background-color: #eae8e5;
    padding: 20px;*/
    display: flex;
    flex-direction: column; /* <-- STACK VERTICALLY */
    align-items: center; /* <-- CENTER horizontally */
    justify-content: center; /* Optional: center vertically */
    padding: 0px 0px 0px; /* Padding top to account for navbar */
    gap: 0px; /* Space between each item */
    /*background-image: url('../Images/websiteBackground.png');*/
    /*background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
}

.content {
    min-height: 100%;
    width: 100%;
    background-image: url('../Images/websiteBackground3.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

/* Icon Section */
.section-icon {
    display: flex;
    justify-content: center;
    margin-top: 80px; /* spacing under navbar */
    margin-bottom: 15px;
}

    .section-icon img {
        width: auto;
        height: auto;
    }

.bordered-image {
    border: 5px solid black; /* You can change the width and color */
    border-radius: 10px; /* Optional: rounded corners */
    /*padding: 4px;*/ /* Optional: spacing between image and border */
}

/* Title Section */
.section-title {
    text-align: center;
    font-family: DWARVESC;
    margin-bottom: 15px;

}


    /*.section-title h1 {
        font-size: 48px;
        font-weight: bold;
        background-image: linear-gradient(135deg, #000000, #FA8000, #F59836, #FF8300);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;*/ /* Ensure the text itself is transparent */
        /*-webkit-text-fill-color: transparent;*/ /* Necessary for Webkit browsers */
        /* Border effect via text-shadow */
        /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),*/ /* outer border shadow */
        /*-2px -2px 4px rgba(0, 0, 0, 0.7);*/ /* opposite side shadow */
    /*}*/
    .section-title h1 {
        font-size: 48px;
        font-weight: bold;
        background: -webkit-linear-gradient(bottom, #000000, #FA8000,#F59836, #FF8300);
        color: #B6DFEB;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
         WebKit text stroke;
        /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),  outer border shadow 
        -2px -2px 4px rgba(0, 0, 0, 0.7);  opposite side shadow */
        text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.8);
    }


/* Description Section */
.section-description {
    font-family: MisterPixelRegular;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.25rem;
    color: #B6DFEB;
    padding: 0 20px;
    line-height: 1.6;
    text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.8);
}

/* Buttons Section */
.section-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Primary Button */
.primary-btn {
    background-color: #5c2d91;
    color: white;
}

    .primary-btn:hover {
        background-color: #7e49c7;
    }

/* Secondary Button */
.secondary-btn {
    background-color: #e0e0e0;
    color: #333;
}

    .secondary-btn:hover {
        background-color: #ccc;
    }

/* Style for the navigation bar */
/*-------------------------------------------------------------------------------------------------------*/
.navbar {
    position: fixed; /* Makes the navbar stick to the top */
    top: 0; /* Ensures it sticks to the very top */
    left: 0; /* Aligns it with the left edge */
    width: 100%; /* Spans the full width of the screen */
    z-index: 1000; /* Keeps it above other elements */
    height: 80px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 75px; /* padding from left */
    font-family: ShouldveKnown-Regular;
    background-color: rgba(0,0,0,1); /* Optional semi-transparent background */
    transition: background-color 0.3s ease; /* Smooth transition */
}

    .navbar .logo img {
        height: 60px;
        width: auto;
        margin-right: 25px; /* Space between logo and nav items */
    }

    .navbar .logo a {
        padding: 0px 0px;
    }

    /* Style for navigation links */
    .navbar a {
        /*text-align: center;*/
        color: #f0f0f0; /* Light Text color */
        padding: 25px 10px; /* second number control distance between links */
        text-decoration: none;
        font-size: 18px;
    }

        /* Change color on hover */
        .navbar a:hover {
            color: rebeccapurple;
        }

        .navbar nav a.active{
            color: rebeccapurple;
        }
/*-------------------------------------------------------------------------------------------------------*/

footer {
    background-color: #000;
    height: 250px;
    width: 100%;
    padding: 20px 50px;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-top {
    display: flex; /* Aligns social media and copyright in a row */
    justify-content: space-between; /* Space them apart */
    align-items: center; /* Vertically aligns content */
}

.footer-content .copyright {
    text-align: right; /*Ensures privacy policy is centered */
    font-size: 18px;
}

.footer-bottom {
    display: flex; /* Aligns social media and copyright in a row */
    align-items: center; /* Vertically aligns content */
    justify-content: space-between; /* Space them apart */
}

    .footer-bottom .logo {
        display: flex;
        flex-direction: column; /*Stack text above icons */
        align-items: flex-end; /*Center the content horizontally*/
    }

    .footer-bottom img {
        height: 80px;
        width: auto;
        object-fit: contain;
        align-content: end;
    }

.footer-links {
    display: flex; /* Aligns links in a row */
    gap: 30px; /* Adds space between links */
}

    .footer-links a {
        color: white;
        text-decoration: none;
        font-size: 16px; /* Optional: Adjust font size */
    }

.social-media {
    display: flex;
    flex-direction: column; /*Stack text above icons */
    align-items: flex-start; /*Center the content horizontally*/
}

    .social-media p {
        margin-bottom: 10px;
        font-size: 18px;
    }

.social-icons {
    display: flex;
    gap: 20px; /*Space between icons*/
}

    .social-icons img {
        height: 30px;
        width: auto;
        object-fit: contain;
    }


@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        justify-content: center;
        align-items: center;
        padding: 0px 10px; /* reduce padding on smaller screens */
        width: 100%;
    }
}
