/* =====================================
   LOST ARK ORGANIZER - GLOBAL STYLE
   ===================================== */

/* Grundfarben */
body {
    background-color: #171717;
    color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* === MODERNER, SYMMETRISCHER HEADER === */
.top-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #1b1b1b 0%, #212121 100%);
    padding: 10px 30px;
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Navigation links */
.nav-left a {
    color: #e6c76d;
    margin-right: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    letter-spacing: 0.3px;
}
.nav-left a:hover,
.nav-left a.active {
    color: #fff;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.8);
}

/* Titel exakt mittig */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-center .nav-title {
    color: #f5d97d;
    font-weight: 600;
    font-size: 1.15rem;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

/* Logout Button */
.nav-right .logout-btn {
    color: #111;
    background: #d4af37;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.nav-right .logout-btn:hover {
    background: #b89630;
    transform: translateY(-1px);
}

/* Responsiv */
@media (max-width: 700px) {
    .top-nav {
        flex-direction: column;
        text-align: center;
        padding: 8px 15px;
    }
    .nav-center {
        position: static;
        transform: none;
        margin-top: 5px;
    }
    .nav-left, .nav-right {
        margin: 6px 0;
    }
}

/* === MAIN LAYOUT === */
.main-content {
    padding: 30px;
}
.dashboard-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.welcome-text {
    text-align: center;
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 20px;
}

/* === DASHBOARD CARDS === */
.dashboard-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 0 20px;
}
.card {
    background-color: #212121;
    border: 1px solid #303030;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.card h3 {
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 10px;
}
.card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ccc;
}

/* === LINK-CARDS / BUTTONS === */
.link-card {
    text-align: center;
}
.btn-gold {
    display: inline-block;
    background-color: #d4af37;
    color: #171717;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}
.btn-gold:hover {
    background-color: #b89630;
    transform: scale(1.03);
}

/* === FOOTER === */
.footer {
    text-align: center;
    color: #777;
    padding: 20px;
    border-top: 1px solid #2a2a2d;
    margin-top: 40px;
}

/* =====================================
   GUARDIAN DAYS SECTION
   ===================================== */
.guardian-days {
    margin: 25px auto 35px;
    text-align: center;
    width: 90%;
}

.guardian-days h2 {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.day-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.day-card {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
    user-select: none;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.day-card:hover {
    background-color: #3a3a3a;
    transform: translateY(-2px);
}

.day-card.active {
    background-color: #d4af37;
    color: #171717;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}
