html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}


/* NAVBAR */

.navbar {
    padding: 0.5rem 1rem;
}

.navbar-brand {
    background: linear-gradient(90deg, #007cf0, #00dfd8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
}


/* ERRORS */

.errors {
    margin-top: 1vh;
    padding: 0;
    color: red;
}

.errors p {
    font-size: 12px;
}

.errors input {
    border-color: red;
}

.errors input:focus {
    border-color: red;
}


/* FOOTER */

footer {
    margin-top: auto;
}


/* OBLUBENE */

.bi-suit-heart-fill {
    color: #dc3545;
}


/* PREMIUM UI COMPONENTS */

.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(0, 124, 240, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(0, 223, 216, 0.05), transparent);
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #007cf0, #00dfd8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 124, 240, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 124, 240, 0.1), rgba(0, 223, 216, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #007cf0;
    font-size: 1.75rem;
}

.badge-invited {
    background: linear-gradient(90deg, #007cf0, #00dfd8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    display: inline-block;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.9rem;
    color: #007cf0;
    margin-bottom: 1rem;
    display: block;
}


/* SORT */

.sort-toggle {
    cursor: pointer;
    border-radius: 4px;
}

.sort-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.sort-option[data-state="DESC"] .sort-toggle {
    background-color: rgba(0, 123, 255, 0.1);
}

.sort-option[data-state="ASC"] .sort-toggle {
    background-color: rgba(0, 123, 255, 0.1);
}