/* ============================================
   ALAN FRANCIS — PERSONAL WEBSITE
   Dark Data/Tech Theme
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1520;
    --bg-card: #131a2b;
    --bg-card-hover: #182035;
    --surface: #1a2332;
    --border: #1e293b;
    --border-light: #2a3a50;

    --cyan: #00d4ff;
    --cyan-dim: #00d4ff33;
    --cyan-glow: 0 0 20px #00d4ff33, 0 0 60px #00d4ff11;
    --purple: #a855f7;
    --purple-dim: #a855f733;
    --green: #22d3ee;
    --green-dim: #22d3ee33;
    --orange: #f97316;
    --orange-dim: #f9731633;

    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-white: #ffffff;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

strong {
    color: var(--text-white);
    font-weight: 600;
}

/* ---------- BACKGROUND GRID ---------- */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.bg-grid canvas {
    width: 100%;
    height: 100%;
}

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 72px;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 14, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.logo-bracket {
    color: var(--cyan);
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.mobile-link:hover {
    color: var(--cyan);
}

/* ---------- SECTIONS ---------- */
.section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem;
}

.section-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--cyan);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.label-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--cyan);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
}

.text-glow {
    color: var(--cyan);
    text-shadow: 0 0 30px var(--cyan-dim);
}

/* ---------- HERO ---------- */
.hero {
    padding-top: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    padding-left: 5vw;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--cyan);
    padding: 0.4rem 1rem;
    border: 1px solid var(--cyan-dim);
    border-radius: 50px;
    margin-bottom: 2rem;
    background: rgba(0, 212, 255, 0.05);
}

.tag-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--cyan); }
    50% { opacity: 0.5; box-shadow: 0 0 20px var(--cyan), 0 0 40px var(--cyan-dim); }
}

.hero-name {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.chip {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    background: var(--surface);
    transition: var(--transition);
}

.chip:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.05);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--cyan);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: #33dfff;
    box-shadow: 0 0 30px var(--cyan-dim);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

/* Hero Visual — Animated Orb */
.hero-visual {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 5vw;
}

.data-orb {
    position: relative;
    width: 350px;
    height: 350px;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 350px;
    height: 350px;
    border-color: var(--cyan-dim);
    animation: spin-slow 20s linear infinite;
}

.ring-2 {
    width: 260px;
    height: 260px;
    border-color: rgba(168, 85, 247, 0.2);
    animation: spin-slow 15s linear infinite reverse;
}

.ring-3 {
    width: 170px;
    height: 170px;
    border-color: rgba(34, 211, 238, 0.2);
    animation: spin-slow 10s linear infinite;
}

.orb-ring::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 15px var(--cyan);
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.ring-2::before {
    background: var(--purple);
    box-shadow: 0 0 15px var(--purple);
}

.ring-3::before {
    background: var(--green);
    box-shadow: 0 0 15px var(--green);
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    opacity: 0.3;
    animation: pulse-core 3s ease-in-out infinite;
}

@keyframes spin-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse-core {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.15); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* ---------- ABOUT ---------- */
#about {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    filter: grayscale(20%) contrast(1.05);
    transition: var(--transition);
}

.about-image:hover {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.02);
}

.image-border-accent {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--cyan-dim), transparent, var(--purple-dim)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cyan);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

.about-text-col {
    padding-top: 1rem;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-text.muted {
    color: var(--text-muted);
    font-style: italic;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: var(--transition);
}

.highlight:hover {
    border-color: var(--cyan-dim);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--cyan);
    margin-top: 2px;
}

.highlight strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.highlight p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---------- EXPERTISE ---------- */
#expertise {
    background: var(--bg-secondary);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.expertise-card {
    position: relative;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan);
    opacity: 0;
    transition: var(--transition);
}

.expertise-card[data-accent="cyan"]::before { background: var(--cyan); }
.expertise-card[data-accent="purple"]::before { background: var(--purple); }
.expertise-card[data-accent="green"]::before { background: var(--green); }
.expertise-card[data-accent="orange"]::before { background: var(--orange); }

.expertise-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.expertise-card:hover::before {
    opacity: 1;
}

.card-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.expertise-card[data-accent="cyan"] .card-icon {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
}
.expertise-card[data-accent="purple"] .card-icon {
    background: rgba(168, 85, 247, 0.1);
    color: var(--purple);
}
.expertise-card[data-accent="green"] .card-icon {
    background: rgba(34, 211, 238, 0.1);
    color: var(--green);
}
.expertise-card[data-accent="orange"] .card-icon {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

.expertise-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.8rem;
}

.expertise-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-tags span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.expertise-card:hover .card-tags span {
    border-color: var(--border-light);
    color: var(--text-secondary);
}

/* ---------- TOOLKIT ---------- */
#toolkit {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.toolkit-category {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.toolkit-category:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.toolkit-heading {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.toolkit-icon {
    width: 20px;
    height: 20px;
    color: var(--cyan);
}

.toolkit-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.toolkit-item {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    background: var(--surface);
    color: var(--text-secondary);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.toolkit-item:hover {
    border-color: var(--cyan-dim);
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.05);
}

/* ---------- PORTFOLIO ---------- */
#portfolio {
    background: var(--bg-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.portfolio-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
}

.portfolio-card:hover {
    border-color: var(--cyan-dim);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text-secondary);
    transition: var(--transition);
}

.portfolio-icon svg {
    width: 24px;
    height: 24px;
}

.portfolio-card:hover .portfolio-icon {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
}

.portfolio-info {
    flex: 1;
}

.portfolio-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.portfolio-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-arrow {
    color: var(--cyan);
    transform: translate(3px, -3px);
}

/* ---------- CONTACT ---------- */
#contact {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #060a12 100%);
    text-align: center;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.contact-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

.contact-btn svg {
    width: 18px;
    height: 18px;
}

.contact-footer {
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    width: 100%;
    max-width: 600px;
}

.contact-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- SECTION FADE-IN ANIMATIONS ---------- */
.section-container,
.hero-content,
.hero-visual {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content {
    animation-delay: 0.2s;
}

.hero-visual {
    animation-delay: 0.5s;
}

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

/* Intersection Observer driven — activated by JS */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        padding-right: 0;
    }

    .hero-chips {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .data-orb {
        width: 250px;
        height: 250px;
    }

    .ring-1 { width: 250px; height: 250px; }
    .ring-2 { width: 190px; height: 190px; }
    .ring-3 { width: 130px; height: 130px; }
}

@media (max-width: 768px) {
    .section {
        padding: 6rem 1.5rem;
    }

    .nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-name {
        font-size: 3rem;
    }

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

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

    .scroll-indicator {
        display: none;
    }

    .about-stats {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    .expertise-card {
        padding: 1.5rem;
    }
}
