@import "bootstrap/scss/bootstrap";
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400|Raleway:300");
@import url("https://fonts.cdnfonts.com/css/beyonders");

@font-face {
    font-family: 'beyonders';
    src: url('assets/Beyonders-6YoJM.ttf') format('truetype');
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    --background-dark: rgb(32, 32, 32);
    --background-dark2: rgb(54, 54, 54);
    --background-darklight: rgb(54, 54, 54);
    --red-color: rgba(255, 77, 77, 1);

    background: linear-gradient(175deg, rgb(32, 100, 100), rgb(0, 27, 29));
    color: white;
    text-align: center;
    user-select: none;
    font-family: "Open Sans", sans-serif;

    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    overflow: hidden;
}

::selection {
    background: rgba(13, 67, 185, 0.342);
}

hr {
    border: 1px solid gray;
}

.background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

/* layer 1 */
.background::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("assets/New_Project_36_4E6C7BF.png");
    background-repeat: repeat;

    /* 🔥 bigger = cleaner */
    background-size: 280px;

    opacity: 0.20; /* 🔥 softer */
        /* 🔥 black & white filter */
    filter: grayscale(100%) contrast(1.1) brightness(0.4);
}

/* layer 2 (offset) */
.background::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("assets/New_Project_36_4E6C7BF.png");
    background-repeat: repeat;

    background-size: 280px;

    /* 🔥 PERFECT offset (half of size) */
    background-position: 140px 90px;

    opacity: 0.20;
        /* 🔥 black & white filter */
    filter: grayscale(100%) contrast(1.1) brightness(0.4);
}

.containter {
    position: relative;
    z-index: 1;
    padding: 50px;
}

/* Navigation styles */
nav.top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 24px;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(6px) saturate(1.05);
    -webkit-backdrop-filter: blur(6px) saturate(1.05);
    box-shadow: 0 1px 0 rgba(255,255,255,0.02) inset;
    z-index: 50;
}

nav.top .logo {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 100px;
    width: auto;
    display: block;
    border-radius: 5px;
}

nav.top .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav.top .nav-links li {
    display: inline-block;
}

nav.top .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 160ms ease, transform 120ms ease, color 120ms ease;
}

nav.top .nav-links a:hover,
nav.top .nav-links a:focus {
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
    outline: none;
}

/* Ensure page content isn't hidden under the fixed nav */
.container {
    padding-top: 86px;
}

.discord p {
    font-size: large;
    margin: 0px;
    margin-top: -100px;
    margin-left: -40px;
}

.lcrp_logo {
    margin: 0;
    margin-left: 50px;
    margin-top: 100px;
}

.buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

.buttons button {
    background: linear-gradient(135deg, rgb(228, 228, 228), rgb(228, 250, 255));
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
    font-size: 1.3rem;
    border: 2px solid rgba(0, 0, 0, 0);
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 300ms ease, transform 120ms ease;
}

.buttons button:hover {
    background: linear-gradient(135deg, rgb(255, 255, 255), rgb(228, 250, 255));
    transform: translateY(-2px);
    border: 2px solid #1a1a1a;
    outline: 3px solid #ffffff;
    outline-offset: 2px; 
}

.buttons button i {
    font-size: 30px;
}

.buttons button a {
    color: black;
    display: flex;
    text-decoration: none;
}

/* Powered-by logos */
.powered-by {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 100px;
    padding: 12px;
}
.powered-by a { display: inline-block; }
.powered-by .powered-logo {
    height: 170px;
    width: auto;
    display: inline-block;
    border-radius: 6px;
    transition: transform 160ms ease, opacity 160ms ease;
}
.powered-by .powered-logo:hover { transform: translateY(-4px); opacity: 0.95; }


/* Mobile: hide full links (can be replaced by a hamburger later) */
@media (max-width: 700px) {
    nav.top { padding: 0 12px; }
    nav.top .logo { height: 40px; }
    nav.top .nav-links { display: none; }
}

