/* NAVBAR -------------- */
body {
    margin: 0;
}

.navigation{
    width: 100%;
    background: linear-gradient(
        180deg,
        #ff9966,
        rgb(242, 179, 137)
    );
    border-color: black;
    border-bottom: solid;

    display:flex;
    justify-content:center;
    flex-direction: row;
    align-items:center;
}

.navigation h1{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

/* CLAUDE TEST */

/* ====================================================
   PAGE LAYOUT
==================================================== */
.page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    max-width: 2200px;
    width: 94%;
    margin: 32px auto;
    padding: 0;
    align-items: start;
}

.col-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.col-right {
    display: flex;
    flex-direction: column;
}

/* ====================================================
   SHARED PANEL STYLES
==================================================== */
.panel {
    background: var(--panel-bg);
    border: 2px solid var(--panel-border);
    border-radius: 14px;
    overflow: hidden;
}

.panel-header {
    background: var(--orange-gradient);
    border-bottom: 2px solid var(--panel-border);
    padding: 22px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-title {
    height: 52px;
    width: auto;
}

.panel-body {
    padding: 26px 36px;
}

/* ====================================================
   WELCOME PANEL
==================================================== */
.welcome-panel {
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
}

.welcome-title {
    max-width: 560px;
    width: 100%;
    height: auto;
}

.welcome-text {
    margin: 0;
    color: #8f8f8f;
    font-size: 1.3rem;
    line-height: 1.5;
}

.view-list-btn {
    display: inline-block;
    background: var(--orange-gradient);
    border: 2px solid #7a4a2c;
    border-radius: 10px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.35rem;
    text-decoration: none;
    padding: 16px 48px;
    margin-top: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.view-list-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* ====================================================
   CHANGELOG PANEL
==================================================== */
.changelog-scroll {
    max-height: 400px;
    overflow-y: auto;
    padding-top: 24px;
    padding-bottom: 24px;
}

.changelog-group {
    margin-bottom: 26px;
}

.changelog-group:last-child {
    margin-bottom: 0;
}

.changelog-date {
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.changelog-entry {
    margin: 0 0 6px 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.changelog-level {
    color: var(--changelog-orange);
    font-weight: bold;
}

.changelog-info {
    color: var(--changelog-grey);
}

/* ====================================================
   SOCIALS PANEL
==================================================== */
.socials-scroll {
    max-height: 820px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--social-card-bg);
    border-radius: 10px;
    padding: 20px 24px;
    text-decoration: none;
    color: #111111;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

.social-label {
    font-weight: bold;
    font-size: 1.4rem;
}

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 900px) {
    .page-grid {
        grid-template-columns: 1fr;
        width: 92%;
    }

    .navigation {
        flex-wrap: wrap;
        gap: 16px;
    }

    .navigation a img {
        height: 34px;
    }
}

/* ====================================================
   ROOT / RESET
==================================================== */
:root {
    --orange-gradient: linear-gradient(180deg, #ff9966, rgb(242, 179, 137));
    --panel-bg: #ffffff;
    --panel-border: #bbbbbb;
    --changelog-orange: #f2934f;
    --changelog-grey: #959595;
    --social-card-bg: #fbe6d3;
    --font-body: Verdana, Geneva, Tahoma, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    font-family: var(--font-body);
}
