/* =========================================================
   BRAGA HALF MARATHON 2027
   HOTEL / ACCOMMODATION
   RUNNING PORTUGAL
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #26384c;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}


/* =========================================================
   TOP BAR
========================================================= */

.identity-bar {
    min-height: 38px;
    background: #26384c;
    color: #ffffff;

    display: flex;
    align-items: center;
}

.identity-inner {
    width: min(1220px,94%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.identity-place,
.identity-date {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.identity-date {
    color: #e3c3c6;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 100;

    background: #ffffff;

    border-bottom:
        1px solid rgba(38,56,76,.12);
}

.header-inner {
    width: min(1220px,94%);
    min-height: 100px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}

.brand {
    flex: 0 0 245px;
}

.brand img {
    width: 245px;
}


/* =========================================================
   MAIN MENU
========================================================= */

.main-menu {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 25px;
}

.main-menu > a,
.menu-dropdown-toggle {
    position: relative;

    min-height: 42px;

    display: inline-flex;
    align-items: center;

    border: 0;
    background: transparent;

    color: #26384c;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .07em;
    text-transform: uppercase;

    cursor: pointer;
}

.main-menu > a::after,
.menu-dropdown-toggle::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 3px;

    height: 2px;

    background: #8b1d28;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .2s ease;
}

.main-menu > a:hover::after,
.menu-dropdown-toggle:hover::after,
.menu-dropdown-toggle.active::after {
    transform: scaleX(1);
}


/* =========================================================
   INFO DROPDOWN
========================================================= */

.menu-dropdown {
    position: relative;
}

.menu-dropdown-toggle {
    gap: 7px;
}

.menu-dropdown-panel {
    position: absolute;

    top: calc(100% + 5px);
    left: 50%;

    width: 215px;

    background: #ffffff;

    border-top:
        3px solid #8b1d28;

    box-shadow:
        0 12px 32px rgba(0,0,0,.16);

    opacity: 0;
    visibility: hidden;

    transform:
        translateX(-50%)
        translateY(-7px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}

.menu-dropdown.open
.menu-dropdown-panel {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);
}

.menu-dropdown-panel a {
    display: block;

    padding: 12px 17px;

    border-bottom:
        1px solid #eeeeee;

    color: #344353;

    font-size: 12px;
    font-weight: 700;
}

.menu-dropdown-panel a:hover,
.menu-dropdown-panel a.active {
    background: #f7f3f2;
    color: #8b1d28;
}


/* =========================================================
   LANGUAGE
========================================================= */

.language-selector {
    position: relative;
}

.language-button {
    min-width: 70px;
    height: 38px;

    padding: 0 13px;

    border: 1px solid #d6dbe0;

    background: #ffffff;
    color: #26384c;

    font-size: 11px;
    font-weight: 900;

    cursor: pointer;
}

.language-panel {
    position: absolute;

    top: calc(100% + 7px);
    right: 0;

    width: 170px;

    background: #ffffff;

    border-top:
        3px solid #8b1d28;

    box-shadow:
        0 10px 30px rgba(0,0,0,.17);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-6px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}

.language-selector.open
.language-panel {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.language-panel a {
    display: block;

    padding: 11px 16px;

    border-bottom:
        1px solid #eeeeee;

    color: #344353;

    font-size: 12px;
    font-weight: 700;
}

.language-panel a:hover {
    background: #f7f3f2;
    color: #8b1d28;
}

.mobile-toggle {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hotel-hero {
    min-height: 380px;

    display: flex;
    align-items: center;

    background-image:

        linear-gradient(
            90deg,
            rgba(25,38,52,.88) 0%,
            rgba(25,38,52,.62) 36%,
            rgba(25,38,52,.16) 68%,
            rgba(25,38,52,.03) 100%
        ),

        url("../images/braga-hero-2027.jpg");

    background-size: cover;
    background-position: center;
}

.hotel-hero-inner {
    width: min(1220px,94%);
    margin: auto;
}

.hotel-hero-copy {
    max-width: 650px;

    color: #ffffff;
}

.hero-kicker,
.section-kicker {
    color: #8b1d28;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .20em;
    text-transform: uppercase;
}

.hero-kicker {
    color: #e9cdd0;
}

.hotel-hero h1 {
    margin-top: 12px;

    font-size:
        clamp(48px,5vw,70px);

    line-height: .98;

    font-weight: 900;

    text-transform: uppercase;
}

.hotel-hero p {
    max-width: 580px;

    margin-top: 19px;

    font-size: 18px;
    line-height: 1.55;
}


/* =========================================================
   COUNTDOWN
========================================================= */

.countdown-section {
    border-bottom:
        1px solid #e7e7e7;
}

.mini-countdown {
    width: min(1180px,94%);
    min-height: 82px;
    margin: auto;

    display: grid;

    grid-template-columns:
        1.35fr
        repeat(4,.7fr)
        1.25fr;
}

.mini-countdown > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 13px 12px;

    border-right:
        1px solid #eeeeee;
}

.countdown-intro {
    align-items: flex-start !important;
}

.countdown-intro strong {
    color: #26384c !important;
    font-size: 13px !important;
}

.countdown-intro span {
    color: #8b1d28 !important;
}

.mini-countdown strong {
    color: #8b1d28;

    font-size: 27px;
    font-weight: 900;
}

.mini-countdown span {
    margin-top: 5px;

    color: #777777;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.race-day {
    background: #26384c;
}

.race-day strong {
    color: #ffffff !important;
    font-size: 16px !important;
}

.race-day span {
    color: #e3c3c6 !important;
}


/* =========================================================
   INTRO
========================================================= */

.hotel-intro {
    padding:
        78px 20px 60px;
}

.hotel-intro-inner {
    max-width: 850px;

    margin: auto;

    text-align: center;
}

.hotel-intro h2 {
    margin-top: 10px;

    font-size:
        clamp(35px,4vw,50px);

    font-weight: 900;
}

.hotel-intro p {
    max-width: 740px;

    margin:
        18px auto 0;

    color: #68727c;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   STAY INFORMATION
========================================================= */

.stay-info-section {
    padding:
        0 20px 75px;
}

.stay-info-grid {
    width: min(1050px,94%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 12px;
}

.stay-info-card {
    min-height: 125px;

    padding: 23px;

    background: #f5f2ef;

    border-top:
        3px solid #8b1d28;
}

.stay-info-card span {
    color: #777777;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.stay-info-card strong {
    display: block;

    margin-top: 8px;

    color: #26384c;

    font-size: 17px;
    line-height: 1.4;
}


/* =========================================================
   BOOKING
========================================================= */

.booking-section {
    padding:
        80px 20px 90px;

    background: #f5f2ef;
}

.booking-container {
    width: min(1180px,96%);

    margin: auto;
}

.booking-heading {
    margin-bottom: 32px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.booking-heading h2 {
    margin-top: 9px;

    font-size:
        clamp(34px,4vw,48px);

    font-weight: 900;
}

.booking-heading p {
    margin-top: 10px;

    color: #68727c;
}

.running-portugal-tag {
    padding:
        13px 18px;

    border-left:
        3px solid #8b1d28;

    background: #ffffff;
}

.running-portugal-tag span {
    display: block;

    color: #888888;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .13em;

    text-transform: uppercase;
}

.running-portugal-tag strong {
    display: block;

    margin-top: 3px;

    color: #26384c;

    font-size: 13px;

    letter-spacing: .08em;
}


/* =========================================================
   STAY22
========================================================= */

.stay22-container {
    width: 100%;

    padding: 10px;

    background: #ffffff;

    border:
        1px solid #dedede;

    box-shadow:
        0 12px 35px rgba(38,56,76,.09);
}

#stay22-widget {
    width: 100%;
    min-height: 628px;

    display: block;

    border: 0;
}

.booking-note {
    max-width: 850px;

    margin:
        22px auto 0;

    text-align: center;
}

.booking-note p {
    color: #858585;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   BRAGA EXPERIENCE
========================================================= */

.braga-stay-section {
    padding:
        85px 20px;
}

.braga-stay-inner {
    width: min(1100px,94%);

    margin: auto;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 60px;

    align-items: center;
}

.braga-stay-copy h2 {
    margin-top: 9px;

    font-size:
        clamp(34px,4vw,48px);

    font-weight: 900;
}

.braga-stay-copy p {
    margin-top: 16px;

    color: #68727c;

    line-height: 1.7;
}

.stay-highlights {
    display: grid;

    gap: 12px;
}

.stay-highlights > div {
    padding: 24px;

    background: #f5f2ef;

    border-left:
        3px solid #8b1d28;
}

.stay-highlights span {
    color: #8b1d28;

    font-size: 9px;
    font-weight: 900;
}

.stay-highlights strong {
    display: block;

    margin-top: 4px;

    color: #26384c;

    font-size: 17px;
}

.stay-highlights p {
    margin-top: 6px;

    color: #68727c;

    font-size: 13px;
}


/* =========================================================
   RUNNING PORTUGAL
========================================================= */

.running-portugal-section {
    padding:
        70px 20px;

    background: #26384c;

    color: #ffffff;
}

.running-portugal-inner {
    width: min(900px,92%);

    margin: auto;

    display: grid;

    grid-template-columns:
        100px 1fr;

    gap: 35px;

    align-items: center;
}

.rp-mark {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        2px solid #e3c3c6;

    color: #ffffff;

    font-size: 27px;
    font-weight: 900;

    letter-spacing: .05em;
}

.rp-copy > span {
    color: #e3c3c6;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .17em;

    text-transform: uppercase;
}

.rp-copy h2 {
    margin-top: 7px;

    color: #ffffff;

    font-size: 34px;
}

.rp-copy p {
    max-width: 650px;

    margin-top: 12px;

    color:
        rgba(255,255,255,.72);

    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.hotel-cta {
    padding:
        60px 20px;

    background: #8b1d28;

    color: #ffffff;
}

.hotel-cta-inner {
    width: min(1050px,92%);

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.hotel-cta span {
    color: #e3c3c6;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .13em;

    text-transform: uppercase;
}

.hotel-cta h2 {
    margin-top: 7px;

    font-size: 34px;
}

.hotel-cta-button {
    min-width: 185px;
    height: 49px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #8b1d28;

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;

    transition:
        background .2s ease,
        color .2s ease;
}

.hotel-cta-button:hover {
    background: #26384c;
    color: #ffffff;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding:
        38px 20px 28px;

    background: #1d2c3b;

    color: #ffffff;
}

.footer-main {
    width: min(1050px,92%);

    margin: auto;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;
}

.footer-brand strong,
.footer-event strong {
    display: block;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: .06em;
}

.footer-brand span,
.footer-event span {
    display: block;

    margin-top: 5px;

    color:
        rgba(255,255,255,.58);

    font-size: 10px;
}

.footer-event {
    text-align: right;
}

.footer-disclaimer {
    width: min(1050px,92%);

    margin:
        25px auto 0;

    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,.10);
}

.footer-disclaimer p {
    max-width: 800px;

    color:
        rgba(255,255,255,.47);

    font-size: 9px;
    line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .stay-info-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .braga-stay-inner {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {

    .brand {
        flex:
            0 0 180px;
    }

    .brand img {
        width: 180px;
    }

    .mobile-toggle {
        display: flex;

        width: 42px;
        height: 38px;

        align-items: center;
        justify-content: center;

        border:
            1px solid #dddddd;

        background: #ffffff;

        color: #26384c;

        font-size: 20px;

        cursor: pointer;
    }

    .main-menu {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        gap: 0;

        background: #ffffff;

        box-shadow:
            0 12px 25px rgba(0,0,0,.12);
    }

    .site-header.menu-open
    .main-menu {
        display: flex;
    }

    .main-menu > a,
    .menu-dropdown-toggle {
        width: 100%;

        min-height: 48px;

        justify-content: center;

        border-bottom:
            1px solid #eeeeee;
    }

    .menu-dropdown {
        width: 100%;
    }

    .menu-dropdown-panel {
        position: static;

        width: 100%;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        box-shadow: none;
    }

    .menu-dropdown.open
    .menu-dropdown-panel {
        display: block;
    }

    .menu-dropdown-panel a {
        text-align: center;
    }

    .language-selector {
        margin-left: auto;
    }

    .mini-countdown {
        grid-template-columns:
            repeat(4,1fr);
    }

    .countdown-intro,
    .race-day {
        grid-column:
            1 / 5;
    }

    .booking-heading {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .brand {
        flex:
            0 0 150px;
    }

    .brand img {
        width: 150px;
    }

    .hotel-hero {
        min-height: 330px;
    }

    .hotel-hero h1 {
        font-size: 40px;
    }

    .stay-info-grid {
        grid-template-columns: 1fr;
    }

    #stay22-widget {
        min-height: 650px;
    }

    .running-portugal-inner {
        grid-template-columns: 1fr;
    }

    .rp-mark {
        width: 70px;
        height: 70px;
    }

    .hotel-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hotel-cta-button {
        width: 100%;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-event {
        text-align: left;
    }

}