﻿/* =========================================================
       ORLOVI — SITE IDENTITY
       ========================================================= */

/* #region VARIABLES
       ========================================================= */

:root {
    /* Primary brand */
    --orlovi-gold: #8D6A2F;
    --orlovi-gold-dark: #725523;
    --orlovi-gold-light: #C9B894;
    --orlovi-gold-light-plus: #F5F0E5;
    /* Secondary brand */
    --orlovi-blue: #0D4077;
    --orlovi-blue-dark: #0A315B;
    --orlovi-blue-dark-plus: #031426;
    /* Accent */
    --orlovi-red: #C7363D;
    --orlovi-red-dark: #A72D33;
    /* Status */
    --orlovi-success: #198754;
    --orlovi-warning: #D39E00;
    --orlovi-info: #0D6EFD;
    --orlovi-danger: #DC3545;
    /* Neutral */
    --orlovi-white: #FFFFFF;
    --orlovi-bg: #F8F9FA;
    --orlovi-text: #343A40;
    --orlovi-muted: #6C757D;
    --orlovi-border: #DEE2E6;
    /* Components */
    --orlovi-radius: 0.25rem;
    --orlovi-transition: 0.2s ease;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* #endregion */


/* #region BASE / TYPOGRAPHY
       ========================================================= */

html {
    position: relative;
    min-height: 100%;
    font-size: 16px;
}

body {
    font-family: 'Manrope', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    color: var(--orlovi-text);
    background-color: var(--orlovi-white);
    max-width: 100%;
    overflow-x: hidden;
    line-height: 1.65;
    overflow-wrap: break-word;
    word-break: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--orlovi-blue-dark-plus);
}

.text-muted {
    color: var(--orlovi-muted) !important;
}

.content {
    flex: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
    }

.o-page-container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.o-pattern {
    width: 100%;
    height: 18px;
    overflow: hidden;
    background-image: url('/img/patterns/orlovi-pattern.png');
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 110px;
}

/* #endregion */


/* #region BRAND COLORS / UTILITIES
       ========================================================= */

.o-home-section {
    margin-bottom: 4rem;
}

.o-bg-red {
    background-color: var(--orlovi-red);
}

.o-bg-blue {
    background-color: var(--orlovi-blue);
}

.o-bg-gold {
    background-color: var(--orlovi-gold);
}

.o-color-red {
    color: var(--orlovi-red);
}

.o-color-blue {
    color: var(--orlovi-blue);
}

.o-color-gold {
    color: var(--orlovi-gold);
}

.o-color-white {
    color: var(--orlovi-white);
}

.o-pointer,
.o-pointer-red,
.o-pointer-blue {
    cursor: pointer;
}

    .o-pointer-red:hover {
        color: var(--orlovi-red);
    }

    .o-pointer-blue:hover {
        color: var(--orlovi-blue);
    }

/* #endregion */


/* #region HEADER / NAVIGATION
       ========================================================= */

/* #region TOP BAR
       ========================================================= */
.o-top-bar {
    background-color: var(--orlovi-gold-light-plus);
    border-bottom: 1px solid rgba(141, 106, 47, 0.15);
}

.o-top-bar-inner {
    min-height: 42px;
    padding: 0.35rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.o-top-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1rem;
    margin-right: 1rem;
    border-right: 1px solid rgba(141, 106, 47, 0.25);
}

.o-top-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--orlovi-blue-dark-plus);
    font-size: 1rem;
    transition: color var(--orlovi-transition), transform var(--orlovi-transition);
}

    .o-top-social-link:hover {
        color: var(--orlovi-gold);
        transform: translateY(-1px);
    }

.o-top-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.o-language-switcher {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

    .o-language-switcher img {
        flex-shrink: 0;
    }

.o-language-flag-ch {
    margin-left: 0.45rem;
}

.o-language-link {
    position: relative;
    padding: 0.25rem 0.3rem;
    border: 0;
    background: transparent;
    color: var(--orlovi-blue-dark-plus);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: color var(--orlovi-transition);
}

    .o-language-link:hover {
        color: var(--orlovi-gold);
    }

    .o-language-link.active {
        color: var(--orlovi-gold);
    }

        .o-language-link.active::after {
            content: "";
            position: absolute;
            left: 0.3rem;
            right: 0.3rem;
            bottom: 0;
            height: 2px;
            background-color: var(--orlovi-gold);
        }

.o-top-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(141, 106, 47, 0.35);
    border-radius: var(--orlovi-radius);
    background-color: transparent;
    color: var(--orlovi-blue-dark-plus);
    cursor: pointer;
    transition: color var(--orlovi-transition), background-color var(--orlovi-transition), border-color var(--orlovi-transition);
}

    .o-top-menu-button:hover {
        color: var(--orlovi-white);
        background-color: var(--orlovi-gold);
        border-color: var(--orlovi-gold);
    }

.o-top-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

@media (max-width: 575.98px) {

    .o-top-bar-inner {
        min-height: 40px;
        padding: 0.3rem 0.75rem;
    }

    .o-top-social {
        gap: 0.65rem;
        padding-right: 0.65rem;
        margin-right: 0.65rem;
    }

    .o-top-social-link {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .o-top-actions {
        gap: 0.45rem;
    }

    .o-language-switcher {
        gap: 0.1rem;
    }

    .o-language-link {
        padding: 0.2rem 0.2rem;
        font-size: 0.7rem;
    }

    .o-language-flag-ch {
        margin-left: 0.25rem;
    }

    .o-top-menu-button {
        width: 34px;
        height: 32px;
    }
}

/* #endregion */


.o-header {
    background-color: var(--orlovi-white);
}

/* #region BRAND / NAVBAR
       ========================================================= */

.o-brand-nav {
    background-color: var(--orlovi-white);
    border-bottom: 1px solid rgba(141, 106, 47, 0.15);
}

.o-brand-nav-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.o-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.o-brand-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.o-brand-name {
    margin-left: 0.9rem;
    color: var(--orlovi-blue-dark-plus);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.o-brand:hover {
    color: inherit;
}

@media (max-width: 575.98px) {

    .o-brand-nav-inner {
        min-height: 76px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .o-brand-logo {
        width: 52px;
        height: 52px;
    }

    .o-brand-name {
        margin-left: 0.6rem;
        font-size: 1.05rem;
        letter-spacing: 0.015em;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {

    .o-brand-nav-inner {
        min-height: 82px;
    }

    .o-brand-logo {
        width: 58px;
        height: 58px;
    }

    .o-brand-name {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {

    .o-brand-logo {
        width: 62px;
        height: 62px;
    }

    .o-brand-name {
        font-size: 1.3rem;
    }
}

@media (min-width: 1200px) {

    .o-brand-nav-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .o-brand-logo {
        width: 68px;
        height: 68px;
    }

    .o-brand-name {
        font-size: 1.45rem;
    }
}

/* #endregion */


/* #region MAIN MENU BUTTON
       ========================================================= */

.o-main-menu-button {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    position: relative;
    padding: 0.45rem 0;
    border: 0;
    background: transparent;
    color: var(--orlovi-blue-dark-plus);
    font-family: inherit;
    cursor: pointer;
}

.o-main-menu-label {
    position: relative;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

    .o-main-menu-label::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.35rem;
        width: 0;
        height: 2px;
        background-color: var(--orlovi-gold);
        transition: width var(--orlovi-transition);
    }

.o-main-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 1rem;
    transition: color var(--orlovi-transition), transform var(--orlovi-transition);
}

.o-main-menu-button:hover {
    color: var(--orlovi-gold);
}

    .o-main-menu-button:hover .o-main-menu-label::after {
        width: 100%;
    }

    .o-main-menu-button:hover .o-main-menu-icon {
        transform: translateX(2px);
    }


@media (max-width: 575.98px) {

    .o-main-menu-label {
        font-size: 0.78rem;
    }

    .o-main-menu-icon {
        width: 30px;
        height: 30px;
    }

    .o-main-menu-button {
        gap: 0.45rem;
    }
}

/* #endregion */


/* #region OFFCANVAS
       ========================================================= */
.o-offcanvas {
    width: min(420px, 88vw);
    background-color: var(--orlovi-gold-light-plus);
    border-left: 1px solid rgba(141, 106, 47, 0.18);
}

.o-offcanvas-header {
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(141, 106, 47, 0.22);
}

.o-offcanvas-title {
    margin: 0;
    color: var(--orlovi-blue-dark-plus);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.o-offcanvas-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(3, 20, 38, 0.18);
    border-radius: 50%;
    background: transparent;
    color: var(--orlovi-blue-dark-plus);
    font-size: 1rem;
    transition: color var(--orlovi-transition), background-color var(--orlovi-transition), border-color var(--orlovi-transition);
}

    .o-offcanvas-close:hover {
        color: var(--orlovi-white);
        background-color: var(--orlovi-gold);
        border-color: var(--orlovi-gold);
    }

.o-offcanvas-body {
    padding: 0 1.5rem 2rem;
}

.o-offcanvas-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.o-offcanvas-item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(141, 106, 47, 0.22);
}

.o-offcanvas-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 0.9rem 0;
    border: 0;
    background: transparent;
    color: var(--orlovi-blue-dark-plus);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: color var(--orlovi-transition), padding-left var(--orlovi-transition);
}

    .o-offcanvas-link:hover {
        color: var(--orlovi-gold);
        padding-left: 0.35rem;
    }

    .o-offcanvas-link.active {
        color: var(--orlovi-gold);
        font-weight: 700;
    }

.o-offcanvas-expand {
    cursor: pointer;
}

.o-offcanvas-chevron {
    color: var(--orlovi-gold);
    font-size: 0.8rem;
    transition: transform var(--orlovi-transition);
}

.o-offcanvas-expand:not(.collapsed) .o-offcanvas-chevron {
    transform: rotate(180deg);
}

.o-offcanvas-submenu {
    margin: 0;
    padding: 0 0 0.65rem 1rem;
    list-style: none;
}

    .o-offcanvas-submenu li {
        margin: 0;
        padding: 0;
    }

.o-offcanvas-sub-link {
    display: block;
    padding: 0.6rem 0;
    color: var(--orlovi-text);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--orlovi-transition), padding-left var(--orlovi-transition);
}

    .o-offcanvas-sub-link::before {
        content: "—";
        margin-right: 0.5rem;
        color: var(--orlovi-gold);
    }

    .o-offcanvas-sub-link:hover {
        color: var(--orlovi-gold-dark);
        padding-left: 0.25rem;
    }

.o-offcanvas-logout {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(141, 106, 47, 0.22);
}

    .o-offcanvas-logout .o-offcanvas-link {
        color: var(--orlovi-red-dark);
    }

        .o-offcanvas-logout .o-offcanvas-link:hover {
            color: var(--orlovi-red);
        }

/* #endregion */


/* #endregion */


/* #region BRAND PATTERN
       ========================================================= */
.pattern-bar {
    height: 40px;
    background-color: rgba(141, 106, 47, 0.50);
    background-image: url('/img/logo/pattern.png');
    background-repeat: repeat-x;
    background-size: auto 40px;
    background-position: center;
}

.logo-center {
    height: 50px;
    position: relative;
    z-index: 1;
}

/* #endregion */


/* #region BUTTONS / FORMS
       ========================================================= */

/* #region BUTTONS
       ========================================================= */

.o-btn-primary,
.o-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 38px;
    padding: 0.375rem 0.75rem;
    border-radius: var(--orlovi-radius);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: color var(--orlovi-transition), background-color var(--orlovi-transition), border-color var(--orlovi-transition), transform var(--orlovi-transition);
}


/* PRIMARY
       --------------------------------------------------------- */

.o-btn-primary {
    color: var(--orlovi-white);
    background-color: var(--orlovi-gold);
    border: 1px solid var(--orlovi-gold);
}

    .o-btn-primary:hover,
    .o-btn-primary:focus-visible {
        color: var(--orlovi-white);
        background-color: var(--orlovi-gold-dark);
        border-color: var(--orlovi-gold-dark);
        transform: translateY(-1px);
    }

    .o-btn-primary:active {
        transform: translateY(0);
    }


/* SECONDARY
       --------------------------------------------------------- */

.o-btn-secondary {
    color: var(--orlovi-blue-dark-plus);
    background-color: var(--orlovi-gold-light-plus);
    border: 1px solid var(--orlovi-gold-light);
}

    .o-btn-secondary:hover,
    .o-btn-secondary:focus-visible {
        color: var(--orlovi-blue-dark-plus);
        background-color: var(--orlovi-gold-light);
        border-color: var(--orlovi-gold-light);
        transform: translateY(-1px);
    }


/* SMALL
       --------------------------------------------------------- */

.o-btn-sm {
    min-height: 38px;
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
}


/* FOCUS
       --------------------------------------------------------- */

.o-btn-primary:focus-visible,
.o-btn-secondary:focus-visible {
    outline: 3px solid rgba(141, 106, 47, 0.25);
    outline-offset: 2px;
}


/* #endregion */



/* =========================================
   Minimal form
   ========================================= */

.o-form-section {
    width: 100%;
}

.o-form-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

    .o-form-section-title::after {
        content: "";
        height: 1px;
        flex: 1;
        background: var(--orlovi-border);
    }

    .o-form-section-title h2 {
        margin: 0;
        padding: 0;
        font-size: 1rem;
        font-weight: 700;
        white-space: nowrap;
    }


/* Floating field */

.o-floating-field {
    position: relative;
}

    .o-floating-field .form-control {
        height: 46px !important;
        min-height: 46px !important;
        padding: 0.55rem 0.9rem !important;
        line-height: 1.3;
    }

    .o-floating-field label {
        position: absolute;
        top: -0.55rem;
        left: 0.85rem;
        padding: 0 0.4rem;
        background: var(--orlovi-card-bg, #fff);
        color: var(--orlovi-text-muted);
        font-size: 0.78rem;
        font-weight: 600;
        line-height: 1;
        pointer-events: none;
    }

    .o-floating-field .form-control:focus {
        border-color: var(--orlovi-gold);
        box-shadow: none;
    }

        .o-floating-field .form-control:focus + label {
            color: var(--orlovi-gold);
        }

.o-form-fields {
    --bs-gutter-y: 0.75rem;
}

.row.g-3 {
    --bs-gutter-y: 0.75rem;
}


/* Volunteer options */

.o-volunteer-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.o-volunteer-option {
    display: block;
    margin: 0;
    cursor: pointer;
}

.o-volunteer-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.o-volunteer-option-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 52px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--orlovi-border);
    border-radius: var(--orlovi-radius);
    transition: border-color var(--orlovi-transition), background-color var(--orlovi-transition), transform var(--orlovi-transition);
}

.o-volunteer-option:hover
.o-volunteer-option-content {
    border-color: var(--orlovi-gold);
}

.o-volunteer-radio:checked + .o-volunteer-option-content {
    border-color: var(--orlovi-gold);
    background: rgba(201, 162, 39, 0.06);
}

.o-volunteer-option-name {
    flex: 1;
    font-weight: 600;
}

.o-volunteer-option-description {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--orlovi-text-muted);
}

.o-volunteer-option-count {
    color: var(--orlovi-text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
}

.o-volunteer-option-full {
    color: var(--bs-danger);
    font-size: 0.8rem;
    font-weight: 600;
}

.o-volunteer-option.is-full {
    cursor: not-allowed;
    opacity: 0.55;
}

    .o-volunteer-option.is-full
    .o-volunteer-option-content {
        background: #f8f8f8;
    }

    .o-volunteer-option.is-full:hover
    .o-volunteer-option-content {
        border-color: var(--orlovi-border);
    }

.o-info-message {
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--orlovi-gold);
    background: var(--orlovi-light);
    color: var(--orlovi-text);
}

.o-volunteer-assignments {
    display: flex;
    flex-direction: column;
}

.o-volunteer-assignment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--orlovi-border);
}

    .o-volunteer-assignment:first-child {
        padding-top: 0;
    }

    .o-volunteer-assignment:last-child {
        border-bottom: 0;
    }

.o-volunteer-assignment-main {
    min-width: 0;
}

.o-volunteer-assignment-status {
    flex-shrink: 0;
}

@media (max-width: 576px) {

    .o-volunteer-assignment {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }
}


/* #endregion */


/* #region SECTION TITLES
       ========================================================= */

.o-section-title {
    width: 100%;
    margin-bottom: 2rem;
}

.o-section-title-text {
    margin: 0;
    color: var(--orlovi-blue-dark-plus);
    font-size: clamp(1.5rem, 2.5vw, 2.15rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    overflow-wrap: break-word;
    word-break: normal;
}

.o-section-title-line {
    width: 100%;
    height: 1px;
    margin-top: 0.75rem;
    background-color: var(--orlovi-border);
    position: relative;
}

    .o-section-title-line::before {
        content: "";
        position: absolute;
        left: 0;
        top: -1px;
        width: 98px;
        height: 3px;
        background-color: var(--orlovi-gold);
    }

/* #endregion */


/* #region PAGE TITLE
       ========================================================= */

.o-page-title {
    margin-bottom: 2.5rem;
}

    .o-page-title h1 {
        margin: 0;
        color: var(--orlovi-blue-dark-plus);
        font-size: clamp(2rem, 4vw, 3.25rem);
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .o-page-title::after {
        content: "";
        display: block;
        width: 90px;
        height: 4px;
        margin-top: 0.9rem;
        background-color: var(--orlovi-gold);
    }

/* #endregion */


/* #region HOME CONTENT BLOCKS
       ========================================================= */

.o-info-block {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.o-info-block-media {
    display: flex;
    justify-content: center;
}

.o-info-block-image {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--orlovi-radius);
}

.o-info-block-content {
    min-width: 0;
}

    .o-info-block-content p {
        margin: 0 0 1rem;
        color: var(--orlovi-text);
        font-size: 1rem;
        line-height: 1.75;
        overflow-wrap: break-word;
    }

        .o-info-block-content p:last-of-type {
            margin-bottom: 0;
        }

.o-info-block-action {
    margin-top: 1.5rem;
}


/* HOME TEXT SECTIONS
       --------------------------------------------------------- */

.o-home-section > p {
    max-width: 900px;
    margin-bottom: 1.1rem;
    color: var(--orlovi-text);
    font-size: 1rem;
    line-height: 1.75;
    overflow-wrap: break-word;
}


/* MOBILE
       --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .o-info-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .o-info-block-media {
        justify-content: flex-start;
    }

    .o-info-block-image {
        width: 180px;
        height: 180px;
    }

    .o-info-block-content p {
        line-height: 1.7;
    }
}

.o-home-copy {
    max-width: 900px;
}

    .o-home-copy p {
        margin-bottom: 1.1rem;
        color: var(--orlovi-text);
        font-size: 1rem;
        line-height: 1.75;
    }

.o-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.o-home-copy-after {
    margin-top: 1.5rem;
}

@media (max-width: 575.98px) {

    .o-home-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .o-home-actions .o-btn-primary,
        .o-home-actions .o-btn-secondary {
            width: 100%;
        }
}

/* #endregion */


/* #region CARDS
       ========================================================= */
.o-card {
    border: 1px solid var(--orlovi-border);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-white);
}

.o-card-header {
    color: var(--orlovi-white);
    background-color: var(--orlovi-gold);
}

.o-card-title {
    color: var(--orlovi-gold);
}

/* #endregion */


/* #region EVENTS
       ========================================================= */

.events-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
}

    .events-scroll img {
        height: 440px;
        width: auto;
        max-width: 90vw;
        flex-shrink: 0;
        border-radius: var(--orlovi-radius);
        object-fit: cover;
    }

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: rgba(141, 106, 47, 0.30);
    border-radius: var(--orlovi-radius);
}


/* #region HERO EVENT
       ========================================================= */

.o-hero-event {
    width: 100%;
    margin-bottom: 4rem;
}

.o-hero-event-inner {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--orlovi-border);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-white);
}


/* IMAGE
       --------------------------------------------------------- */

.o-hero-event-media {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--orlovi-bg);
    overflow: hidden;
}

.o-hero-event-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: calc(var(--orlovi-radius) - 0.15rem);
    object-fit: contain;
}


/* CONTENT
       --------------------------------------------------------- */

.o-hero-event-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 3rem 3.5rem;
}


/* LABEL
       --------------------------------------------------------- */

.o-hero-event-label {
    margin-bottom: 1rem;
    color: var(--orlovi-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* TITLE
       --------------------------------------------------------- */

.o-hero-event-title {
    margin: 0;
    color: var(--orlovi-blue-dark-plus);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    overflow-wrap: break-word;
    word-break: normal;
}


/* LINE
       --------------------------------------------------------- */

.o-hero-event-line {
    width: 100%;
    height: 1px;
    margin: 1.5rem 0 1.75rem;
    background-color: var(--orlovi-border);
    position: relative;
}

    .o-hero-event-line::before {
        content: "";
        position: absolute;
        left: 0;
        top: -1px;
        width: 98px;
        height: 3px;
        background-color: var(--orlovi-gold);
    }


/* META
       --------------------------------------------------------- */

.o-hero-event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.o-hero-event-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--orlovi-text);
    font-size: 0.98rem;
    line-height: 1.5;
}

    .o-hero-event-meta-item i {
        width: 18px;
        margin-top: 0.2rem;
        flex-shrink: 0;
        color: var(--orlovi-blue-dark-plus);
        text-align: center;
    }


/* DESCRIPTION
       --------------------------------------------------------- */

.o-hero-event-description {
    max-width: 720px;
    margin: 1.75rem 0 0;
    color: var(--orlovi-text);
    font-size: 1rem;
    line-height: 1.7;
    overflow-wrap: break-word;
}


/* PRICING
       --------------------------------------------------------- */

.o-hero-event-pricing {
    margin-top: 1.75rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--orlovi-gold-light);
    border-left: 4px solid var(--orlovi-gold-dark);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-gold-light-plus);
}

.o-hero-event-pricing-title {
    margin-bottom: 0.5rem;
    color: var(--orlovi-blue-dark-plus);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.o-hero-event-pricing-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--orlovi-text);
    font-size: 0.9rem;
}

    .o-hero-event-pricing-content strong {
        color: var(--orlovi-blue-dark-plus);
        font-weight: 700;
        margin-left: 0.25rem;
    }


/* ACTIONS
       --------------------------------------------------------- */

.o-hero-event-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.o-hero-event-presale {
    margin-top: 1.5rem;
}


/* TABLET
       --------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 1199.98px) {

    .o-hero-event-inner {
        grid-template-columns: 40% 60%;
    }

    .o-hero-event-content {
        padding: 2.5rem 2.5rem;
    }

    .o-hero-event-title {
        font-size: 2.35rem;
    }

    .o-hero-event-media {
        padding: 1.25rem;
    }

    .o-hero-event-image {
        max-width: 94%;
        max-height: 94%;
    }
}


/* MOBILE
       --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .o-hero-event {
        margin-bottom: 3rem;
    }

    .o-hero-event-inner {
        display: flex;
        flex-direction: column;
        max-height: none;
        overflow: hidden;
    }

    .o-hero-event-media {
        width: 100%;
        padding: 0;
    }

    .o-hero-event-image {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .o-hero-event-content {
        padding: 2rem 1.25rem 2.25rem;
        overflow: visible;
    }

    .o-hero-event-label {
        margin-bottom: 0.75rem;
    }

    .o-hero-event-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .o-hero-event-line {
        margin: 1.25rem 0 1.5rem;
    }

    .o-hero-event-description {
        margin-top: 1.5rem;
        font-size: 0.95rem;
    }

    .o-hero-event-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1.75rem;
    }

        .o-hero-event-actions .o-btn-primary,
        .o-hero-event-actions .o-btn-secondary {
            width: 100%;
        }

    .o-hero-event-pricing {
        margin-top: 1.5rem;
    }
}

/* #endregion */


/* #region EVENT REGISTRATION
       ========================================================= */

.o-register {
    width: 100%;
    margin-bottom: 4rem;
}

.o-register-card {
    overflow: hidden;
    border: 1px solid var(--orlovi-border);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-white);
}


/* HEADER
       --------------------------------------------------------- */

.o-register-header {
    padding: 2.5rem 3rem;
    background-color: var(--orlovi-gold-light-plus);
    border-bottom: 1px solid var(--orlovi-border);
}

.o-register-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--orlovi-gold-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

    .o-register-label i {
        font-size: 0.9rem;
    }

.o-register-title {
    margin: 0;
    color: var(--orlovi-blue-dark-plus);
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.12;
    overflow-wrap: break-word;
}

.o-register-event-meta {
    margin-top: 1rem;
    color: var(--orlovi-text);
    font-size: 1rem;
}

    .o-register-event-meta i {
        margin-right: 0.45rem;
        color: var(--orlovi-gold-dark);
    }


/* BODY
       --------------------------------------------------------- */

.o-register-body {
    padding: 3rem;
}


/* FORM SECTION
       --------------------------------------------------------- */

.o-form-section .row {
    --bs-gutter-y: 0.5rem;
    --bs-gutter-x: 1.25rem;
}

.o-form-section {
    margin-bottom: 2.25rem;
}

    .o-form-section:last-of-type {
        margin-bottom: 2rem;
    }

.o-form-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

    .o-form-section-title h2 {
        flex: 0 1 auto;
        margin: 0;
        color: var(--orlovi-blue-dark-plus);
        font-size: 1.35rem;
        font-weight: 700;
        line-height: 1.2;
        overflow-wrap: break-word;
    }

    .o-form-section-title > div {
        flex: 1 1 auto;
        height: 1px;
        background-color: var(--orlovi-border);
        position: relative;
    }

        .o-form-section-title > div::before {
            content: "";
            position: absolute;
            left: 0;
            top: -1px;
            width: 64px;
            height: 3px;
            background-color: var(--orlovi-gold-dark);
        }


/* FORM CONTROLS
       --------------------------------------------------------- */

.o-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--orlovi-blue-dark-plus);
    font-size: 0.9rem;
    font-weight: 600;
}

.o-form-control {
    min-height: 46px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--orlovi-border);
    border-radius: var(--orlovi-radius);
    color: var(--orlovi-text);
    background-color: var(--orlovi-white);
    box-shadow: none;
    transition: border-color var(--orlovi-transition), box-shadow var(--orlovi-transition);
}

    .o-form-control:focus {
        border-color: var(--orlovi-gold);
        box-shadow: 0 0 0 3px rgba(141, 106, 47, 0.12);
    }

.o-form-error {
    display: block;
    margin-top: 0.35rem;
    color: #b42318;
    font-size: 0.82rem;
}


/* TICKET TYPES
       --------------------------------------------------------- */

.o-ticket-type {
    height: 100%;
    padding: 1.25rem;
    border: 1px solid var(--orlovi-border);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-white);
}

.o-ticket-label {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--orlovi-blue-dark-plus);
    font-size: 0.9rem;
    font-weight: 700;
}

    .o-ticket-label small {
        color: var(--orlovi-text);
        font-size: 0.78rem;
        font-weight: 500;
        white-space: nowrap;
    }


/* INFO
       --------------------------------------------------------- */

.o-register-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--orlovi-gold-light);
    border-left: 4px solid var(--orlovi-gold-dark);
    border-radius: var(--orlovi-radius);
    color: var(--orlovi-text);
    background-color: var(--orlovi-gold-light-plus);
    font-size: 0.9rem;
    line-height: 1.55;
}

    .o-register-info i {
        margin-top: 0.15rem;
        flex-shrink: 0;
        color: var(--orlovi-gold-dark);
    }


/* TOTAL
       --------------------------------------------------------- */

.o-register-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 2rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--orlovi-radius);
    color: var(--orlovi-white);
    background-color: var(--orlovi-gold-dark);
}

.o-register-total-label {
    font-size: 1rem;
    font-weight: 700;
}

.o-register-total-value {
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}


/* TWINT
       --------------------------------------------------------- */

.o-twint-payment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid var(--orlovi-gold-light);
    border-left: 4px solid var(--orlovi-gold-dark);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-gold-light-plus);
}

.o-twint-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.o-twint-logo {
    width: 74px;
    height: auto;
    flex-shrink: 0;
}

.o-twint-content h3 {
    margin: 0 0 0.5rem;
    color: var(--orlovi-blue-dark-plus);
    font-size: 1.1rem;
    font-weight: 700;
}

.o-twint-content p {
    margin-bottom: 0.5rem;
}

.o-twint-number {
    margin-top: 0.75rem;
    color: var(--orlovi-blue-dark-plus);
    font-weight: 700;
}

    .o-twint-number i {
        margin-right: 0.4rem;
        color: var(--orlovi-gold-dark);
    }


/* ACTION
       --------------------------------------------------------- */

.o-register-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
}

.o-register-submit {
    min-height: 50px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 0.95rem;
}


/* VALIDATION
       --------------------------------------------------------- */

.o-form-validation {
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    border: 1px solid #e6b8b5;
    border-left: 4px solid #b42318;
    border-radius: var(--orlovi-radius);
    color: #7a271a;
    background-color: #fff5f4;
}


/* MOBILE
       --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .o-register-header {
        padding: 2rem 1.25rem;
    }

    .o-register-body {
        padding: 2rem 1.25rem;
    }

    .o-form-section {
        margin-bottom: 2.5rem;
    }

    .o-form-section-title {
        display: block;
    }

        .o-form-section-title h2 {
            margin-bottom: 0.65rem;
        }

        .o-form-section-title > div {
            width: 100%;
        }

    .o-ticket-type {
        padding: 1rem;
    }

    .o-register-total {
        align-items: flex-start;
        flex-direction: column;
    }

    .o-register-total-value {
        font-size: 1.4rem;
    }

    .o-twint-content {
        flex-direction: column;
        gap: 1rem;
    }

    .o-register-actions {
        justify-content: stretch;
    }

    .o-register-submit {
        width: 100%;
    }
}

/* #endregion */


/* #region REGISTRATION CONFIRMATION
       ========================================================= */

.o-confirmation {
    width: 100%;
    margin-bottom: 4rem;
}

.o-confirmation-card {
    overflow: hidden;
    border: 1px solid var(--orlovi-border);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-white);
}


/* HEADER
       --------------------------------------------------------- */

.o-confirmation-header {
    padding: 3rem;
    text-align: center;
    background-color: var(--orlovi-gold-light-plus);
    border-bottom: 1px solid var(--orlovi-border);
}

.o-confirmation-icon {
    margin-bottom: 1rem;
    color: var(--orlovi-gold-dark);
    font-size: 3.5rem;
    line-height: 1;
}

.o-confirmation-title {
    margin: 0;
    color: var(--orlovi-blue-dark-plus);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
}

.o-confirmation-order {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0.9rem 1.5rem;
    border: 1px solid var(--orlovi-gold-light);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-white);
}

.o-confirmation-order-label {
    color: var(--orlovi-text);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.o-confirmation-order-code {
    margin-top: 0.2rem;
    color: var(--orlovi-gold-dark);
    font-size: 1.45rem;
    letter-spacing: 0.04em;
}


/* BODY
       --------------------------------------------------------- */

.o-confirmation-body {
    padding: 3rem;
}


/* STATUS
       --------------------------------------------------------- */

.o-confirmation-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--orlovi-border);
}

.o-confirmation-status-label {
    color: var(--orlovi-text);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* TWINT
       --------------------------------------------------------- */

.o-confirmation-twint {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border: 1px solid var(--orlovi-gold-light);
    border-left: 4px solid var(--orlovi-gold-dark);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-gold-light-plus);
}

.o-confirmation-twint-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.o-confirmation-twint-logo {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    object-fit: contain;
}

.o-confirmation-twint-content h2 {
    margin: 0 0 0.5rem;
    color: var(--orlovi-blue-dark-plus);
    font-size: 1.1rem;
    font-weight: 700;
}

.o-confirmation-twint-content p {
    margin-bottom: 0.5rem;
}

.o-confirmation-twint-number {
    margin-top: 0.75rem;
    color: var(--orlovi-blue-dark-plus);
    font-weight: 700;
}

    .o-confirmation-twint-number i {
        margin-right: 0.4rem;
        color: var(--orlovi-gold-dark);
    }


/* SECTION TITLE
       --------------------------------------------------------- */

.o-confirmation-section {
    margin-bottom: 2.5rem;
}

.o-confirmation-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

    .o-confirmation-section-title h2 {
        flex: 0 1 auto;
        margin: 0;
        color: var(--orlovi-blue-dark-plus);
        font-size: 1.35rem;
        font-weight: 700;
    }

    .o-confirmation-section-title > div {
        flex: 1 1 auto;
        height: 1px;
        background-color: var(--orlovi-border);
        position: relative;
    }

        .o-confirmation-section-title > div::before {
            content: "";
            position: absolute;
            left: 0;
            top: -1px;
            width: 64px;
            height: 3px;
            background-color: var(--orlovi-gold-dark);
        }


/* DETAILS
       --------------------------------------------------------- */

.o-confirmation-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--orlovi-border);
    border-radius: var(--orlovi-radius);
    overflow: hidden;
}

.o-confirmation-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.25rem;
    background-color: var(--orlovi-white);
}

    .o-confirmation-detail:nth-child(odd) {
        border-right: 1px solid var(--orlovi-border);
    }

    .o-confirmation-detail:nth-child(n + 3) {
        border-top: 1px solid var(--orlovi-border);
    }

    .o-confirmation-detail span {
        color: var(--orlovi-text);
        font-size: 0.78rem;
        font-weight: 600;
    }

    .o-confirmation-detail strong {
        color: var(--orlovi-blue-dark-plus);
        font-size: 0.95rem;
        overflow-wrap: break-word;
    }


/* TOTAL
       --------------------------------------------------------- */

.o-confirmation-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--orlovi-radius);
    color: var(--orlovi-white);
    background-color: var(--orlovi-gold-dark);
}

    .o-confirmation-total span {
        font-weight: 700;
    }

    .o-confirmation-total strong {
        font-size: 1.35rem;
    }


/* ACTION
       --------------------------------------------------------- */

.o-confirmation-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
}


/* MOBILE
       --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .o-confirmation-header {
        padding: 2.25rem 1.25rem;
    }

    .o-confirmation-body {
        padding: 2rem 1.25rem;
    }

    .o-confirmation-icon {
        font-size: 3rem;
    }

    .o-confirmation-order-code {
        font-size: 1.25rem;
    }

    .o-confirmation-status {
        align-items: flex-start;
        flex-direction: column;
    }

    .o-confirmation-twint-content {
        flex-direction: column;
        gap: 1rem;
    }

    .o-confirmation-details {
        grid-template-columns: 1fr;
    }

    .o-confirmation-detail:nth-child(odd) {
        border-right: 0;
    }

    .o-confirmation-detail + .o-confirmation-detail {
        border-top: 1px solid var(--orlovi-border);
    }

    .o-confirmation-total {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .o-confirmation-actions {
        justify-content: stretch;
    }

        .o-confirmation-actions .o-btn-primary {
            width: 100%;
        }
}

/* #endregion */

.o-event-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--orlovi-border);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-white);
    transition: transform var(--orlovi-transition), box-shadow var(--orlovi-transition);
}

    .o-event-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    }

.o-event-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.o-event-card-date {
    color: var(--orlovi-gold);
    font-weight: 700;
}

.o-event-list-date {
    min-width: 3.5rem;
    color: var(--orlovi-gold);
    font-weight: 700;
}

.o-event-details-image {
    width: 100%;
    max-height: 700px;
    object-fit: contain;
    border-radius: var(--orlovi-radius);
}

.o-event-description {
    white-space: pre-line;
}

.o-event-details-content {
    height: 100%;
}

.o-event-info {
    font-size: 1.05rem;
}

    .o-event-info i {
        color: var(--orlovi-gold);
    }

.o-event-pricing {
    border-left: 4px solid var(--orlovi-gold);
    background-color: var(--orlovi-bg);
}

.o-event-presale-alert {
    padding: 1rem 1.25rem;
    border: 1px solid var(--orlovi-gold-light);
    border-left: 4px solid var(--orlovi-gold-dark);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-gold-light-plus);
}

.o-event-presale-icon {
    color: var(--orlovi-gold);
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* #endregion */


/* #region CALENDAR
       ========================================================= */

.o-calendar {
    width: 100%;
}

.o-calendar-month {
    color: var(--orlovi-gold);
    font-weight: 700;
}

.o-calendar-event {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.15rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    color: var(--orlovi-white);
    background-color: var(--orlovi-blue);
    font-size: 0.85rem;
    white-space: nowrap;
}

    .o-calendar-event:hover {
        background-color: var(--orlovi-blue-dark);
    }

.o-calendar-month-block {
    border-left: 4px solid var(--orlovi-gold);
    padding-left: 1rem;
}

.o-calendar-date {
    min-width: 48px;
    text-align: center;
}

.o-calendar-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--orlovi-white);
    background-color: var(--orlovi-gold);
    font-weight: 700;
}

.o-calendar .list-group-item {
    border-color: var(--orlovi-border);
}

    .o-calendar .list-group-item:hover {
        background-color: rgba(141, 106, 47, 0.06);
    }

/* #endregion */


/* #region RESPONSIVE
       ========================================================= */

/* Small phones */
@media (max-width: 575.98px) {

    .o-page-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .o-card {
        border-radius: var(--orlovi-radius);
    }

    .pattern-bar {
        height: 30px;
        background-size: auto 30px;
    }

    .events-scroll {
        gap: 0.75rem;
    }

        .events-scroll img {
            height: 320px;
            max-width: 85vw;
        }

    .o-calendar-event {
        font-size: 0.8rem;
    }

}


/* Large phones / small tablets */
@media (min-width: 576px) and (max-width: 767.98px) {

    .pattern-bar {
        height: 34px;
        background-size: auto 34px;
    }

    .events-scroll img {
        height: 360px;
        max-width: 80vw;
    }

}


/* Tablets / medium desktops */
@media (min-width: 768px) and (max-width: 1199.98px) {

    .pattern-bar {
        height: 36px;
        background-size: auto 36px;
    }

    .events-scroll img {
        height: 400px;
    }
}


/* Large desktops */
@media (min-width: 1200px) {

    .o-page-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .pattern-bar {
        height: 40px;
        background-size: auto 40px;
    }

    .events-scroll img {
        height: 440px;
    }
}

/* #endregion */


/* #region ACCESSIBILITY / UTILITIES
       ========================================================= */

.o-focus:focus-visible {
    outline: 3px solid rgba(141, 106, 47, 0.45);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* #endregion */


.o-order-status {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: 50rem;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    color: var(--orlovi-white);
}

.o-order-status-pending {
    background-color: var(--orlovi-warning);
}

.o-order-status-paid {
    background-color: var(--orlovi-success);
}

.o-order-status-sent {
    background-color: var(--orlovi-info);
}

.o-order-status-completed {
    background-color: var(--orlovi-text);
}

.o-order-status-cancelled {
    background-color: var(--orlovi-danger);
}

/* #region FOOTER
       ========================================================= */

.o-footer {
    color: var(--orlovi-blue-dark-plus);
    background-color: var(--orlovi-gold-light-plus);
    border-top: 1px solid var(--orlovi-gold-light);
}

.o-footer-inner {
    width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
    padding: 2.75rem 0 2.25rem;
}

.o-footer-column {
    min-width: 0;
}

.o-footer-title {
    margin: 0 0 1rem;
    color: var(--orlovi-blue-dark-plus);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.o-footer-copy {
    margin: 0 0 0.35rem;
    color: var(--orlovi-text);
    font-size: 0.88rem;
    line-height: 1.55;
}


/* SITE PLAN
       --------------------------------------------------------- */

.o-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

    .o-footer-links a,
    .o-footer-link {
        color: var(--orlovi-text);
        font-size: 0.88rem;
        text-decoration: none;
        transition: color var(--orlovi-transition), padding-left var(--orlovi-transition);
    }

        .o-footer-links a:hover,
        .o-footer-link:hover {
            color: var(--orlovi-gold-dark);
            padding-left: 0.2rem;
        }


/* SOCIAL
       --------------------------------------------------------- */

.o-footer-social {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.25rem;
}

    .o-footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: 1px solid var(--orlovi-gold-light);
        border-radius: 50%;
        color: var(--orlovi-blue-dark-plus);
        background-color: transparent;
        text-decoration: none;
        transition: color var(--orlovi-transition), background-color var(--orlovi-transition), border-color var(--orlovi-transition);
    }

        .o-footer-social a:hover {
            color: var(--orlovi-white);
            background-color: var(--orlovi-gold-dark);
            border-color: var(--orlovi-gold-dark);
        }


/* LANGUAGE
       --------------------------------------------------------- */

.o-footer-language-form {
    margin-top: 1.5rem;
}

.o-footer-language-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--orlovi-blue-dark-plus);
    font-size: 0.82rem;
    font-weight: 600;
}

.o-footer-language {
    width: 210px;
    max-width: 100%;
    min-height: 40px;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--orlovi-gold-light);
    border-radius: var(--orlovi-radius);
    color: var(--orlovi-blue-dark-plus);
    background-color: var(--orlovi-white);
}

    .o-footer-language:focus {
        border-color: var(--orlovi-gold-dark);
        box-shadow: 0 0 0 3px rgba(141, 106, 47, 0.12);
    }


/* BOTTOM
       --------------------------------------------------------- */

.o-footer-bottom {
    border-top: 1px solid rgba(114, 85, 35, 0.2);
}

.o-footer-bottom-inner {
    width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--orlovi-muted);
    font-size: 0.78rem;
}


/* MOBILE
       --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .o-footer-inner {
        width: calc(100% - 2rem);
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 0 2rem;
        text-align: center;
    }

    .o-footer-brand,
    .o-footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .o-footer-title {
        margin-bottom: 1rem;
    }

    .o-footer-social {
        justify-content: center;
        margin-top: 1.25rem;
    }

    .o-footer-links {
        align-items: center;
    }

        .o-footer-links a:hover,
        .o-footer-link:hover {
            padding-left: 0;
        }

    .o-footer-language-form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .o-footer-language {
        width: 260px;
        max-width: 100%;
    }

    .o-footer-bottom-inner {
        width: calc(100% - 2rem);
        align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 1rem 0;
    }
}
/* #endregion */


/* =====================================================
   ORLOVI TOAST
   ===================================================== */

.o-toast {
    position: relative;
    min-width: 260px;
    max-width: 420px;
    padding: 0.85rem 1.5rem;
    border: 1px solid var(--orlovi-border);
    border-top: 3px solid var(--orlovi-gold);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-white);
    color: var(--orlovi-text);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .o-toast.show {
        opacity: 1;
        transform: translateY(0);
    }

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

@keyframes orloviToastDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.o-email-content {
    text-align: left;
}

@media (max-width: 767.98px) {
    .o-email-content {
        text-align: left;
    }
}

/* =========================================
   MEMBER DISCOUNT
   ========================================= */

.o-member-discount {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(141, 106, 47, 0.25);
    border-radius: 0.5rem;
    background: rgba(141, 106, 47, 0.06);
}

.o-member-discount-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.o-member-discount-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.35rem;
}

.o-member-discount-amount {
    font-weight: 700;
}

@media (max-width: 576px) {

    .o-member-discount-row {
        align-items: flex-start;
    }
}


/* #region LOGIN
       ========================================================= */

.o-design-card {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem 2.25rem;
    border: 1px solid var(--orlovi-border);
    border-radius: var(--orlovi-radius);
    background-color: var(--orlovi-white);
    box-shadow: 0 12px 35px rgba(3, 20, 38, 0.08);
}

.o-design-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .o-design-logo img {
        display: block;
        width: auto;
        max-width: 180px;
        height: auto;
    }

.o-design-brand-line {
    width: 48px;
    height: 3px;
    margin: 0 auto 1.5rem;
    background-color: var(--orlovi-gold);
}

.o-design-title {
    margin-bottom: 0.4rem;
    color: var(--orlovi-blue-dark);
    font-size: 1.45rem;
    font-weight: 700;
    text-align: center;
}

.o-design-subtitle {
    margin-bottom: 2rem;
    color: var(--orlovi-muted);
    font-size: 0.85rem;
    text-align: center;
}

.o-design-field {
    margin-bottom: 1.25rem;
}

    .o-design-field label {
        display: block;
        margin-bottom: 0.45rem;
        color: var(--orlovi-text);
        font-size: 0.8rem;
        font-weight: 600;
    }

    .o-design-field .form-control {
        min-height: 46px;
        padding: 0.7rem 0.85rem;
        border-color: var(--orlovi-border);
        border-radius: var(--orlovi-radius);
    }

        .o-design-field .form-control:focus {
            border-color: var(--orlovi-gold);
            box-shadow: 0 0 0 0.15rem var(--orlovi-gold-light-plus);
        }

.o-design-password {
    position: relative;
}

    .o-design-password .form-control {
        padding-right: 3rem;
    }

.o-design-toggle {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--orlovi-muted);
    transform: translateY(-50%);
}

    .o-design-toggle:hover,
    .o-design-toggle:focus {
        color: var(--orlovi-blue);
    }

.o-design-remember {
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.o-design-actions {
    margin-top: 0.5rem;
}

    .o-design-actions .o-btn-primary {
        width: 100%;
        min-height: 46px;
    }

.o-design-validation {
    margin-bottom: 1.25rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid #e7bcbc;
    border-radius: var(--orlovi-radius);
    background-color: #fbeaea;
    color: #a33a3a;
    font-size: 0.8rem;
}

.o-design-footer {
    margin-top: 1.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--orlovi-border);
    color: var(--orlovi-muted);
    font-size: 0.7rem;
    text-align: center;
}

.o-design-actions .o-btn-primary {
    width: 100%;
    min-height: 46px;
    gap: 0.45rem;
}

@media (max-width: 575.98px) {

    .o-design-card {
        padding: 2rem 1.5rem;
    }

    .o-design-logo img {
        max-width: 150px;
    }
}

/* #endregion */

.o-design-start-page {
    min-height: calc(100vh - var(--o-navbar-height, 80px));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient( to bottom, #ffffff 0%, #fdfcf9 20%, #faf7ef 40%, #f5ecd9 60%, #ecdbb5 80%, #dfc27f 100% );
}

@media (max-width: 575.98px) {

    .o-design-start-page {
        padding: 1rem;
    }
}

.o-validation-summary {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}