/* Grundschriftart */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #eef1f6;
    color: #2b2b2b;
    text-shadow: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content {
    flex: 1;
}


/* -------------------------------------------------------------------------- */
/* NAVBAR */
/* -------------------------------------------------------------------------- */
.my-navbar {
    background: rgba(14, 56, 49, 0.92);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 0.7rem 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.my-navbar .navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow: none;
    transition: 0.25s ease;
}

.my-navbar .navbar-brand:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

/* Logo in Navbar neben dem Text */
.navbar-logo {
    height: 2em;
    width: auto;   
    margin-right: 0.5rem; 
    vertical-align: middle; 
}


/* -------------------------------------------------------------------------- */
/* BUTTONS */
/* -------------------------------------------------------------------------- */
.my-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    background: linear-gradient(135deg, #0e4b41, #146155);
    color: #fff;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.18);
}

.my-btn:hover {
    background: linear-gradient(135deg, #126458, #1b7a6b);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    transform: translateY(-3px) scale(1.03);
}

.navbar-login {
    height: 42px;
    font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/* KARTEN */
/* -------------------------------------------------------------------------- */
.my-card {
    border-radius: 20px;
    padding: 20px 25px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.my-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* -------------------------------------------------------------------------- */
/* KARTENTITEL */
/* -------------------------------------------------------------------------- */
.my-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f1f1f;
    transition: 0.4s ease;
}

.my-card:hover .card-title {
    color: #0e4b41;
    transform: translateY(-2px);
}

/* -------------------------------------------------------------------------- */
/* KARTEN-DETAILS */
/* -------------------------------------------------------------------------- */
.card-details {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding-left: 15px;
    color: #5a5a5a;
    opacity: 0;
    transition: max-height 1.2s ease, opacity 0.8s ease;
}

.my-card:hover .card-details {
    max-height: 300px;
    opacity: 1;
}

/* -------------------------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------------------------- */
.my-header {
    background: linear-gradient(135deg, #193645, #0e3831);
    background-size: 200% 200%;
    animation: headerMove 16s ease infinite;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.25);
}

@keyframes headerMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* -------------------------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------------------------- */
.my-footer {
    background-color: #1f2b35;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    opacity: 0.9;
}

/* -------------------------------------------------------------------------- */
/* BILDER IN KARTEN */
/* -------------------------------------------------------------------------- */
.minecraft-card .card-image,
.gta-card .card-image,
.drillaz-card .card-image {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: auto;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 6px 28px rgba(0,0,0,0.45));
    transition: transform 0.45s ease, opacity 0.35s ease;
}

.my-card:hover .card-image {
    transform: translateY(-50%) scale(1.12);
    opacity: 1;
}

.drillaz-card .card-image {
    border-radius: 20px;
}

/* -------------------------------------------------------------------------- */
/* RESPONSIVE / SMARTPHONE-OPTIMIERUNG */
/* -------------------------------------------------------------------------- */
@media (max-width: 576px) {
    .my-header h1 { font-size: 1.8rem; }
    .my-header p { font-size: 0.95rem; }
    .my-card .form-control { margin-bottom: 0.5rem; }
    .my-card .btn { font-size: 0.9rem; height: 38px; }
    table { font-size: 0.85rem; }
    .collapse td table { font-size: 0.8rem; }

    /* Tabellen horizontal scrollen */
    .table-responsive { overflow-x: auto; }
}
