/* =====================================================
   ROCK OYSTER — Vehicle Hanger Page Stylesheet
   Bootstrap 5.1 + Font Awesome 6.7.2
   Brand colours from Rock Oyster brand guidelines PDF
   Fonts: Work Sans (body), Hammersmith One (headings)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600&family=Hammersmith+One&display=swap');

/* -------------------------------------------------------
   CSS Custom Properties — Brand Palette
------------------------------------------------------- */
:root {
    /* Brand colours */
    --ro-japanese-indigo:  #28394b;
    --ro-dark-cerulean:    #164f74;
    --ro-lapis-lazuli:     #2b6693;
    --ro-hookers-green:    #507e6f;
    --ro-cambridge-blue:   #97b4ad;
    --ro-peach:            #efbd84;
    --ro-gold:             #dfc689;
    --ro-camel:            #c2a667;
    --ro-dark-vanilla:     #d9b69c;
    --ro-copper:           #d98a68;
    --ro-jelly-bean:       #dd6446;
    --ro-coral-reef:       #f3726a;
    --ro-almond:           #eee1d1;
    --ro-cream:            #f4ebe6;
    --ro-dust-storm:       #dccac9;
    --ro-lilac:            #c6a1cc;

    /* Semantic tokens */
    --bg-page:        var(--ro-cream);
    --bg-header:      var(--ro-japanese-indigo);
    --bg-hero:        var(--ro-peach);
    --bg-card:        #ffffff;
    --text-primary:   var(--ro-japanese-indigo);
    --text-muted:     #6b7a87;
    --accent:         var(--ro-jelly-bean);
    --accent-hover:   var(--ro-copper);
    --border-subtle:  rgba(40, 57, 75, 0.15);
}

/* -------------------------------------------------------
   Base
------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Hammersmith One', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    color: var(--ro-dark-cerulean);
    transition: color 0.2s ease;
}

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

/* -------------------------------------------------------
   Navbar  (#mainNav — Bootstrap navbar-expand-xl)
------------------------------------------------------- */

#mainNav {
    background-color: #164f74 !important;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 68px;
    position: sticky;
    top: 0;
    z-index: 1030;
}

#mainNav:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' width='100%25' height='42px' viewBox='0 0 1280 140'%3E%3Cg fill='%23164f74'%3E%3Cpath d='M320 28c320 0 320 84 640 84 160 0 240-21 320-42v70H0V70c80-21 160-42 320-42z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 1.5rem;
    bottom: -1.5rem;
    content: "";
    height: 1.5rem;
    z-index: 1;
    transform: scale(-1, 1) rotate(180deg);
    width: 100%;
    position: absolute;
}

/* Logo */
#mainNav .navbar-brand {
    padding-top: 10px;
    padding-bottom: 10px;
}

#mainNav #sitelogo {
    height: 44px;
    width: auto;
}

/* Hamburger toggler — make it white */
#mainNav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
    padding: 6px 10px;
}

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Left nav links */
#mainNav #inner-header-menu .nav-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82) !important;
    padding: 8px 12px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

ul#inner-header-menu {
    margin-top:0;
    margin-left: auto !important;
    margin-right: 0 !important;
}

ul#inner-header-menu li {
    border-right:none;
}

ul.auth-links {
    display: none;
}

#mainNav #inner-header-menu .nav-link:hover,
#mainNav #inner-header-menu .nav-link:focus {
    color: var(--ro-gold) !important;
}

/* Tickets link — last item in nav, styled as a jelly bean pill */
#mainNav #inner-header-menu .nav-link--tickets,
#mainNav #inner-header-menu li:last-child .nav-link {
    background-color: #fff;
    color: #000 !important;
    border-radius: 2px;
    padding: 7px 18px;
    margin-left: 6px;
    font-weight: 600;
    letter-spacing: 0.12em;
    transition: background-color 0.2s ease !important;
}

#mainNav #inner-header-menu .nav-link--tickets:hover,
#mainNav #inner-header-menu li:last-child .nav-link:hover {
    background-color: var(--ro-copper) !important;
    color: #ffffff !important;
}

@media(max-width:1200px) {
    #mainNav #inner-header-menu .nav-link--tickets, #mainNav #inner-header-menu li:last-child .nav-link {
        margin:20px 0;
    }
}

/* Right auth dropdown trigger */
#mainNav .auth-links .nav-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82) !important;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    transition: color 0.2s ease;
}

#mainNav .auth-links .nav-link:hover {
    color: var(--ro-gold) !important;
}

#mainNav .auth-links .nav-link i {
    font-size: 16px;
}

.nav-wave {
    background: var(--bg-hero);
}
.nav-wave svg {
    vertical-align: top;
}
/* Dropdown menu */
#mainNav .dropdown-menu {
    background-color: var(--ro-japanese-indigo);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 6px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    min-width: 200px;
}

#mainNav .dropdown-item {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    padding: 9px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

#mainNav .dropdown-item i {
    font-size: 13px;
    opacity: 0.7;
    width: 16px;
    text-align: center;
}

#mainNav .dropdown-item:hover,
#mainNav .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

#mainNav .dropdown-item:hover i,
#mainNav .dropdown-item:focus i {
    opacity: 1;
}

#mainNav .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 4px 0;
}

/* Mobile collapsed nav */
@media (max-width: 1199.98px) {
    #mainNav .navbar-collapse {
        background-color: #164f74;
        padding: 12px 0 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    #mainNav #inner-header-menu .nav-link {
        padding: 10px 16px;
        font-size: 13px;
    }

    #mainNav #inner-header-menu .nav-link--tickets {
        margin: 8px 16px 0;
        display: inline-block;
    }

    #mainNav .auth-links {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 8px;
        margin-top: 4px;
    }

    #mainNav .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        padding-left: 16px;
    }
}

/* -------------------------------------------------------
   Wave Dividers
------------------------------------------------------- */
.wave-divider {
    display: block;
    width: 100%;
    line-height: 0;
    margin: -1px 0;
    padding: 0;
    font-size: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}

.hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-top:-157px !important;
}

.main-content {
    margin-top: 0 !important;
}

.site-footer {
    margin-top: 0px !important;
}

/* -------------------------------------------------------
   Hero
------------------------------------------------------- */
.hero {
    background-color: var(--bg-hero);
    padding-top: 64px;
    padding-bottom: 0;
    overflow: hidden;
}

.hero__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 2px;
    background-color: var(--accent);
    flex-shrink: 0;
}

.hero__title {
    font-size: clamp(30px, 5vw, 52px);
    color: var(--ro-japanese-indigo);
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 17px;
    color: var(--ro-japanese-indigo);
    opacity: 0.85;
    margin-bottom: 28px;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero__meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ro-japanese-indigo);
    opacity: 0.72;
}

.hero__illustration {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0.22;
}

.hero__illustration svg {
    max-width: 300px;
    width: 100%;
}

/* -------------------------------------------------------
   Main Content
------------------------------------------------------- */

.bg-white {
    --bs-bg-opacity: 0 !important;
}

.main-content {
    background-color: var(--bg-page);
    padding-top: 30px;
    padding-bottom: 80px;
}
main {
    background-color: var(--bg-page);
}
/* -------------------------------------------------------
   Step Indicator
------------------------------------------------------- */
.steps {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.step:not(:last-child)::after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: var(--border-subtle);
    margin: 0 10px;
}

.step__number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Hammersmith One', sans-serif;
    font-size: 13px;
    flex-shrink: 0;
}

.step--active .step__number {
    background-color: var(--ro-japanese-indigo);
    color: #fff;
}

.step--inactive .step__number {
    background-color: transparent;
    border: 2px solid var(--border-subtle);
    color: var(--text-muted);
}

.step__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
}

.step--active .step__label  { color: var(--ro-japanese-indigo); }
.step--inactive .step__label { color: var(--text-muted); }

/* -------------------------------------------------------
   Form Card  (Bootstrap card classes augmented)
------------------------------------------------------- */
.hanger-card-step-one {
    box-shadow: 0 6px 32px rgba(40, 57, 75, 0.11), 0 1px 4px rgba(40, 57, 75, 0.06) !important;
    border-radius: 4px !important;
    overflow: hidden;
    margin: 20px 0 60px !important;
}

.hanger-card-step-one .card-header.bg-transparent {
    background-color: var(--ro-japanese-indigo) !important;
    padding: 26px 32px 22px;
    border-bottom: none;
}

.hanger-card-step-one .card-title {
    font-family: 'Hammersmith One', sans-serif;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
}

.hanger-card-step-one .card-body {
    padding: 32px 32px 36px;
    background-color: #fff;
}

.hanger-card-step-one .form-label {
    font-size: 15px;
    color: var(--ro-japanese-indigo);
    margin-bottom: 10px;
    line-height: 1.55;
}

.hanger-card-step-one .form-label .text-uppercase.text-bold {
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
}

/* Override Bootstrap input-group to use brand border */
.hanger-card-step-one .input-group {
    border: 2px solid var(--ro-japanese-indigo);
    border-radius: 3px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hanger-card-step-one .input-group:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(221, 100, 70, 0.15);
}

.hanger-card-step-one .input-group .form-control {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--ro-japanese-indigo);
    padding: 13px 18px;
}

.hanger-card-step-one .input-group .form-control::placeholder {
    color: rgba(40, 57, 75, 0.3);
    letter-spacing: 0.08em;
}

.hanger-card-step-one .input-group .form-control:focus {
    outline: none;
    box-shadow: none !important;
}

/* The submit button inside the input-group */
.silverstone-button {
    background-color: var(--ro-jelly-bean);
    color: #ffffff;
    border: none;
    border-radius: 2px;
    padding: 14px 32px;
    font-family: 'Hammersmith One', sans-serif;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease;
}

.silverstone-button:hover {
    background-color: var(--ro-copper) !important;
    color: #ffffff;
}

.silverstone-button:active {
    background-color: var(--ro-dark-cerulean) !important;
    color: #ffffff;
}

.form-helper-note {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.55;
    margin-top: 12px;
    margin-bottom: 0;
}

.form-helper-note i {
    margin-top: 1px;
    flex-shrink: 0;
    color: var(--ro-cambridge-blue);
}

.form-helper-note a {
    color: var(--ro-dark-cerulean);
    text-decoration: underline;
    display: contents;
}

/* -------------------------------------------------------
   Info Strip (3 cards below form)
------------------------------------------------------- */
.info-card {
    background-color: #fff;
    border-radius: 3px;
    padding: 20px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-left: 3px solid var(--ro-gold);
    box-shadow: 0 2px 8px rgba(40, 57, 75, 0.07);
    height: 100%;
}

.info-card__icon {
    width: 38px;
    height: 38px;
    background-color: var(--ro-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ro-japanese-indigo);
    font-size: 16px;
}

.info-card__title {
    font-family: 'Hammersmith One', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ro-japanese-indigo);
    margin-bottom: 4px;
}

.info-card__text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* -------------------------------------------------------
   FAQ Section — Bootstrap 5.1 Accordion
------------------------------------------------------- */
.faq-section__heading {
    font-size: 26px;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.faq-section__subheading {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

/* Override Bootstrap accordion to use brand styles */
.accordion-ro .accordion-item {
    background-color: #fff;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 3px !important;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(40, 57, 75, 0.06);
}

.accordion-ro .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-ro .accordion-header {
    margin: 0;
}

.accordion-ro .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ro-japanese-indigo);
    background-color: #fff;
    padding: 18px 24px;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-ro .accordion-button:hover {
    background-color: var(--ro-cream);
}

.accordion-ro .accordion-button:focus {
    box-shadow: none !important;
    outline: none;
}

/* Custom icon: circle with FA plus/minus */
.accordion-ro .accordion-button::after {
    display: none; /* Remove Bootstrap's default chevron */
}

.accordion-ro .accordion-button .faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--ro-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    transition: background-color 0.2s ease, transform 0.25s ease;
    color: var(--ro-japanese-indigo);
    font-size: 11px;
}

.accordion-ro .accordion-button:not(.collapsed) {
    color: var(--ro-japanese-indigo);
    background-color: #fff;
}

.accordion-ro .accordion-button:not(.collapsed) .faq-icon {
    background-color: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}

.accordion-ro .accordion-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 0 24px 20px;
    border-top: 1px solid var(--border-subtle);
}

.accordion-ro .accordion-body a {
    color: var(--ro-dark-cerulean);
    text-decoration: underline;
}

/* -------------------------------------------------------
   Footer  (brand peach background, existing markup)
------------------------------------------------------- */
footer {
    margin-top:0px !important;
    padding:20px 0 !important;
    position: relative;
}

footer#mainSiteFooter:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' width='100%25' height='42px' viewBox='0 0 1280 140'%3E%3Cg fill='%23efbd84'%3E%3Cpath d='M320 28c320 0 320 84 640 84 160 0 240-21 320-42v70H0V70c80-21 160-42 320-42z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 2rem;
    top: -2rem;
    content: "";
    height: 2rem;
    z-index: 1;
    transform: scale(-1, 1);
    width: 100%;
    position: absolute;
}


.site-footer {
    background-color: #efbd84;
}

.site-footer .footer__detailsWrap {
    display: flex;
    flex-direction: column;
    min-height: 170px;
}

.site-footer .footer__logo img {
    height: 68px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

.site-footer .footer__message {
    display: none;
}

.site-footer .plotCredits,
.site-footer .plotCredits a {
    font-size: 12px;
    color: var(--ro-japanese-indigo);
    font-family: 'Work Sans', sans-serif;
}

.site-footer .plotCredits--threeCol {
    margin-top: auto;
    padding-top: 20px;
}

.site-footer .plotCredits a {
    text-decoration: underline;
}

.site-footer .footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer__menu li {
    margin-bottom: 12px;
}

.site-footer .footer__menu a {
    color: var(--ro-japanese-indigo);
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.site-footer .footer__menu a:hover {
    opacity: 1;
    text-decoration: underline;
}

.site-footer .newsletterSignup__heading {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--ro-japanese-indigo);
    letter-spacing: 0.02em;
    text-align: right;
    margin-bottom: 10px;
}

.site-footer .footer-email-row {
    display: flex;
    overflow: hidden;
}

.site-footer .footer-email-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    outline: none;
    color: var(--ro-japanese-indigo);
    font-size: 13px;
    font-family: 'Work Sans', sans-serif;
    padding: 11px 14px;
    min-width: 0;
}

.site-footer .footer-email-input::placeholder {
    color: rgba(40, 57, 75, 0.4);
}

.site-footer .footer-submit-btn {
    background-color: var(--ro-japanese-indigo);
    color: var(--ro-peach);
    border: none;
    padding: 11px 18px;
    font-size: 10px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.site-footer .footer-submit-btn:hover {
    background-color: var(--ro-dark-cerulean);
}

.site-footer .sitewideSocialLinks {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.site-footer .socialLinkWrap {
    display: flex;
    align-items: center;
}

.site-footer .socialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--ro-japanese-indigo);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.site-footer .socialLink:hover {
    background-color: var(--ro-dark-cerulean);
}

.site-footer .socialLink__text,
.site-footer .socialLink__words,
.site-footer .socialLink__sep {
    display: none;
}

.site-footer .plotCredits--oneCol {
    display: none;
}

/* -------------------------------------------------------
   Utilities / Bootstrap overrides
------------------------------------------------------- */
.text-muted-ro {
    color: var(--text-muted) !important;
}

/* Ensure Bootstrap utility classes don't fight our card styles */
.border-0 { border: none !important; }

/* Page fade-in */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero .container,
.main-content .container {
    animation: fadeUp 0.5s ease both;
}

.main-content .container {
    animation-delay: 0.08s;
}

/* -------------------------------------------------------
   Responsive tweaks  (Bootstrap handles the grid;
   these cover hero + header + misc)
------------------------------------------------------- */
@media (max-width: 767.98px) {
    .hero {
        padding-top: 40px;
    }

    .steps .step__label {
        display: none;
    }

    .hanger-card-step-one .card-body {
        padding: 24px 20px 28px;
    }

    .hanger-card-step-one .card-header.bg-transparent {
        padding: 20px 20px 16px;
    }

    /* Stack input + button vertically on xs */
    .hanger-card-step-one .input-group {
        flex-direction: column;
    }

    .hanger-card-step-one .input-group .form-control {
        border-bottom: 1px solid var(--border-subtle) !important;
        font-size: 16px;
    }

    .silverstone-button {
        width: 100%;
        padding: 14px !important;
        text-align: center;
    }
}
.back-to-background {
    background-color: #164f74 !important;
}
.back-to-background .container .back-to-link {
    color:#fff;
    font-size:10px;
}

/* -------------------------------------------------------
   Step Two — Hanger Card Page
------------------------------------------------------- */

/* Row wrapper */
.step-two-hanger {
    padding-top: 48px;
    padding-bottom: 80px;
}

/* Intro instruction text */
.step-two-hanger .to-register {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: var(--ro-japanese-indigo);
    line-height: 1.65;
    margin-bottom: 20px;
    opacity: 0.85;
}

/* Table */
.step-two-table {
    margin-bottom: 24px !important;
    background-color: #fff;
}

.step-two-table thead.bg-blue {
    background-color: var(--ro-japanese-indigo) !important;
}

.step-two-table thead th {
    font-family: 'Hammersmith One', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 14px 16px;
    border: none;
}

.step-two-table tbody tr {
    border-bottom: 1px solid rgba(40, 57, 75, 0.08);
}

.step-two-table tbody tr:last-child {
    border-bottom: none;
}

.step-two-table tbody td {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: var(--ro-japanese-indigo);
    padding: 10px 16px;
    vertical-align: middle;
}

.step-two-table tbody td:first-child {
    font-weight: 500;
    width: 40%;
    color: var(--text-muted);
}

/* Read-only inputs in the table */
.step-two-table .form-control[readonly] {
    background-color: rgba(40, 57, 75, 0.04) !important;
    border: 1px solid rgba(40, 57, 75, 0.12) !important;
    color: var(--ro-japanese-indigo);
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 2px;
    box-shadow: none !important;
    cursor: default;
}

/* VRM input — highlighted in brand gold */
.step-two-table .form-control.bg-warning {
    background-color: var(--ro-gold) !important;
    border: 2px solid var(--ro-camel) !important;
    color: var(--ro-japanese-indigo) !important;
    font-family: 'Hammersmith One', sans-serif;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 10px 12px;
    border-radius: 2px;
    box-shadow: none !important;
}

.step-two-table .form-control.bg-warning::placeholder {
    color: rgba(40, 57, 75, 0.45);
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: none;
}

.step-two-table .form-control.bg-warning:focus {
    border-color: var(--ro-jelly-bean) !important;
    box-shadow: 0 0 0 3px rgba(221, 100, 70, 0.15) !important;
}

/* Complete hanger card button — reuses .silverstone-button base */
.complete-hanger-card-button {
    width: 100%;
    margin-top: 4px;
}

/* -------------------------------------------------------
   Event Detail Panel (right column, step two)
------------------------------------------------------- */
.event-detail-panel {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(40, 57, 75, 0.10), 0 1px 4px rgba(40, 57, 75, 0.06);
    height: 100%;
}

.event-detail-panel__body {
    padding: 28px 28px 0;
}

.event-detail-panel__title {
    font-family: 'Hammersmith One', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ro-japanese-indigo);
    margin-bottom: 10px;
}

.event-detail-panel__description {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.event-detail-panel__dates {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ro-japanese-indigo);
    background-color: var(--ro-almond);
    padding: 10px 14px;
    border-radius: 2px;
    margin-bottom: 0;
}

.event-detail-panel__dates .svg-inline--fa {
    color: var(--ro-jelly-bean);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.event-detail-panel__divider {
    border-color: rgba(40, 57, 75, 0.12);
    margin: 20px 0;
}

.event-detail-panel__carpark {
    padding: 0 28px 28px;
}

.event-detail-panel__section-label {
    font-family: 'Hammersmith One', sans-serif;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ro-jelly-bean);
    margin-bottom: 6px;
}

.event-detail-panel__carpark-name {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ro-japanese-indigo);
    margin-bottom: 10px;
}

.event-detail-panel__carpark-address {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.event-detail-panel__carpark-address .svg-inline--fa {
    color: var(--ro-jelly-bean);
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    margin-top: 3px;
}

.event-detail-panel__map {
    width: 100%;
    height: 220px;
    border: none;
    border-radius: 2px;
    display: block;
}

/* Mobile */
@media (max-width: 767.98px) {
    .event-detail-panel {
        margin-top: 32px;
    }

    .event-detail-panel__map {
        height: 180px;
    }

    .step-two-table tbody td:first-child {
        width: auto;
    }
}
p.silverstone-font {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: var(--ro-japanese-indigo);
    line-height: 1.65;
    margin-bottom: 24px;
    padding: 14px 18px 14px 20px;
    background-color: var(--ro-almond);
    border-left: 4px solid var(--ro-jelly-bean);
    border-radius: 2px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

p.silverstone-font::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f05a';
    color: var(--ro-jelly-bean);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* -------------------------------------------------------
   Search Summary Bar
------------------------------------------------------- */
.search-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-left: 4px solid var(--ro-jelly-bean);
    border-radius: 2px;
    padding: 16px 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(40, 57, 75, 0.07);
}

.search-summary__label {
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.search-summary__value {
    font-family: 'Hammersmith One', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ro-japanese-indigo);
    margin-bottom: 2px;
}

.search-summary__value span {
    color: var(--ro-jelly-bean);
}

.search-summary__meta {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.search-summary__change {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--ro-dark-cerulean);
    text-decoration: none;
    border: 1px solid var(--ro-dark-cerulean);
    border-radius: 2px;
    padding: 8px 16px;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.search-summary__change:hover {
    background-color: var(--ro-dark-cerulean);
    color: #ffffff;
}

.search-summary__change .svg-inline--fa {
    width: 13px;
    height: 13px;
}

/* -------------------------------------------------------
   Hanger Results Table
------------------------------------------------------- */
.hanger-results-table {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(40, 57, 75, 0.08);
    margin-bottom: 80px !important;
}

.hanger-results-table thead.bg-blue {
    background-color: var(--ro-japanese-indigo) !important;
}

.hanger-results-table thead th {
    font-family: 'Hammersmith One', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 14px 16px;
    border: none;
    white-space: nowrap;
}

.hanger-results-table tbody tr {
    border-bottom: 1px solid rgba(40, 57, 75, 0.08);
    transition: background-color 0.15s ease;
}

.hanger-results-table tbody tr:last-child {
    border-bottom: none;
}

.hanger-results-table tbody tr:hover {
    background-color: rgba(40, 57, 75, 0.02);
}

.hanger-results-table tbody td {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: var(--ro-japanese-indigo);
    padding: 14px 16px;
    vertical-align: middle;
}

/* Event name cell */
.event-name-cell strong {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ro-japanese-indigo);
    letter-spacing: 0.02em;
}

/* Status badge */
.hanger-card-list__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
    white-space: nowrap;
}

.hanger-card-list__status .svg-inline--fa {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.hanger-card-list__status--pending {
    background-color: var(--ro-almond);
    color: var(--ro-copper);
}

.hanger-card-list__status--complete {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.hanger-card-list__status--cancelled {
    background-color: #fce8e8;
    color: #c62828;
}

/* Action button cell */
.hanger-results-table__btn-cell {
    text-align: right;
    white-space: nowrap;
}

.hanger-card-list__btn {
    display: inline-block;
    background-color: var(--ro-jelly-bean);
    color: #ffffff;
    font-family: 'Hammersmith One', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 2px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.hanger-card-list__btn:hover {
    background-color: var(--ro-copper);
    color: #ffffff;
}

/* Mobile */
@media (max-width: 767.98px) {
    .search-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hanger-results-table thead th:nth-child(3),
    .hanger-results-table tbody td:nth-child(3) {
        display: none;
    }
}

.search-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--ro-japanese-indigo);
    border-left: 4px solid var(--ro-jelly-bean);
    border-radius: 2px;
    padding: 16px 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(40, 57, 75, 0.07);
}

.search-summary__label {
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2px;
}

.search-summary__value {
    font-family: 'Hammersmith One', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin-bottom: 2px;
}

.search-summary__value span {
    color: var(--ro-gold);
}

.search-summary__meta {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
}

.search-summary__change {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    padding: 8px 16px;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.search-summary__change:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
div#main-container {
    padding: 80px 0;
}
form.hanger-card-form {
    background-color: #fff;
}
.hanger-results-table tbody .hanger-results-table__btn-cell .hanger-card-list__btn.hanger-card-list__btn--registered {
    background: green !important;
}
