/* ===================================
   BRAND TOKENS (Schmidhome Design System)
   =================================== */
@import url("./brand/tokens/colors.css");
@import url("./brand/tokens/typography.css");

/* ===================================
   CSS VARIABLES & RESET
   =================================== */
:root {
    --primary-color: var(--brand-primary);
    --primary-dark: var(--color-blue-700);
    --primary-light: var(--brand-primary-on-dark);
    --secondary-color: var(--text-primary);
    --text-color: var(--color-ink-700);
    --text-light: #64748b;
    --text-dark: var(--text-primary);
    --bg-color: #ffffff;
    --bg-alt: var(--surface-canvas);
    --bg-dark: var(--surface-dark);
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

/* Dark Theme Support */
[data-theme="dark"] {
    --bg-color: var(--surface-dark);
    --bg-alt: #1e293b;
    --text-color: #f1f5f9;
    --text-light: #cbd5e1;
    --white: #1e293b;
    --primary-color: var(--brand-primary-on-dark);
    --primary-light: var(--brand-primary-on-dark);
}

/* ===================================
   BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Erzwingt display:none für [hidden], da Klassen wie .btn (display: inline-block)
   oder .user-info (display: flex) das UA-Default sonst überschreiben würden */
[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-brand);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: var(--transition);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 100px 0;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

[data-theme="dark"] .navbar {
    background-color: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    display: block;
    height: 26px;
    width: auto;
}

.logo-img-dark {
    display: none;
}

[data-theme="dark"] .logo-img-light {
    display: none;
}

[data-theme="dark"] .logo-img-dark {
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a {
    color: var(--text-color);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .nav-links a {
    color: var(--text-color);
}

[data-theme="dark"] .nav-links a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.theme-toggle {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Bewusst als letztes Element in .nav-right (nach Login-Bereich und
       Menü-Button) und mit zusätzlichem Abstand, damit es beim Klicken auf
       Login/Logout/Intern nicht im Weg ist */
    margin-left: 0.75rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.theme-toggle svg {
    display: inline-block;
}

.theme-toggle [data-theme-icon="sun"] {
    display: block;
}

.theme-toggle [data-theme-icon="moon"] {
    display: none;
}

[data-theme="dark"] .theme-toggle [data-theme-icon="sun"] {
    display: none;
}

[data-theme="dark"] .theme-toggle [data-theme-icon="moon"] {
    display: block;
}

.auth-area {
    display: flex;
    align-items: center;
}

.auth-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.user-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(15, 23, 42, 0.05) 100%);
    padding-top: 80px;
}

.hero .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: var(--font-brand);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===================================
   INTERNER BEREICH
   =================================== */
.intern-main {
    padding-top: 140px;
}

.intern-content {
    max-width: 800px;
    margin: 0 auto;
}

.intern-placeholder-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.intern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.intern-card {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.intern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background-color: var(--bg-color);
}

[data-theme="dark"] .intern-card {
    background-color: var(--bg-color);
    border-color: rgba(96, 165, 250, 0.2);
}

.intern-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

[data-theme="dark"] .intern-card h3 {
    color: var(--text-color);
}

.intern-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.dashboard-grid {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.widget-card {
    margin-bottom: 2rem;
}

.dashboard-grid .widget-card {
    margin-bottom: 0;
}

.widget-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

[data-theme="dark"] .widget-card h3 {
    color: var(--text-color);
}

.widget-desc {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.widget-frame {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.25);
    height: 520px;
    background: #020617;
}

.widget-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Dashboard nutzt die gesamte Seitenfläche */
.dashboard-page {
    min-height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 24px;
}

.dashboard-page .container {
    max-width: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.dashboard-page .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.dashboard-page .dashboard-grid {
    max-width: none;
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto minmax(0, 1fr);
    grid-template-areas:
        "dwhelper kleinanzeigen"
        "dwhelper vorlesen";
    gap: 1.5rem;
    align-items: stretch;
}

.dashboard-page .widget-dwhelper {
    grid-area: dwhelper;
}

.dashboard-page .widget-kleinanzeigen {
    grid-area: kleinanzeigen;
}

.dashboard-page .widget-vorlesen {
    grid-area: vorlesen;
}

.dashboard-page .widget-card {
    background-color: var(--bg-alt);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

[data-theme="dark"] .dashboard-page .widget-card {
    background-color: var(--bg-color);
    border-color: rgba(96, 165, 250, 0.2);
}

.dashboard-page .widget-desc {
    margin-bottom: 0.75rem;
}

.dashboard-page .widget-frame {
    height: auto;
    flex: 1;
    min-height: 400px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-title {
    font-family: var(--font-brand);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.portfolio-section-title {
    font-family: var(--font-brand);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

[data-theme="dark"] .about-text h3 {
    color: var(--white);
}

.about-title {
    color: var(--text-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: none;
}

[data-theme="dark"] .about-text h3,
[data-theme="dark"] .about-title {
    color: #ffffff !important;
    text-shadow: none !important;
}

.about-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-credits {
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: var(--bg-alt);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

[data-theme="dark"] .about-credits {
    background-color: var(--bg-color);
    border-left: 4px solid var(--primary-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.credits-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
}

[data-theme="dark"] .credits-text {
    color: var(--text-light);
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.portfolio-card {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background-color: var(--bg-color);
}

[data-theme="dark"] .portfolio-card {
    background-color: var(--bg-color);
    border-color: rgba(96, 165, 250, 0.2);
}

.portfolio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.portfolio-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

[data-theme="dark"] .portfolio-card h3 {
    color: var(--text-color);
}

.portfolio-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: var(--bg-alt);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-color);
}

.contact-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .contact-link {
    background-color: var(--bg-color);
    color: var(--text-color);
    border: 2px solid rgba(96, 165, 250, 0.2);
}

[data-theme="dark"] .contact-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-light);
}

.contact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-illustration {
    position: relative;
    width: 200px;
    height: 200px;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

.bubble:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 40px;
    height: 40px;
    bottom: 30px;
    right: 30px;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    bottom: 10px;
    left: 50px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-img {
    height: 24px;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

[data-theme="dark"] .footer-links a {
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
}

[data-theme="dark"] .footer-links a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(37, 99, 235, 0.1);
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-color);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    color: var(--white);
}

[data-theme="dark"] .footer-social a {
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(96, 165, 250, 0.3);
    color: #ffffff;
}

[data-theme="dark"] .footer-social a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===================================
   CONTACT FORM PAGE
   =================================== */
.contact-page {
    padding-top: 140px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-family: var(--font-brand);
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: var(--transition);
    resize: vertical;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    border-color: rgba(96, 165, 250, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group textarea {
    min-height: 150px;
}

.contact-form .btn {
    align-self: flex-start;
}

.form-success {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-alt);
    border-radius: var(--border-radius);
}

.form-success p {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .contact-form .btn {
        width: 100%;
        text-align: center;
    }
}

/* Honeypot field - hidden from humans, visible to bots */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.honeypot-field label {
    display: none;
}

.honeypot-field input {
    tab-index: -1;
    autocomplete: off;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(15, 23, 42, 0.1) 100%);
        border-radius: var(--border-radius);
        z-index: -1;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0.75rem 20px;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .theme-toggle {
        padding: 0.4rem 0.6rem;
    }

    .theme-toggle svg {
        width: 18px;
        height: 18px;
    }

    .auth-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .user-name {
        display: none;
    }

    .menu-toggle {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-page .dashboard-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "dwhelper"
            "vorlesen"
            "kleinanzeigen";
    }

    .dashboard-page {
        min-height: 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .contact-link {
        justify-content: center;
    }

    .about-image {
        max-width: 300px;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 1rem;
}