/* 
  Department of Local Government - Uva Province
  Premium Design System
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&family=Yaldevi:wght@400;600;700&display=swap');

:root {
    /* ---- New Brand Palette ---- */
    --primary: #1D2D5F;
    /* Deep Navy */
    --primary-light: #2a3f7a;
    --primary-dark: #131e42;

    --secondary: #FFBC47;
    /* Amber */
    --secondary-light: #ffd07a;
    --secondary-dark: #d99a1f;

    --accent-red: #F65E5D;
    /* Coral */
    --accent-cyan: #40CEE3;
    /* Sky Cyan */
    --accent: #40CEE3;
    /* alias */

    /* Neutral Colors */
    --white: #ffffff;
    --light: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-600: #868e96;
    --gray-800: #343a40;
    --dark: #1a1a1a;

    /* Semantic Colors */
    --success: #2ecc71;
    --warning: #f1c40f;
    --danger: #F65E5D;
    --info: #40CEE3;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(12px);

    /* Layered Shadows - For true depth */
    --shadow-sm: 0 2px 4px rgba(29, 45, 95, 0.04);
    --shadow-md: 0 4px 20px -5px rgba(29, 45, 95, 0.1), 0 8px 15px -5px rgba(29, 45, 95, 0.05);
    --shadow-lg: 0 10px 30px -5px rgba(29, 45, 95, 0.15), 0 15px 25px -10px rgba(29, 45, 95, 0.1);
    --shadow-xl: 0 20px 50px -10px rgba(29, 45, 95, 0.2), 0 25px 35px -15px rgba(29, 45, 95, 0.15);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions - Smoother Cubic Bezier */
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mb-5 {
    margin-bottom: 48px;
}

/* Premium Textures & Effects */
.bg-dot-pattern {
    background-image: radial-gradient(var(--primary-dark) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.03;
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.letter-spacing-tight {
    letter-spacing: -0.02em;
}

.letter-spacing-wide {
    letter-spacing: 0.05em;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    gap: 10px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--primary-dark);
    border: none;
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header & Navigation */
/* Main Header Structure */
.main-header {
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 5px 0;
    font-size: 0.72rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-center,
.top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-switcher {
    display: flex;
    gap: 12px;
}

.lang-link {
    color: var(--white);
    opacity: 0.7;
    font-weight: 500;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.lang-link:last-child {
    border-right: none;
}

.lang-link:hover,
.lang-link.active {
    opacity: 1;
    color: var(--secondary);
}

.contact-info {
    display: flex;
    gap: 14px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.login-link {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.72rem;
}

.login-link:hover {
    background: var(--secondary);
    color: var(--primary-dark);
}

/* Portal trigger button in top bar */
.user-portal-trigger {
    display: flex;
    align-items: center;
}

.portal-btn {
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(64, 206, 227, 0.2);
    border: 1px solid rgba(64, 206, 227, 0.4);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portal-btn:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark);
}

.portal-btn span {
    display: inline;
}

/* Identity Bar */
.identity-bar {
    background: var(--white);
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-200);
}

.logo-link-full {
    display: flex;
    align-items: center;
    gap: 25px;
}

.site-emblem {
    height: 64px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-si {
    font-family: 'Yaldevi', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.logo-ta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-light);
    opacity: 0.75;
    line-height: 1.3;
}

.logo-en {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1.3;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--secondary-dark) 0%, var(--secondary) 50%, var(--secondary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Bar */
.navbar {
    background: var(--primary);
    color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 13px 16px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 188, 71, 0.15);
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 5px;
    opacity: 0.7;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hamburger — hidden on desktop, shown only on mobile */
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.menu-toggle:hover,
.menu-toggle.active {
    background: rgba(255, 188, 71, 0.25);
    color: var(--secondary);
}

.contact-header-btn {
    background: var(--accent-red) !important;
    color: var(--white) !important;
    padding: 7px 16px !important;
    font-size: 0.76rem !important;
    border-radius: var(--radius-sm) !important;
    letter-spacing: 0.3px;
}

.contact-header-btn:hover {
    background: var(--secondary) !important;
    color: var(--primary-dark) !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 10px 0;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    display: block;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 25px;
}

/* Hero Section */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 45, 95, 0.85) 0%, rgba(19, 30, 66, 0.95) 100%), url('../images/uva-landscape.jpg') no-repeat center center/cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Cards & Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-cyan));
    border-radius: var(--radius-full);
}

.section-subtitle {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 60px;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-red);
}

.card-body {
    padding: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Authorities Map Placeholder */
.map-container {
    height: 500px;
    background: var(--gray-200);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-weight: 600;
}

/* News Cards */
.news-card {
    display: flex;
    flex-direction: column;
}

.news-img {
    height: 240px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-desc {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE SYSTEM
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small mobile)
═══════════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Hero */
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Section title */
    .section-title {
        font-size: 2rem;
    }

    /* Identity bar: tighten gap */
    .logo-link-full {
        gap: 16px;
    }

    .site-emblem {
        height: 52px;
    }

    .logo-en {
        font-size: 0.9rem;
    }

    .logo-si {
        font-size: 0.8rem;
    }

    .logo-ta {
        font-size: 0.72rem;
    }

    /* Top bar: hide address, keep phone + social */
    .contact-info span:nth-child(3) {
        display: none;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {

    /* ── Container ── */
    .container {
        padding: 0 16px;
    }

    /* ── Top bar: hide on mobile to save space ── */
    .top-bar {
        display: none;
    }

    /* ── Identity bar: stack logo ── */
    .identity-bar {
        padding: 12px 0;
    }

    .logo-link-full {
        gap: 12px;
    }

    .site-emblem {
        height: 42px;
    }

    .logo-en {
        font-size: 0.75rem;
        letter-spacing: 0;
    }

    .logo-si {
        font-size: 0.7rem;
    }

    .logo-ta {
        font-size: 0.65rem;
    }

    /* ── Navbar ── */
    .navbar {
        position: sticky;
        top: 0;
    }

    /* Hide menu by default on mobile */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: 8px 0 16px;
        box-shadow: var(--shadow-lg);
        z-index: 9999;
        max-height: 80vh;
        overflow-y: auto;
    }

    /* Show menu when toggled */
    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 12px 20px;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    }

    /* Mobile dropdowns: always show, not hover */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.05);
        padding: 0;
        min-width: 100%;
        display: none;
    }

    .nav-item.open .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.75);
        padding: 10px 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.82rem;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }


    /* Nav actions: compact gap on mobile */
    .nav-actions {
        gap: 6px;
    }

    /* Show hamburger on mobile only */
    .menu-toggle {
        display: flex;
    }

    /* ── Hero ── */
    .hero {
        height: auto;
        min-height: 70vh;
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero .btn {
        width: 100%;
        justify-content: center;
    }

    /* ── Hero Small (inner pages) ── */
    .hero-small {
        padding: 50px 0;
    }

    .hero-small h1 {
        font-size: 1.8rem !important;
    }

    /* ── Section spacing ── */
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        margin-bottom: 36px;
        font-size: 0.95rem;
    }

    /* ── Grids → single column ── */
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* ── News cards ── */
    .news-img {
        height: 200px;
    }

    /* ── Cards ── */
    .card-body {
        padding: 20px;
    }

    .card:hover {
        transform: none;
    }

    /* disable hover lift on touch */

    /* ── Buttons ── */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* ── Downloads table: horizontal scroll ── */
    .card table,
    section table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        width: 100%;
    }

    /* Make download button smaller on mobile */
    section table td:last-child .btn {
        padding: 6px 14px !important;
        font-size: 0.78rem !important;
    }

    /* ── Downloads search bar ── */
    section form[action="downloads.php"] {
        flex-direction: column;
    }

    section form[action="downloads.php"] input[type="text"] {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    }

    section form[action="downloads.php"] button[type="submit"] {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
        padding: 12px !important;
    }

    /* ── Gallery: 1 column ── */
    #galleryGrid {
        columns: 1 !important;
    }

    /* ── Filter tabs: wrap ── */
    div[style*="display: inline-flex"],
    div[style*="display:inline-flex"] {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* ── Footer ── */
    footer {
        padding-top: 48px;
    }

    .footer-grid {
        gap: 24px;
        margin-bottom: 36px;
    }

    .footer-heading {
        margin-bottom: 16px;
    }

    .footer-bottom {
        padding: 20px 0;
    }
}

/* ── Small Mobile ── */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-small h1 {
        font-size: 1.5rem !important;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .site-emblem {
        height: 36px;
    }

    .logo-en {
        font-size: 0.65rem;
    }

    .logo-si,
    .logo-ta {
        display: none;
    }

    /* too cramped on 320px */

    /* Nav actions: only show icon on portal btn */
    .nav-actions .btn[href="portal.php"] span,
    .nav-actions a[href="portal.php"] {
        font-size: 0;
        padding: 7px 10px !important;
    }

    .nav-actions .btn[href="portal.php"] i,
    .nav-actions a[href="portal.php"] i {
        font-size: 0.9rem;
        margin: 0;
    }

    /* Stack hero buttons vertically */
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn {
        width: 100%;
    }

    /* Gallery: still 1 col */
    #galleryGrid {
        columns: 1 !important;
    }

    /* Section padding tight */
    .section-padding {
        padding: 44px 0;
    }

    .hero-small {
        padding: 36px 0;
    }
}


/* Animations (Animate on Scroll classes) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s all ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Accent Utility Classes */
.text-coral {
    color: var(--accent-red);
}

.text-cyan {
    color: var(--accent-cyan);
}

.text-amber {
    color: var(--secondary);
}

.bg-coral {
    background-color: var(--accent-red);
}

.bg-cyan {
    background-color: var(--accent-cyan);
}

.bg-amber {
    background-color: var(--secondary);
}

.badge-coral {
    background: var(--accent-red);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-cyan {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-amber {
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Page hero banner (inner pages) */
.hero-small {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-small .hero-bg {
    background-image: none;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-cyan) 100%);
    opacity: 0.12;
}

/* Accent top border for cards */
.card-accent-top {
    border-top: 4px solid var(--accent-red);
}

/* Cyan highlight strip */
.strip-cyan {
    background: var(--accent-cyan);
    height: 4px;
    width: 60px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

/* --- Animations --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes slowZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.25); }
}
