/* R-Hub Public Pages - Landing Styles */
/* Animated gradient background, floating shapes, and content animations */

/* Animated gradient background */
.landing-hero {
    position: relative;
    min-height: calc(100vh - 120px);
}

.landing-hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        -45deg,
        #0d1b2a,
        #1b263b,
        #415a77,
        #778da9,
        #1b263b
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Light mode - softer gradient */
[data-coreui-theme="light"] .landing-hero::before {
    background: linear-gradient(
        -45deg,
        #e8f4f8,
        #d1e9f0,
        #b8d4e3,
        #9fc5d8,
        #d1e9f0
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Floating shapes decoration */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    animation: float 20s infinite ease-in-out;
}

[data-coreui-theme="light"] .shape {
    background: rgba(0, 0, 0, 0.02);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(20px) rotate(-5deg); }
}

/* Fade-in animation for content sections */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered fade for feature cards */
.feature-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.5s; }
.feature-card:nth-child(3) { animation-delay: 0.7s; }
.feature-card:nth-child(4) { animation-delay: 0.9s; }

/* Card hover effects - glassmorphism */
.feature-card .card,
.glass-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.feature-card .card:hover,
.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Ensure card bodies maintain rounded corners */
.glass-card .card-body {
    border-radius: inherit;
}

[data-coreui-theme="light"] .feature-card .card,
[data-coreui-theme="light"] .glass-card,
[data-coreui-theme="light"] .card.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6)) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

[data-coreui-theme="light"] .feature-card .card:hover,
[data-coreui-theme="light"] .glass-card:hover,
[data-coreui-theme="light"] .card.glass-card:hover {
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
}

/* ===== NEW HERO SECTION STYLES ===== */

/* Full viewport hero container */
.hero-fullscreen {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section {
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

/* Glass divider between sections */
.section-glass-divider {
    height: 1px;
    margin: 0 auto 3rem;
    max-width: 600px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 80%,
        transparent
    );
    position: relative;
}

.section-glass-divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 80%,
        transparent
    );
    filter: blur(2px);
}

[data-coreui-theme="light"] .section-glass-divider {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.08) 20%,
        rgba(0, 0, 0, 0.12) 50%,
        rgba(0, 0, 0, 0.08) 80%,
        transparent
    );
}

[data-coreui-theme="light"] .section-glass-divider::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.03) 20%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.03) 80%,
        transparent
    );
}

/* Decorative accent line */
.hero-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #d946ef);
    margin: 0 auto 2rem;
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.3s both;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

/* Hero name container */
.hero-name {
    margin-bottom: 1.5rem;
}

.hero-greeting {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

[data-coreui-theme="light"] .hero-greeting {
    color: rgba(0, 0, 0, 0.6);
}

/* Gradient name text */
.hero-title-gradient {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 200%;
}

[data-coreui-theme="light"] .hero-title-gradient {
    background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Tagline with dividers */
.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tagline-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeSlideIn 0.6s ease forwards;
}

.tagline-item:nth-child(1) { animation-delay: 0.5s; }
.tagline-item:nth-child(3) { animation-delay: 0.7s; }
.tagline-item:nth-child(5) { animation-delay: 0.9s; }
.tagline-item:nth-child(7) { animation-delay: 1.1s; }

[data-coreui-theme="light"] .tagline-item {
    color: rgba(0, 0, 0, 0.8);
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline-divider {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    opacity: 0;
    animation: popIn 0.4s ease forwards;
}

.tagline-divider:nth-child(2) { animation-delay: 0.6s; }
.tagline-divider:nth-child(4) { animation-delay: 0.8s; }
.tagline-divider:nth-child(6) { animation-delay: 1.0s; }

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero description */
.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

[data-coreui-theme="light"] .hero-description {
    color: rgba(0, 0, 0, 0.7);
}

/* Apply hero-description style to all paragraph text in landing/about pages */
/* Excludes .quote-text which has its own special styling */
.landing-hero p:not(.quote-text),
.landing-hero .lead,
.landing-hero .card-text,
.landing-hero .lead-paragraph,
.landing-hero .philosophy-desc,
.landing-hero li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

[data-coreui-theme="light"] .landing-hero p:not(.quote-text),
[data-coreui-theme="light"] .landing-hero .lead,
[data-coreui-theme="light"] .landing-hero .card-text,
[data-coreui-theme="light"] .landing-hero .lead-paragraph,
[data-coreui-theme="light"] .landing-hero .philosophy-desc,
[data-coreui-theme="light"] .landing-hero li {
    color: rgba(0, 0, 0, 0.7);
}

/* Preserve text-highlight styling within paragraphs */
.landing-hero .text-highlight {
    color: #a5b4fc;
    font-weight: 600;
}

[data-coreui-theme="light"] .landing-hero .text-highlight {
    color: #6366f1;
}

.text-highlight {
    color: #a5b4fc;
    font-weight: 600;
}

[data-coreui-theme="light"] .text-highlight {
    color: #6366f1;
}

/* Hero CTA Button */
.hero-cta {
    margin-top: 1rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
    color: #ffffff;
}

.btn-hero:hover::before {
    left: 100%;
}

/* ===== Reusable shine/sweep hover effect ===== */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.shine-effect:hover::before {
    left: 100%;
}

/* Shine effect for images (favicon) - needs wrapper approach */
.shine-icon-wrapper {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    border-radius: 6px;
}

.shine-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.shine-icon-wrapper:hover::before {
    left: 100%;
}

.btn-hero svg {
    transition: transform 0.3s ease;
}

.btn-hero:hover svg {
    transform: translateX(5px);
}

[data-coreui-theme="light"] .btn-hero {
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

[data-coreui-theme="light"] .btn-hero:hover {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

/* ===== END NEW HERO STYLES ===== */

/* ===== Demo CTA Card ===== */
.demo-cta-card {
    padding: 2rem;
    border-radius: 1rem;
}

/* Ensure demo CTA card has glass effect in light theme */
[data-coreui-theme="light"] .demo-cta-card.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.demo-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.demo-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
    color: #f59e0b;
    flex-shrink: 0;
}

/* Green "live" variant for demo icon */
.demo-cta-icon-live {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(34, 197, 94, 0.1));
    color: #22c55e;
    position: relative;
    animation: live-pulse 2s ease-in-out infinite;
}

.demo-cta-icon-live::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: live-dot 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
    50% {
        box-shadow: 0 0 20px 2px rgba(34, 197, 94, 0.15);
    }
}

@keyframes live-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

.demo-cta-text {
    flex: 1;
    min-width: 200px;
}

.demo-cta-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
}

[data-coreui-theme="light"] .demo-cta-text h4 {
    color: rgba(0, 0, 0, 0.9);
}

.demo-cta-text p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

[data-coreui-theme="light"] .demo-cta-text p {
    color: rgba(0, 0, 0, 0.6);
}

.demo-cta-btn {
    flex-shrink: 0;
}

/* ===== Social CTA Cards (between hero and RAE section) ===== */
.social-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .social-cta-grid { grid-template-columns: 1fr; }
}

.social-cta-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--cui-body-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-cta-card:hover {
    transform: translateY(-4px);
    color: var(--cui-body-color);
    text-decoration: none;
}

.social-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.social-cta-card:hover .social-cta-icon {
    transform: scale(1.08);
}

.social-cta-icon-youtube {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ff4444;
}

.social-cta-icon-github {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #8b5cf6;
}

[data-coreui-theme="light"] .social-cta-icon-youtube,
[data-coreui-theme="light"] .social-cta-icon-github {
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.social-cta-label {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.social-cta-handle {
    font-size: 0.75rem;
    opacity: 0.55;
}

.social-cta-arrow {
    opacity: 0.35;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-cta-card:hover .social-cta-arrow {
    transform: translateX(4px);
    opacity: 0.75;
}

@media (max-width: 640px) {
    .demo-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .demo-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== END Demo CTA ===== */

/* ===== RAE Identity Card (logo + description split) ===== */
.rae-identity-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .rae-identity-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

.rae-identity-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rae-logo-glow {
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    animation: rae-logo-float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.3));
}

.rae-logo-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 60%,
        transparent 100%
    );
    transition: left 0.4s ease;
    pointer-events: none;
}

.rae-logo-glow:hover::after {
    left: 100%;
}

.rae-logo-img {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    display: block;
}

@media (max-width: 768px) {
    .rae-logo-img {
        width: 120px;
        height: 120px;
    }
}

@keyframes rae-logo-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.rae-identity-text {
    flex: 1;
    text-align: center;
}

[data-coreui-theme="light"] .rae-logo-glow {
    filter: drop-shadow(0 0 16px rgba(34, 197, 94, 0.2));
}
/* ===== END RAE Identity Card ===== */

/* Legacy hero text styling (keep for compatibility) */
.hero-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

[data-coreui-theme="light"] .hero-title {
    text-shadow: none;
}

/* Button enhancements for landing pages */
.landing-hero .btn-primary {
    box-shadow: 0 4px 15px rgba(50, 31, 219, 0.4);
    transition: all 0.3s ease;
}

.landing-hero .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(50, 31, 219, 0.6);
    transform: translateY(-2px);
}

.landing-hero .btn-outline-secondary {
    transition: all 0.3s ease;
}

.landing-hero .btn-outline-secondary:hover {
    transform: translateY(-2px);
}

/* Alert styling with glassmorphism */
.landing-hero .alert-info {
    background: rgba(13, 202, 240, 0.15);
    border: 1px solid rgba(13, 202, 240, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-coreui-theme="light"] .landing-hero .alert-info {
    background: rgba(13, 202, 240, 0.2);
    border: 1px solid rgba(13, 202, 240, 0.4);
}

/* Auth card (login/register) specific styling */
.auth-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

[data-coreui-theme="light"] .auth-card,
[data-coreui-theme="light"] .card.auth-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

/* Form inputs on glass backgrounds */
.landing-hero .form-control,
.landing-hero .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: inherit;
}

.landing-hero .form-control:focus,
.landing-hero .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(50, 31, 219, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(50, 31, 219, 0.25);
}

[data-coreui-theme="light"] .landing-hero .form-control,
[data-coreui-theme="light"] .landing-hero .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for hero and auth pages */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0 2rem;
    }

    .hero-greeting {
        font-size: 1rem;
    }

    .hero-tagline {
        gap: 0.75rem;
    }

    .tagline-item {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .auth-card {
        margin: 0 0.5rem;
    }

    .auth-card .card-body {
        padding: 1rem !important;
    }

    .auth-card h1 {
        font-size: 1.75rem;
    }

    .landing-hero {
        padding-top: 60px !important;
    }

    /* Ensure form inputs are touch-friendly on mobile */
    .landing-hero .form-control,
    .landing-hero .input-group-text {
        min-height: 44px;
    }

    /* Stack buttons on mobile */
    .auth-card .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .auth-card .btn-link {
        text-align: center;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
    .auth-card {
        margin: 0 1rem;
    }
}

/* Light mode navbar adjustment for auth pages */
[data-coreui-theme="light"] .navbar.fixed-top {
    background: rgba(255, 255, 255, 0.8) !important;
}

