:root {
    --bg: #0b0d10; /* charcoal */
    --panel: #12151a; /* deeper charcoal */
    --ink: #e8ebf0; /* near-white text */
    --muted: #aab0bb; /* secondary text */
    --pri: #e63946; /* accent red */
    --pri-2: #2a9d8f; /* accent teal */
    --ring: #f1fa8c; /* subtle highlight */
    --card: #171a20; /* card bg */
    --glass: rgba(255,255,255,.06);
    --radius-xl: 1.25rem;
    --radius-lg: 1rem;
    --shadow: 0 10px 30px cornflowerblue;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    background: radial-gradient(1200px 800px at 20% 0%, #131720, #0b0d10 60%);
    color: var(--ink);
    font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,"Apple Color Emoji","Segoe UI Emoji";
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: saturate(160%) blur(10px);
    background: linear-gradient(to bottom, rgba(18,21,26,.9), rgba(18,21,26,.6));
    border-bottom: 1px solid rgba(255,255,255,.06)
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.row {
    display: flex;
    align-items: center;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg,#2a2f37,#0f1115);
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), var(--shadow)
}

    .brand-logo img {
        width: 32px;
        height: 32px;
        filter: drop-shadow(0 2px 6px rgba(0,0,0,.5))
    }

.brand-title {
    font-family: "Asimovian",serif;
    font-weight: 900;
    letter-spacing: .08em
}

.nav {
    margin-left: auto;
    display: flex;
    gap: 18px
}

    .nav a {
        padding: 10px 12px;
        border-radius: 12px
    }

        .nav a:hover {
            background: var(--glass)
        }

.cta {
    margin-left: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px
}

    .cta:hover {
        border-color: rgba(255,255,255,.35)
    }

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 36px;
    padding: 72px 0
}

@@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 56px 0
    }
}

.logo-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px; /* adjust to desired height */
}

.logo-ring {
    position: absolute;
    min(60vmin,520px);
    aspect-ratio: 1/1;
    border-radius: 10%;
    border: 1px dashed rgba(255,255,255,.12);
    animation: slow-rotate 28s linear infinite;
}

    .logo-ring::after {
        content: "";
        position: absolute;
        inset: -12px;
        border-radius: inherit;
        background: radial-gradient(60% 60% at 50% 50%, rgba(241,250,140,.08), transparent 70%)
    }

.logo-tile {
    position: relative;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), var(--shadow);
}

.logo-img {
    filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
    animation: float 6s ease-in-out infinite
}

@@keyframes slow-rotate {
    to {
        transform: rotate(360deg)
    }
}

@@keyframes float {
    0%, 100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.hero h1 {
    font-family: "Asimovian",serif;
    font-weight: 900;
    line-height: 1.1;
    margin: .2em 0 .4em;
    letter-spacing: .04em
}

.lead {
    color: var(--muted);
    max-width: 60ch
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    cursor: pointer;
    color: white;
}

    .btn:hover {
        border-color: rgba(255,255,255,.3)
    }

    .btn.primary {
        background: linear-gradient(135deg, rgba(230,57,70,.95), rgba(230,57,70,.75));
        border-color: rgba(255,255,255,.18)
    }

        .btn.primary .pulse {
            position: relative
        }

            .btn.primary .pulse::after {
                content: "";
                position: absolute;
                inset: -8px;
                border-radius: 16px;
                border: 2px solid rgba(230,57,70,.6);
                animation: pulse 2.4s ease-out infinite;
            }

@@keyframes pulse {
    0% {
        opacity: .8;
        transform: scale(.95)
    }

    100% {
        opacity: 0;
        transform: scale(1.2)
    }
}

/* Sections */
section {
    padding: 48px 0
}

.section-h {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px
}

    .section-h h2 {
        font-family: "Asimovian",serif;
        letter-spacing: .06em;
        margin: 0
    }

.muted {
    color: var(--muted)
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap: 16px
}

.card {
    grid-column: span 3;
    background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column
}

    .card img {
        aspect-ratio: 1/1;
        object-fit: cover
    }

    .card .p {
        padding: 14px
    }

.price {
    font-weight: 700;
    color: lightgreen;
}

.pill {
    font-size: .8rem;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: grey;
}

.rows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: white;
}

.actions {
    margin-top: auto;
    padding: 12px 14px;
    display: flex;
    gap: 10px
}

@@media (max-width:1100px) {
    .card {
        grid-column: span 4
    }
}

@@media (max-width:800px) {
    .card {
        grid-column: span 6
    }
}

@@media (max-width:560px) {
    .card {
        grid-column: span 12
    }
}

/* Category tabs */
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.tab {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: var(--glass);
    cursor: pointer
}

    .tab[aria-selected="true"] {
        background: linear-gradient(135deg, rgba(42,157,143,.9), rgba(42,157,143,.6));
        border-color: rgba(255,255,255,.18)
    }

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    background: linear-gradient(to top, rgba(18,21,26,.8), rgba(18,21,26,.4))
}

.foot {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px
}

@@media (max-width:800px) {
    .foot {
        grid-template-columns: 1fr
    }
}

.fine {
    color: #99a1ad;
    font-size: .9rem
}

/* Reveal-on-scroll */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease
}

    .reveal.in {
        opacity: 1;
        transform: none
    }

/* Utility */
.tagline {
    font-size: 1.1rem;
    color: var(--muted)
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px
}

    .badge .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--ring);
        box-shadow: 0 0 10px var(--ring)
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}
/* Carousels */
.carousel {
    position: relative
}

    .carousel .track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc(25% - 12px);
        gap: 16px;
        overflow-x: auto;
        padding: 6px 4px 10px;
        scroll-snap-type: x mandatory
    }

@@media (max-width:1100px) {
    .carousel .track {
        grid-auto-columns: calc(33.333% - 12px)
    }
}

@@media (max-width:800px) {
    .carousel .track {
        grid-auto-columns: calc(50% - 12px)
    }
}

@@media (max-width:560px) {
    .carousel .track {
        grid-auto-columns: 100%
    }
}

.carousel .slide {
    scroll-snap-align: start
}

.carousel .navbtn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.35);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2
}

    .carousel .navbtn:hover {
        background: rgba(0,0,0,.5)
    }

.carousel .prev {
    left: -8px
}

.carousel .next {
    right: -8px
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
body {
    background: #0b0d10;
    color: #e8ebf0;
}

a, .nav-link {
    color: #e8ebf0
}

.navbar {
    background: #12151a;
}

.card {
    background: #171a20;
    border-color: #2a2f37
}

.form-control, .form-select {
    background: #0f1115;
    color: #e8ebf0;
    border-color: #2a2f37
}

.table {
    color: #e8ebf0
}

.navbar-brand {
    font-size: 50px;
    font-family: "Asimovian", sans-serif;
}

.navbar-nav {
    font-size: 30px;
}

.af-red {
    color: cornflowerblue;
}

.brand-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    line-height: 1;
}

.afTagline {
    font-size: 30px;
    line-height: 1;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    display: inline-block
}

.icon-red {
    fill: #e63946
}

.vikingLogo {
    width: 100px;
    height: 100px;
    border: double cornflowerblue;
}

.logo-img {
    width: 200px;
}

.underConstructionTitle {
    text-align: center;
    font-size: 40px;
    border:5px solid cornflowerblue;
    margin: 20px;
    
}

.underConstructionMain {
    text-align: center;
    font-size: 20px;
    border: 5px solid yellow;
    padding: 50px;
}