* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.body-pic {
    background: url("/img/body2.png");
    background-repeat: repeat;
    background-position: center;
    background-color: rgb(15, 0, 90);
    background-attachment: fixed;
}
:root {
    --sun: #ffe27a;
    --dark-blue: #0f005a;
}
/* Navbar Start */
.navbar-logo {
    height: 80px;
    width: 100px;
}
.custom-navbar {
    background-image:
        url("/img/body2.png"),
        linear-gradient(
            180deg,
            #a8ff78 0%,
            #78ffd6 45%,
            #c9f7eb 65%,
            #eafdf7 85%,
            #f2fffa 100%
        );
    background-repeat: repeat, no-repeat;
    background-size:
        48px auto,
        100% 100%;
    background-position: center, center;
    background-blend-mode: overlay;
    max-height: 80px;
}
.custom-navbar .nav-link {
    color: #0b5ed7 !important;
    text-shadow: 0 0 0.6px rgba(11, 94, 215, 0.8);
    font-weight: 500;
    font-size: 25px;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
    color: #0b5ed7 !important;
}
.navbar-links {
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.custom-navbar .dropdown-menu {
    background-color: #ffffff;
    border: none;
    filter: drop-shadow(0 6px 14px rgba(15, 0, 90, 0.25));
}
.custom-navbar .dropdown-menu .dropdown-item {
    color: #0b5ed7 !important;
    text-shadow: none;
    background-color: transparent;
    font-weight: 500;
    transition:
        background 0.25s ease,
        color 0.25s ease;
    font-size: 20px;
}
.custom-navbar .dropdown-menu .dropdown-item:hover,
.custom-navbar .dropdown-menu .dropdown-item:focus {
    color: #0b5ed7 !important;
    background: linear-gradient(135deg, #a8ff78, #78ffd6);
}
.navbar-brand img {
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.5));
}
.profile-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-dropdown img {
    max-width: 50px;
    max-height: 50px;
}
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(180deg, #ffffff, #eafdf7);
        padding: 18px;
        border-radius: 18px;
        margin-top: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .navbar-links {
        position: static;
        transform: none;
        gap: 8px;
    }

    .navbar-nav .nav-link {
        font-size: 20px;
        padding: 12px;
        border-radius: 12px;
        transition: background 0.2s ease;
    }

    .navbar-nav .nav-link:hover {
        background: linear-gradient(90deg, #a8ff78, #78ffd6);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 6px;
        border-radius: 12px;
        box-shadow: none;
    }
}
/* Navbar End */
/* Hero Start */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #000000 0%,
        #000000 65%,
        rgba(0, 0, 0, 0.98) 70%,
        rgba(0, 0, 0, 0.95) 74%,
        rgba(0, 0, 0, 0.9) 78%,
        rgba(0, 0, 0, 0.8) 82%,
        rgba(0, 0, 0, 0.65) 87%,
        rgba(0, 0, 0, 0.45) 91%,
        rgba(0, 0, 0, 0.25) 95%,
        rgba(0, 0, 0, 0.1) 98%,
        rgba(0, 0, 0, 0) 100%
    );
}

.hero-section video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: cover;
    z-index: 0;
    transition: opacity 1.8s ease;
    opacity: 0;
}

.hero-section video.video-visible {
    opacity: 1;
}

.hero-section.outro-active video {
    opacity: 0;
}

.hero-outro {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        180deg,
        #000000 0%,
        #000000 65%,
        rgba(0, 0, 0, 0.98) 70%,
        rgba(0, 0, 0, 0.95) 74%,
        rgba(0, 0, 0, 0.9) 78%,
        rgba(0, 0, 0, 0.8) 82%,
        rgba(0, 0, 0, 0.65) 87%,
        rgba(0, 0, 0, 0.45) 91%,
        rgba(0, 0, 0, 0.25) 95%,
        rgba(0, 0, 0, 0.1) 98%,
        rgba(0, 0, 0, 0) 100%
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.8s ease;
    padding-bottom: 180px;
}
.hero-outro.active {
    opacity: 1;
    pointer-events: auto;
}
.hero-outro-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 2s ease;
}
.hero-outro-logo {
    width: 250px;
    max-width: 250px;
    margin-bottom: 14px;
    opacity: 0;
    transform: scale(0.9);
    transition:
        opacity 2.5s ease,
        transform 2.5s ease;
    transition-delay: 3s;
}
.hero-outro-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.4px;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 2.8s ease,
        transform 2.8s ease;
    transition-delay: 6s;
}
.hero-outro.active .hero-outro-logo {
    opacity: 1;
    transform: scale(1);
}
.hero-outro.active .hero-outro-subtitle {
    opacity: 1;
    transform: translateY(0);
}
/* Hero End */
/* Base Card Start */
.paw-card {
    background: linear-gradient(135deg, #a8ff78, #78ffd6);
    border-radius: 20px;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: none;
    margin: 5px auto;
}
.paw-card-inner {
    background: transparent;
    border-radius: 16px;
    padding: 60px 20px;
}
.paw-card-content,
.paw-content {
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
}
.paw-card-h1 {
    margin: 30px 0 65px 0;
    text-align: left;
    font-size: 48px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0b5ed7;
    text-shadow: none;
    display: inline-block;
    padding: 0.8rem 1.4rem;
    background: linear-gradient(90deg, #78ffd6, #a8ff78);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.paw-card-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    margin: 0 auto 20px auto;
}
/* Base Card End */
/* Index Start */
.index-container {
    margin: 20px auto;
}
.paw-card--index {
    max-width: 25rem;
}
.paw-card--index .paw-card-img {
    max-height: 210px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.381);
}
.paw-card--index .paw-content {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 16px;
    margin-bottom: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.paw-card--index .paw-card-title {
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow:
        0 1px 1px rgba(255, 255, 255, 0.6),
        0 2px 3px rgba(0, 0, 0, 0.15);
}
.paw-card-meta {
    text-shadow: 0 1px 1px rgba(49, 49, 49, 0.141);
}
.paw-card-title-wrapper {
    background-color: white;
    color: #000000;
    padding: 12px 16px;
    border-radius: 16px;
    margin: 30px auto;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}
.paw-card-title-wrapper p {
    margin-bottom: 0;
}
.paw-card-btn {
    background-color: white;
    width: 100%;
    font-size: 18px;
    border-radius: 12px;
    font-weight: 600;
    text-shadow:
        0 1px 1px rgba(255, 255, 255, 0.6),
        0 2px 3px rgba(0, 0, 0, 0.15);
}
.index-card-hr {
    border: none;
    height: 2px;
    width: 100%;
    margin: 12px 0 14px 0;
    background: linear-gradient(90deg, #a8ff78, #78ffd6);
    border-radius: 4px;
    opacity: 1;
}
.paw-card-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 18px;
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    transition: 0.2s;
}
.paw-card-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #fff0b0, #ffe27a);
}
.paw-card--details {
    max-width: 1100px;
    padding: 10px 15px;
}
/* Index End */
/* Details Start */
.details-container {
    padding: 30px 25px;
}
.details-back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #9aff9a;
    color: #0057ff;
    font-weight: 700;
    font-size: 28px;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
    margin: 20px 0 85px 0;
}
.details-back-button:hover {
    transform: translateX(-4px);
    background: #7dff7d;
}
.paw-card--details {
    max-width: 1100px;
    margin: 0 auto;
}
.details-content {
    display: grid;
    grid-template-columns: minmax(0, 420px) 1fr;
    column-gap: 40px;
}
.details-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.details-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.details-name {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
    width: 100%;
}
.details-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px auto;
}
.details-card-img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(82, 81, 81, 0.3);
}
.details-description-wrapper,
.details-adoption-wrapper,
.details-table {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 22px;
    width: 100%;
}
.details-description-wrapper h5,
.details-adoption-wrapper h5 {
    font-weight: 700;
    margin-bottom: 10px;
}
.details-description-wrapper p,
.details-adoption-wrapper p {
    margin: 0;
    line-height: 1.8;
}
.details-table {
    max-width: 700px;
    margin: 0 auto;
    border-collapse: separate;
}
.details-table-title {
    text-align: center;
    font-weight: 700;
}
.details-table tr {
    display: grid;
    grid-template-columns: 90px 1fr 90px 1fr;
    column-gap: 32px;
    row-gap: 10px;
    margin-left: 40px;
}
.details-table th {
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
}
.details-table td {
    text-align: left;
    min-width: 0;
}
.details-image-button {
    width: 100%;
    display: flex;
}
.details-inline-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background-color: #ffffff;
    border-radius: 16px;
    border: none;
    font-weight: bold;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    text-decoration: none;
    color: #000;
    text-align: center;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.details-inline-btn:hover {
    transform: scale(1.05);
    background-color: #ffe27a;
}
.details-table td .value {
    display: inline-block;
    white-space: nowrap;
}
/* Details End */
/* Pets Start */

/* Einheitliche Bildgröße */
.paw-card-img-fixed {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 18px;
}

/* Container für Buttons */
.paw-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

/* Edit Button */
.paw-btn-edit {
    flex: 1;
    background: linear-gradient(135deg, #fff39a, #ffe27a);
    color: #5c4500;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    padding: 10px 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.paw-btn-edit:hover {
    background: linear-gradient(135deg, #ffe27a, #fff39a);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Delete Button */
.paw-btn-delete {
    flex: 1;
    background: linear-gradient(135deg, #ff8a8a, #ff5a5a);
    color: #6b0000;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    padding: 10px 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.paw-btn-delete:hover {
    background: linear-gradient(135deg, #ff5a5a, #ff8a8a);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/*Pets End*/

/* Admin Dashboard Start */
.admin-container {
    margin: 20px auto;
}
.paw-card--admin {
    max-width: 25rem;
}
.paw-card--admin .paw-card-content {
    max-width: 100%;
}
.custom-nav-link {
    color: rgb(0, 129, 175);
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
}
.caret {
    font-size: 0.7rem;
    margin-left: 3px;
}
.add-new-pet-btn {
    background: linear-gradient(135deg, #a8ff78, #78ffd6);
    color: #0b5ed7;
    text-shadow: 0.3px 0.3px 0.5px rgb(15, 0, 90);
    border: none;
    padding: 8px 12px 11px 12px;
    font-size: 20px;
    font-weight: 600;
}
.add-new-pet-btn:hover {
    background: #ffe27a;
    color: #0b5ed7;
}
.operations-btn {
    background: linear-gradient(90deg, #78ffd6, #a8ff78);
    color: #0b5ed7;
    border: none;
    font-weight: bold;
    max-width: 180px;
    width: 100%;
    font-size: 20px;
}
.operations-btn:hover {
    transform: scale(1.05);
    color: #0b5ed7;
    border: none;
}
.admin-operations-btn {
    background: linear-gradient(90deg, #78ffd6, #a8ff78);
    color: #0b5ed7;
    border: none;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    padding: 1rem 3rem;
    font-size: 30px;
}
.admin-operations-btn:hover {
    transform: scale(1.05);
    color: #0b5ed7;
    border: none;
}
.update-btn {
    background: linear-gradient(
        120deg,
        rgb(42, 1, 208),
        rgba(15, 0, 90, 0.714)
    );
    color: white;
    border: none;
}
.update-btn:hover {
    transform: scale(1.05);
    color: white;
    background: linear-gradient(120deg, rgb(42, 1, 208), rgba(15, 0, 90));
}
.delete-btn {
    background-color: rgba(255, 0, 0, 0.736);
    color: white;
}
.delete-btn:hover {
    background-color: red;
    color: white;
    transform: scale(1.05);
}
.dashboard-stats-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(
        135deg,
        rgba(0, 255, 214, 0.85),
        rgba(0, 180, 170, 0.85)
    );
    backdrop-filter: blur(6px);
    padding: 5px 20px;
    border-radius: 16px;
}
.dashboard-stats-wrapper p {
    text-align: center;
    font-size: 18px;
    color: white;
    margin-bottom: 0;
}
.dashboard-stats-wrapper h4 {
    font-size: 15px;
    color: rgb(246, 0, 0);
    text-shadow: 0.3px 0.3px 0.5px rgb(246, 0, 0);
}
.btn-h1-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.admin-dashboard--img {
    max-width: 400px;
    max-height: 400px;
}
.admin-welcome {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
    width: 100%;
}
/* ================= ADMIN HERO (FIXED ONE ROW) ================= */

.admin-hero {
    display: grid;
    grid-template-columns: 290px auto 290px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    gap: 40px;
}

/* LEFT & RIGHT */
.admin-hero-left,
.admin-hero-right {
    display: flex;
    justify-content: center;
    font-size: 20px;
}
.admin-hero-title {
    font-size: 30px; /* 🔧 HIER steuerst du ALLES */
    line-height: 1.2;
    font-weight: 700;
    color: #0b5ed7;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: inline-block;
}

/* EQUAL WIDTH BOXES */
.admin-hero-box {
    width: 320px; /* 🔥 zwingt gleiche Breite */
    max-width: 100%;
    background: linear-gradient(135deg, #a8ff78, #78ffd6);
    padding: 28px 32px;
    border-radius: 18px;
    text-align: center;
    min-height: 130px;
    background: linear-gradient(90deg, #78ffd6, #a8ff78);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* CENTER LOGO */
.admin-hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.admin-dashboard--img {
    max-width: 350px;
    height: auto;
}

/* MOBILE FALLBACK */
@media (max-width: 1100px) {
    .admin-hero {
        grid-template-columns: 1fr;
        row-gap: 24px;
        text-align: center;
    }
    .admin-operations-btn {
        display: flex;
        margin: 0 auto;
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .admin-hero-box {
        width: 100%;
        max-width: 280px;
        padding-top: 35px;
    }

    .admin-dashboard--img {
        max-width: 270px;
    }

    .admin-hero-title {
        font-size: 28px;
    }
    .admin-operations-btn {
        font-size: 20px;
        width: 100%;
    }
}

.admin-hero-box h1 {
    margin: 0;
}

/* Admin Dashboard End */
/* User Dashboard Start */
.dashboard-topbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    padding-top: 80px;
}
.dashboard-topbar h1 {
    justify-self: start;
}
.dashboard-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.dashboard-logo img {
    max-height: 400px;
    filter: drop-shadow(1px 2px 1px rgba(70, 70, 70, 0.5));
}
.dashboard-topbar .operations-btn {
    justify-self: end;
}
.dashboard-welcome-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.dashboard-content {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(90deg, #78ffd6, #a8ff78);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}
.dashboard-title {
    font-size: 48px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0b5ed7;
}
.dashboard-title span {
    color: #2f855a;
}
.dashboard-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}
.user-menu-btn {
    background: linear-gradient(90deg, #78ffd6, #a8ff78);
    color: #0b5ed7;
    border: none;
    font-weight: bold;
    font-size: 48px;
    border-radius: 14px;
    width: 400px;
    margin: 30px 0 65px 0;
}
.user-menu-btn:hover {
    transform: scale(1.05);
    color: #0b5ed7;
    border: none;
}
/* Info Box */
.dashboard-info-box {
    background: #f5faf7;
    border-left: 6px solid #2f855a;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
}

.dashboard-info-box p {
    margin: 0;
    line-height: 1.6;
}
/* User Dashboard End */
/* Footer Start */
footer {
    background-image:
        url("/img/body2.png"),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #78ffd6 22%,
            #78ffd6 40%,
            #a8ff78 52%,
            #a8ff78 74%,
            #bdfb9a 82%,
            #e3fdd3 92%,
            #ffffff 100%
        );
    background-repeat: repeat, no-repeat;
    background-size:
        48px auto,
        100% 100%;
    background-position: center, center;
    background-blend-mode: overlay;
    box-shadow: inset 0 -1px 0 rgba(168, 255, 120, 0.6);
    margin: 0 auto;
    height: auto;
    padding: 1.8rem 10px 0.3rem 10px;
    width: 100%;
}
.social-icons > a > i {
    font-size: 20px;
}
.social-icons > a > i:hover {
    transform: scale(1.05);
    font-size: 25px;
}
.subscribe {
    background-color: white;
    color: #000000;
    width: 180px;
    filter: drop-shadow(0 4px 8px rgba(82, 81, 81, 0.312));
}
.subscribe:hover {
    background-color: green;
    color: rgb(255, 255, 255);
}
.form-control {
    width: 100%;
    text-align: center;
}
.newsletter-sign-up-box {
    max-width: 800px;
    filter: drop-shadow(0 4px 8px rgba(82, 81, 81, 0.312));
    border: none;
}
.copyright {
    text-align: center;
    color: white;
}
.footer-info {
    color: #0b5ed7;
    text-shadow: 0.3px 0.3px 0.5px #0b5ed7;
}
/* Footer End */
@media (max-width: 992px) {
    /* Navbar Start */
    .navbar-logo {
        height: 70px;
        transform: translate(-10px, -10px);
    }
    .custom-navbar {
        max-height: 70px;
    }
    .navbar-toggler {
        transform: translateY(-13px);
    }
    /* Navbar End */
    /* Hero Start */
    .hero-section,
    .hero-section.outro-active {
        height: 95vh;
        min-height: 65vh;
    }
    .hero-outro {
        padding-bottom: 140px;
    }
    .hero-outro-logo {
        width: 240px;
        transform: translateY(10px);
    }
    .hero-outro-subtitle {
        font-size: 1.2rem;
    }
    /* Hero End */
    /* Index Start */
    .paw-card-h1 {
        width: 100%;
    }
    .paw-card-inner {
        padding: 40px 20px;
    }
    .paw-card--index .paw-card-img {
        max-height: 180px;
    }
    /* Index End */
    /* Details Start */
    .paw-card--details {
        padding: 35px;
    }
    /* Details End */
    /* Dashboard Start */
    /* -----USER----- */
    .dashboard-topbar {
        position: static;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 0;
    }

    /* LOGO */
    .dashboard-logo {
        position: static;
        transform: none;
        background: linear-gradient(135deg, #a8ff78, #78ffd6);
        width: 100%;
        border-radius: 14px;
        margin: 10px auto;
        text-align: center;
    }

    .dashboard-logo img {
        max-height: 140px; /* groß, aber kontrolliert */
        margin: 0 auto;
    }

    /* TITLE */
    .dashboard-topbar h1 {
        text-align: center;
        font-size: 1.6rem;
        margin: 0;
    }

    /* MENU BUTTON */
    .dashboard-topbar .operations-btn {
        width: 100%;
        max-width: 280px;
        font-size: 1.2rem;
        padding: 12px 0;
    }

    /* WELCOME BOX */
    .dashboard-content {
        margin: 1.5rem 1rem;
        padding: 1.5rem;
    }

    .dashboard-title {
        font-size: 1.8rem;
    }

    .dashboard-subtitle {
        font-size: 1rem;
    }

    /* USER MENU BUTTON (falls verwendet) */
    .user-menu-btn {
        width: 100%;
        font-size: 1.5rem;
        margin: 0;
    }
    /* Dashboard End */
}
@media (max-width: 768px) {
    /* Navbar Start */
    .navbar-logo {
        transform: translate(-20px, -12px);
    }
    /* Navbar End */
    /* Index Start */
    .paw-card-h1 {
        text-align: center;
    }
    .paw-card-inner {
        padding: 40px 20px;
    }
    /* Index End */
    .details-content {
        grid-template-columns: 1fr;
    }
    /* Details Start */
    .paw-card--details {
        padding: 35px 25px;
    }
    .paw-card--details .paw-card-inner {
        padding: 25px;
    }
    .paw-card--index .paw-card-img {
        max-height: 180px;
    }
    .details-back-button {
        font-size: 15px;
        margin-left: 10px;
    }
    .details-inline-btn {
        font-size: 18px;
        margin-bottom: 20px;
    }
    /* Details End */
    /* Dashboard Start */
    /* ----ADMIN------ */
    .dashboard-stats-wrapper {
        flex-direction: column;
    }
    .dashboard-stats-wrapper p {
        margin-bottom: 10px;
    }
    .dashboard-stat:first-child {
        margin-top: 10px;
    }
    .btn-h1-wrapper {
        flex-direction: column;
    }
    .admin-welcome > .paw-card {
        margin-bottom: 20px;
    }
}
@media (max-width: 320px) {
    /* Navbar Start */
    .navbar-logo {
        width: 80px;
        height: 65px;
    }
    /* Navbar End */
    /* Hero Start */
    .hero-outro-logo {
        width: 190px;
    }
    .hero-outro-subtitle {
        font-size: 15px;
    }
    .hero-outro-subtitle {
        font-size: 0.9rem;
    }
    /* Hero End */
    /* Base Card Start */
    .paw-card-inner {
        padding: 35px 16px;
    }
    /* Base Card End */
    /* Index Start */
    .paw-card-h1 {
        text-align: center;
        font-size: 28px;
    }
    /* Index End */
    /* Details Start */
    .paw-card--details {
        padding: 15px 0;
    }
    .paw-card--index .paw-card-img {
        max-height: 180px;
    }
    .details-inline-btn {
        font-size: 16px;
        padding: 10px 18px;
    }
    .paw-card-content,
    .details-name,
    .details-description-wrapper,
    .details-table {
        max-width: 220px;
        margin: 0 auto;
    }
    .details-name {
        font-size: 24px;
        padding: 10px 22px;
    }
    .details-card-img {
        max-width: 220px;
    }
    .details-table tr {
        grid-template-columns: auto 1fr;
        column-gap: 10px;
    }
    .details-table td {
        min-width: 0;
    }
    .details-table td .value {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
    }
    /* Details End */
}

/* =========================
   Contact Page
   ========================= */

.contact-container {
    min-height: calc(100vh - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 12px;
}

.contact-card {
    max-width: 720px;
    width: 100%;
}

.contact-inner {
    padding: 60px 30px;
}

.contact-head {
    text-align: center;
    margin-bottom: 28px;
}

.contact-title {
    font-family: "Poppins", sans-serif;
    font-size: 54px;
    font-weight: 800;
    color: #0f005a;
    margin-bottom: 6px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-subtitle {
    font-size: 20px;
    color: rgba(15, 0, 90, 0.75);
    margin: 0;
}

.contact-alert {
    border-radius: 14px;
    margin: 0 auto 18px auto;
    max-width: 560px;
}

.contact-form {
    max-width: 560px;
    margin: 0 auto;
}

.contact-input-group .input-group-text {
    border: 2px solid rgba(15, 0, 90, 0.12);
    border-right: none;
    background: #ffffff;
    border-radius: 14px 0 0 14px;
}

.contact-input {
    border: 2px solid rgba(15, 0, 90, 0.12);
    border-left: none;
    border-radius: 0 14px 14px 0;
    padding: 14px 14px;
    font-size: 18px;
}

.contact-textarea {
    border: 2px solid rgba(15, 0, 90, 0.12);
    border-radius: 14px;
    padding: 14px 14px;
    font-size: 18px;
}

.contact-input:focus,
.contact-textarea:focus {
    box-shadow: 0 0 0 0.25rem rgba(11, 94, 215, 0.18);
    border-color: rgba(11, 94, 215, 0.35);
}

.contact-btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 14px;
    background: linear-gradient(120deg, rgb(42, 1, 208), rgba(15, 0, 90, 0.95));
    color: #fff;
    border: none;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
    transition: 0.2s;
}

.contact-btn:hover {
    transform: scale(1.03);
    color: #fff;
}

.contact-bottom {
    text-align: center;
    margin-top: 20px;
    color: rgba(15, 0, 90, 0.8);
    font-size: 18px;
}

.contact-bottom span {
    font-weight: 800;
}

@media (max-width: 576px) {
    .contact-inner {
        padding: 40px 18px;
    }
    .contact-title {
        font-size: 40px;
    }
}
