/* ------------------------------
   GLOBAL SETTINGS
--------------------------------*/
:root {
    --bg-main: #102f3d;
    --text-primary: #c1c0c1;
    --accent: #29C4F8;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', 'Roboto', sans-serif;

    --max-width: 1100px;
    --section-padding: 50px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
}

img {
    max-width: 100%;
}

/* Link styling only inside content sections */
.help a,
.terms a,
.docs a,
.docs-content a {
    color: #4db8ff;        /* bright blue */
    text-decoration: none;
}

.help a:hover,
.terms a:hover,
.docs a:hover {
    color: #ffffff;        /* white on hover */
}

.help a:visited,
.terms a:visited,
.docs a:visited {
    color: #4db8ff;        /* prevent purple visited links */
}




/* ------------------------------
   LAYOUT
--------------------------------*/
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

/* ------------------------------
   HEADERS & FONTS
--------------------------------*/
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* ------------------------------
   NAVBAR
--------------------------------*/
nav {
    width: 100%;
    padding: 1px 0;
    /* background: rgba(16, 47, 61, 0.85);  dark version of #102f3d */
    background: #071313;  /* new dark shade for navbar */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

nav .container {
    display: flex;
    justify-content: space-between;     /* logo left, links right */
    align-items: center;
    width: 100%;                        /* make navbar full screen */
    max-width: 100%;                    /* prevent centering inside container */
    padding: 0 40px;                    /* optional spacing from screen edges */
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--accent);
}

nav img.logo {
    height: 100px;   /* ideal size */
    width: auto;
}


/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
}

/* .hero h1 {
    font-size: 3rem;
    color: #d9d9d8;
    margin-bottom: 20px;
} */

.hero h1 {
    font-family: 'Tangerine', cursive;  /* use the new font */
    font-size: 10rem;                     /* large, eye-catching */
    color: #d9d9d8;                      /* your accent color */
    margin-bottom: 25px;
    line-height: 1.2;                    /* slightly tighter spacing */
    letter-spacing: 1px;                 /* optional, makes it elegant */
    text-shadow: 0 2px 8px rgba(0,0,0,0.5); /* subtle depth */
}



.hero p {
    font-size: 1.2rem;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto 30px;
}

.button {
    margin-top: 20px;
    background: var(--accent);
    color: #000;
    padding: 24px 46px;
    border-radius: 28px;
    font-weight: 400;
    font-family: 'Orbitron', sans-serif;  /* use the new font */
    font-size: 2rem;   /* add this line to increase text size */
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.button:hover {
    opacity: 0.65;
}

/* ------------------------------
   FEATURE GRID
--------------------------------*/
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.feature-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 14px;
    transition: transform 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Terms PAGE — STYLES */


/* 1. Add top padding to Terms section to prevent overlap with fixed navbar */
.terms {
    padding-top: 140px;  /* Adjust as needed, navbar height + spacing */
    padding-bottom: 50px;
}

/* 2. Increase spacing between numbered items */
.terms h2 {
    margin-top: 20px;
    margin-bottom: 5px;
}

/* 3. Indent sub-lists under main numbered items */
.terms ul li ul {
    margin-left: 40px;  /* 1 tab-width approx */
    margin-top: 10px;
}

/* Indent all top-level bullet lists inside terms section */
.terms ul {
    margin-left: 30px; /* space from section title */
    margin-top: 15px;  /* space above the list */
    margin-bottom: 20px; /* optional spacing below */
    list-style-position: inside; /* bullets start inside the margin */
}

/* 4. Style sub-titles inside list items */
.terms .sub-title {
    /* font-style: italic; */
    text-decoration: underline;
    display: inlet;   /* forces line break before paragraph */
    margin-bottom: 8px;
    margin-right: 6px; /* optional: add small space after Logs: */
}

/* HELP PAGE — STYLES */

/* 1. Add top padding so content doesn't overlap the fixed navbar */
.help {
    padding-top: 140px;
    padding-bottom: 50px;
}

/* 2. Spacing for section titles */
.help h2 {
    margin-top: 25px;
    margin-bottom: 10px;
}

/* 3. Styling for FAQ list */
.help ul {
    list-style: none;
    padding-left: 30px;
    margin-left: 0;
}


/* FAQ list items */
.help ul li {
    margin-bottom: 18px; /* space between questions */
}

/* 4. Question formatting */
.help ul li strong {
    display: block;     /* puts the question on its own line */
    font-size: 1.05rem;
    margin-bottom: 6px;
    text-decoration: underline;
}

/* 5. Answer formatting */
.help ul li p {
    margin-left: 10px;     /* slight indentation for answer */
    margin-top: 5px;
    line-height: 1.5;
}

/* Support Button (same style as Invite button) */
.support-button-container {
    margin-top: 25px;
    margin-bottom: 40px;
    margin-left: 30px; /* Indent the whole container */
}

.support-btn {
    background-color: #071313;
    padding: 12px 26px;
    color: #000;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s ease-in-out;
}

.support-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}


/* docs PAGE — STYLES */

.docs-wrapper {
    display: flex;
    flex: 1;
}


/* ------------------------------
   FOOTER
--------------------------------*/
footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-primary);
    opacity: 0.7;
    font-size: 0.9rem;
}
