@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

:root {
    --accent: #c2413c;
    --accent-dark: #9f2f2b;
    --accent-soft: #fdecea;
    --navbar-height: 56px;
}

* {
    box-sizing: border-box;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: #f5f7fb;
    color: #1f2933;
    text-align: center;
    padding-top: var(--navbar-height);
}

body.cart-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

html.cart-open {
    overflow-y: scroll;
}

body.cart-hover {
    overflow: hidden;
}

h1, h2, h3 {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #0b1320;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #000;
}

a:hover,
a:focus {
    color: var(--accent);
}

img {padding-top:10px;}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.is-hidden {
    display: none !important;
}

.info-banner {
    margin: 16px auto;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
}



.navbar {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    padding: 14px 32px;
    min-height: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1600;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.navbar a {
    text-decoration: none;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    align-items: center;
}


.nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background: #f8fafc;
    letter-spacing: 0.01em;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

button.nav-item {
    cursor: pointer;
    background: #f8fafc;
}

.nav-item:hover,
.nav-item:focus {
    color: #0f172a;
    background: #e2e8f0;
    border-color: #cbd5e1;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
    transform: translateY(-1px);
    text-decoration: none;
}

.nav-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(15, 23, 42, 0.04);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nav-item:hover::after,
.nav-item:focus::after {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .nav-item {
        transition: none;
    }

    .nav-item::after {
        transition: none;
    }
}

.nav-button {
    margin-left: 8px;
    gap: 10px;
}

.contact-button {
    width: fit-content;
    gap: 10px;
    font-weight: 700;
}

.contact-button i {
    color: #0f172a;
}

.menu-icon {
    display: none;
    font-size: 24px;
    color: #0f172a;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1701;
}

@media (max-width: 600px) {
    .navbar {
        padding: 12px 16px;
    }
    .menu-icon {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 8px;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 12px 16px 16px;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links .nav-item {
        width: 100%;
    }
    .nav-item {
        justify-content: center;
        padding: 8px 12px;
    }
}

.banner {
    width: 100%;
    height: 190px;
    background: url('banner.png') no-repeat center center;
    background-size: cover;
    cursor: default;
}

.navbar + .banner {
    margin-top: 0;
}

.parts-page {
    background: linear-gradient(180deg, #fdfefe 0%, #f5f7fb 100%);
    color: #0b1320;
    padding-top: 56px;
}

#searchBar {
    width: 80%;
    padding: 10px;
    margin: 20px 0;
}

#clearSearch, #Dice, #NZ, #Jazz, #Unlisted, #ShowFavs, #toggleCategories {
    padding: 8px 15px;
    margin-left: 5px;
    font-size: 16px;
    cursor: pointer;
    color:#000 !important;
}

#clearSearch {
    padding: 10px 18px;
    font-size: 18px;
}

.cart-widget {
    position: fixed;
    bottom: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    height: auto;
    max-height: calc(100vh - 32px);
    z-index: 2000;
}
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(1px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1700;
    pointer-events: none;
}

body.cart-open .cart-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.cart-widget.is-open {
    justify-content: center;
}

.cart-widget.is-open .cart-toggle {
    display: none;
}

.cart-toggle {
    gap: 10px;
    padding: 10px 16px;
    min-width: 124px;
    height: 54px;
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.cart-count-badge {
    background: var(--accent-dark);
    color: #ffffff;
    border-radius: 12px;
    padding: 6px 10px;
    font-weight: 800;
    font-size: 13px;
    min-width: 32px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-panel {
    display: none;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e4e9f4;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.26);
    width: min(640px, calc(100vw - 48px));
    max-height: calc(100vh - 150px);
    overflow: hidden;
    overscroll-behavior: contain;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
}

.cart-panel.is-open {
    display: flex;
}

.cart-item-row.just-added {
    animation: cartItemPop 0.5s ease;
    border-color: var(--accent);
    background: #fff7f6;
}

.fly-to-cart {
    position: fixed;
    z-index: 3000;
    pointer-events: none;
    border-radius: 16px;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.2);
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0.95;
}

.cart-item-row.just-added .cart-line-total {
    color: var(--accent-dark);
}

.cart-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(100vh - 260px);
    overflow-y: auto;
    padding-right: 8px;
}

.cart-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: sticky;
    top: 0;
    background: #ffffff;
    padding: 6px 0;
}

.cart-close {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0f172a;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.16);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.cart-close:hover,
.cart-close:focus-visible {
    transform: translateY(-3px) scale(1.02);
    background: #f8fafc;
    border-color: #d2d8e3;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 2px 0 8px;
    overscroll-behavior: contain;
    flex: 1 1 auto;
    min-height: 180px;
    overflow-y: auto;
    padding-right: 6px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
}

.cart-item-title {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    gap: 6px;
    font-size: 1.05rem;
    flex: 1 1 auto;
}

.cart-item-code {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cart-qty {
    width: 68px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #dfe5f2;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.cart-remove {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b91c1c;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    cursor: pointer;
}

.cart-remove i {
    pointer-events: none;
}

.cart-remove:hover,
.cart-remove:focus-visible {
    border-color: #fca5a5;
    background: #fff1f2;
    box-shadow: 0 12px 22px rgba(244, 63, 94, 0.2);
    transform: translateY(-1px);
}

.cart-line-total {
    font-weight: 800;
    font-size: 1.05rem;
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    border-top: 1px solid #e5e7eb;
    font-weight: 800;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #dfe5f2;
    background: #fff;
}

.checkout-status {
    margin-top: 6px;
    font-weight: 700;
}

.checkout-status.error {
    color: #b91c1c;
}

.checkout-status.success {
    color: #15803d;
}

.form-helper {
    color: #4b5563;
    font-size: 0.95rem;
}

.cart-panel .nav-item {
    width: 100%;
    justify-content: center;
}

.cart-remove {
    padding: 6px 10px;
}

@media (max-width: 768px) {
    .cart-widget {
        position: fixed;
        bottom: 12px;
        left: 12px;
        right: 12px;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        gap: 12px;
        height: auto;
        max-height: none;
    }

    .cart-panel {
        position: fixed;
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100vh;
        border-radius: 0;
        box-shadow: none;
        padding: 18px 16px 24px;
        overflow-y: auto;
        z-index: 2000;
    }

    .cart-toggle {
        width: 100%;
        max-width: 260px;
        height: 56px;
    }

    .cart-items {
        max-height: none;
        flex: 1;
        min-height: 240px;
    }

    .cart-body {
        max-height: none;
        overflow: visible;
    }
}

.songs-v2-link {
    text-align: center;
    margin: 10px 0 20px;
}

.hero-button {
    margin-left: 8px;
    font-weight: 800;
    gap: 8px;
    display: inline-flex;
}

.songs-v2-link a {
    display: inline-flex;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.songs-container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.parts-search {
    max-width: 960px;
    margin: 12px auto 24px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e4e9f4;
    border-radius: 16px;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.parts-page #searchBar {
    flex: 1;
    min-width: 260px;
    max-width: 100%;
    border: 1px solid #dfe5f2;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    padding: 12px 46px 12px 14px;
    margin: 0;
    width: 100%;
}

.search-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.search-input {
    position: relative;
    min-width: 260px;
    width: 80%;
    max-width: 760px;
}

.search-input .pill-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: none;
}

.search-input #clearSearch {
    margin-left: 0;
}

.search-input .pill-btn:hover,
.search-input .pill-btn:focus {
    transform: translateY(-50%);
    box-shadow: none;
}

.search-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pill-btn {
    border: 1px solid #dfe5f2;
    background: #ffffff !important;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 700;
    color: #0b1320 !important;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pill-btn:hover,
.pill-btn:focus {
    background: #ffffff !important;
    color: #0b1320 !important;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
}

.pill-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

#categoryButtons {
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
}

#categoryList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

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

@media (max-width: 640px) {
    #categoryList {
        grid-template-columns: 1fr;
    }
}

.chip-btn {
    border: 1px solid #e1e7f3;
    background: #ffffff !important;
    color: #0f172a !important;
    border-radius: 999px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.chip-btn:hover,
.chip-btn:focus {
    background: #ffffff !important;
    color: #0f172a !important;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.12);
}

.card {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    padding: 20px;
    margin: 5px;
    width: 220px;
    height: 260px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.15);
}

.card.random-highlight {
    outline: 3px solid var(--accent);
    box-shadow: 0 28px 60px rgba(194, 65, 60, 0.35);
}

.card img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 18px;
}

.event-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.event {
        border-radius: 16px;
        padding: 24px;
        width:400px;
        margin: 10px;
        text-align: left;
        background: #ffffff;
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 55px rgba(15, 23, 42, 0.15);
}

#noResults {
    display: none;
    font-size: 18px;
    color: #ababab;
    margin-top: 20px;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    color: #0b0b0b;
    padding: 10px 16px;
    border: none;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    font-size: 18px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, color 0.25s ease, background 0.25s ease;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

#backToTop i {
    color: inherit;
    background: transparent;
    border-radius: 50%;
    padding: 6px;
    transition: color 0.25s ease, background 0.25s ease;
}

#backToTop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    animation: backToTopPulse 2.4s ease-in-out infinite;
}

#backToTop:hover,
#backToTop:focus {
    background: #f1f5f9;
    color: #0b0b0b;
    border-color: #cbd5e1;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.35);
}

#backToTop:hover i,
#backToTop:focus i {
    background: transparent;
    color: inherit;
}

@keyframes backToTopPulse {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.3);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 22px 32px rgba(15, 23, 42, 0.38);
    }
}

@keyframes cartItemPop {
    0% {
        transform: translateY(4px);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-text {
    text-align: left;
}

.hero-text p {
    max-width: 520px;
}

.hero-text .link {
    font-weight: 600;
}

.hero-slideshow {
    position: relative;
    width: 440px;
    height: 440px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
}

.hero-slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slideshow img.active {
    opacity: 1;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        padding: 40px 20px 60px;
    }

    .hero-slideshow {
        width: 100%;
        max-width: 500px;
        height: 360px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* Scroll Bar Styles */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: white;
}

::-webkit-scrollbar-thumb {
    background: #ababab;
}

::-webkit-scrollbar-thumb:hover {
    background: #ababab;
}

/* Link Styles */
a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: #333;
}

a.link-nochange,
a.link-nochange:hover {
    font-weight: 500;
    text-decoration: none;
    color: #000;
}

.library-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5% 80px;
}

.library-content {
    flex: 1;
    text-align: left;
    max-width: 780px;
    width: 100%;
}

.library-content section {
    margin-bottom: 48px;
}

.library-content section:last-of-type {
    margin-bottom: 0;
}

.library-section {
    scroll-margin-top: 120px;
    padding-top: 32px;
}

.library-content .section-body {
    margin-top: 16px;
    display: grid;
    gap: 1rem;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button:hover,
.primary-button:focus {
    background: #f8fafc;
    color: #0f172a;
    transform: translateY(-1px);
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.15);
}

.org-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    width: 100%;
}

.profile-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 16px;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.org-card-grid .profile-card:hover,
.org-card-grid .profile-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.profile-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
}

.profile-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-card .eyebrow {
    font-size: 0.85rem;
    color: #475467;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.profile-card h3 {
    padding: 0;
    margin: 0;
    color: #0b1320;
}

.profile-card p {
    margin: 0;
}

.contact-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0b1320;
}

.subnav {
    background: linear-gradient(160deg, #f8fafc 0%, #ffffff 100%);
    padding: 24px 20px;
    border-radius: 20px;
    position: sticky;
    top: 120px;
    z-index: 900;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
    align-self: flex-start;
    border: 1px solid #e2e8f0;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.subnav:hover {
    background-color: #ffffff;
}

.subnav a {
    display: block;
    padding: 10px 12px;
    margin: 0;
    color: rgba(31, 41, 51, 0.7);
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.subnav-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475467;
    padding: 0 6px 6px;
}

.subnav a:hover,
.subnav a:focus {
    background: rgba(29, 78, 216, 0.12);
    color: #1d4ed8;
    transform: translateX(2px);
    text-decoration: none;
}

.subnav a.is-active,
.subnav a[aria-current="true"] {
    background: rgba(29, 78, 216, 0.18);
    color: #1d4ed8;
    font-weight: 700;
    transform: translateX(4px);
}

#aboutus,
#org,
#news,
#clubvehicles,
#learn,
#history,
#song {
    scroll-margin-top: 140px;
}

@media (max-width: 900px) {
    .library-layout {
        flex-direction: column;
        padding: 32px 5% 60px;
    }

    .subnav {
        position: relative;
        top: auto;
        flex-direction: row;
        align-items: stretch;
        gap: 10px;
        padding: 16px;
        width: 100%;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
        overflow-x: auto;
        background: #f5f7fb;
    }

    .subnav-title {
        flex: 0 0 100%;
        padding-bottom: 0;
    }

    .subnav a {
        padding: 10px 14px;
        white-space: nowrap;
    }

    #aboutus,
    #org,
    #news,
    #clubvehicles,
    #learn,
    #history,
    #song {
        scroll-margin-top: 90px;
    }
}

.cart-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-weight: 800;
  gap: 0;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cart-btn i {
  color: #0f172a !important;
}

.cart-open #backToTop {
    display: none;
}

/* About page layouts */
body.about-page {
    text-align: left;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.org-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.org-card h3 {
    color: #0b1320;
    margin: 0;
}

.org-card h4 {
    color: #1f2933;
    margin: 0;
}

.org-card p {
    margin: 0;
}

.org-children {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.org-child {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.org-child strong {
    display: block;
    color: #0b1320;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.info-table th,
.info-table td {
    padding: 12px;
    text-align: left;
}

.info-table thead {
    background: #0f172a;
    color: #ffffff;
}

.info-table tbody tr:nth-child(odd) {
    background: #f8fafc;
}

.info-table tbody tr:hover {
    background: #e0f2fe;
    transition: background 0.2s ease;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.table-scroll .info-table {
    min-width: 560px;
    box-shadow: none;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.card-grid .card-tile {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.card-grid .card-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.card-grid img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.card-grid .card-body {
    padding: 14px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vehicle-number {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 12px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Events page styling */
body.events-page {
    --bg: #f5f5f5;
    --card-bg: #ffffff;
    --accent: #00625f;
    --accent-soft: #d5f0ed;
    --text-main: #111827;
    --text-muted: #6b7280;
    --radius-lg: 16px;
    --transition-fast: 0.2s ease-out;
    margin: 0;
    background: var(--bg);
    color: var(--text-main);
    font-family: 'Noto Sans', sans-serif;
    text-align: left;
}

body.events-page i.fa,
body.events-page i.fa-solid,
body.events-page i.fa-regular,
body.events-page i.fa-brands {
    color: #111827;
}

.events-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

.events-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.events-header h1 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.events-header h1 i {
    padding: 0.4rem;
    border-radius: 999px;
    background: #e5e7eb;
    color: var(--accent);
}

.view-toggle {
    display: inline-flex;
    background: #e5e7eb;
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
}

.view-toggle button {
    border: none;
    background: transparent;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.view-toggle button.active {
    background: var(--card-bg);
    color: var(--accent);
    transform: translateY(-1px);
}

.view-toggle i {
    font-size: 0.9rem;
}

.view-section {
    display: none;
}

.view-section.active {
    display: block;
    animation: fadeIn 0.25s ease-out;
}

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

.location-group {
    margin-top: 1.5rem;
    position: relative;
}

.location-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.location-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.location-title i {
    color: var(--accent);
}

.events-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 6px 0 0.6rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.events-row::-webkit-scrollbar { display: none; }

.event-card {
    scroll-snap-align: start;
    min-width: 240px;
    max-width: 280px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: none;
    border: 1px solid #e5e7eb;
    padding: 0.9rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.event-card:hover {
    transform: translateY(-3px);
    border-color: #d1d5db;
    background: #ffffff;
}

.event-chip {
    font-size: 0.7rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    align-self: flex-start;
}

.event-chip i {
    font-size: 0.75rem;
    color: var(--accent);
}

.event-chip.tag-past {
    background: #fef3c7;
    color: #92400e;
}

.event-chip.tag-past i { color: #92400e; }

.event-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.event-title i {
    color: var(--accent);
    font-size: 0.9rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.event-meta-row {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.event-meta-row i { font-size: 0.85rem; }

.event-footer {
    margin-top: 0.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.event-footer .action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
    color: var(--accent);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(0,98,95,0.06);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.event-footer .action i {
    font-size: 0.8rem;
    color: var(--accent);
}

.event-card:hover .event-footer .action {
    background: rgba(0,98,95,0.12);
    transform: translateX(2px);
}

@media (max-width: 600px) {
    .event-card { min-width: 210px; }
}

.row-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(243,244,246,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
    z-index: 5;
}

.row-scroll-arrow i {
    font-size: 0.9rem;
    color: #6b7280;
}

.row-scroll-arrow.left { left: 0.25rem; }
.row-scroll-arrow.right { right: 0.25rem; }

.row-scroll-arrow.visible {
    opacity: 0.65;
    pointer-events: auto;
}

.row-scroll-arrow:hover {
    background: rgba(229,231,235,1);
    opacity: 1;
    transform: translateY(-40%) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.row-scroll-arrow.disabled {
    opacity: 0;
    pointer-events: none;
    box-shadow: none;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 40;
}

.modal-backdrop.active {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

.modal {
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    background: var(--card-bg);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.modal-header-title {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.modal-header-title h2 {
    margin: 0;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.modal-header-title h2 i { color: var(--accent); }

.modal-header-title span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.modal-close {
    border: none;
    background: transparent;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.modal-close:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.modal-close i { font-size: 1.2rem; }

.modal-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 1.2rem;
    gap: 0.6rem;
}

.modal-tab {
    border: none;
    background: transparent;
    padding: 0.6rem 0.2rem;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-muted);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.modal-tab i { font-size: 0.85rem; }

.modal-tab.active { color: var(--accent); }

.modal-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
}

.modal-body {
    padding: 1rem 1.2rem 1.2rem;
    overflow-y: auto;
    font-size: 0.9rem;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.details-list li {
    margin-bottom: 0.45rem;
    display: flex;
    gap: 0.4rem;
}

.details-list i {
    margin-top: 2px;
    color: var(--accent);
}

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

.gallery-grid img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-grid img:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.fs-viewer {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    flex-direction: column;
    padding: 1rem;
}

.fs-viewer.active {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

.fs-image-wrapper {
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.fs-image-wrapper img {
    max-height: 80vh;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.fs-nav,
.fs-close {
    border: none;
    background: #0f172a;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 6px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.fs-close {
    position: absolute;
    top: 18px;
    right: 18px;
}

.fs-nav:hover,
.fs-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.25);
    background: #1f2937;
}

.fs-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(17,24,39,0.85);
    color: #ffffff;
    font-weight: 600;
}

.fs-counter i { color: #fbbf24; }

.events-footer-notes {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Parts page styles */
.parts-page main {
    max-width: 1200px;
    margin: 0 auto;
}

.parts-page h1 {
    color: #0b1320;
    letter-spacing: 0.3px;
}

.parts-page h2,
.parts-page h3 {
    color: grey;
}

.parts-page .card-container {
    gap: 18px;
    justify-content: flex-start;
}

@media (max-width: 700px) {
    .parts-page .card-container {
        justify-content: center;
    }
}

.parts-page .card {
    width: 260px;
    min-height: 270px;
    text-align: left;
    align-items: flex-start;
    border: 1px solid #e4e9f4;
    background: linear-gradient(180deg, #ffffff 0%, #f3f6fd 100%);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
    padding: 18px 18px 42px;
    gap: 12px;
    position: relative;
}

.parts-page .card:hover {
    transform: none;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.parts-page .card img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    margin-top: auto;
    align-self: center;
}

.parts-page .card-meta-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.parts-page .card-price {
    font-weight: 700;
    color: #0b1320;
}

.parts-page .card-price:empty,
.parts-page .card-code:empty {
    display: none;
}

.parts-page .card-title-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.parts-page .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.parts-page .card-code {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--accent-soft);
    white-space: nowrap;
}

.parts-page .cart-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #ffffff;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.16);
    border: 1px solid #e4e9f4;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    color: #0f172a !important;
}

.parts-page .cart-btn:hover,
.parts-page .cart-btn:focus,
.parts-page .cart-btn.active {
    background: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.25);
}

.parts-page .cart-btn i {
    color: inherit !important;
}

.parts-page #backToTop {
    background: #ffffff;
    color: #0b0b0b;
}

.contact-page {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
    color: #0b1320;
}

.contact-shell {
    max-width: 1100px;
    margin: 24px auto 64px;
    padding: 0 20px;
    text-align: left;
}

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

.contact-header h1 {
    font-size: 32px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 12px;
}

.contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #e4e9f4;
}

.contact-card--wide {
    grid-column: span 1;
}

.contact-card--info {
    background: linear-gradient(180deg, #f9fbff 0%, #f5f7fb 100%);
}

.contact-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-card p {
    color: #4b5563;
}

.contact-body-text {
    margin-bottom: 8px;
}

.contact-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: #111827;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hint-box {
    background: #f3f6ff;
    color: #1d4ed8;
    border: 1px dashed #cbd5f5;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    margin-top: 10px;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form label {
    font-weight: 700;
    color: #111827;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
}

.primary-btn {
    background: linear-gradient(90deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 22px rgba(99, 102, 241, 0.26);
}

.primary-btn:hover,
.primary-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(99, 102, 241, 0.36);
    outline: none;
}

.primary-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}

.contact-submit-btn {
    font-size: 15px;
    padding: 9px 14px;
    font-weight: 800;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    width: fit-content;
    align-self: flex-start;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
    background: #ffffff;
}

.status {
    min-height: 20px;
    font-weight: 600;
}

.status.success {
    color: #16a34a;
}

.status.error {
    color: #dc2626;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-shell {
        margin-top: 12px;
    }

    .contact-header h1 {
        font-size: 26px;
    }
}
