/* SLEEK — Erasmus+ project page */

.sleek-page {
    --sleek-primary: #0d5c3f;
    --sleek-primary-dark: #083d2a;
    --sleek-accent: #00a651;
    --sleek-accent-light: #e8f7ef;
    --sleek-gold: #f5b800;
    --sleek-ink: #1a2e28;
    --sleek-muted: #5c6f68;
    --sleek-border: #d4e8de;
    --sleek-surface: #f6faf8;
    --sleek-radius: 1rem;
    --sleek-shadow: 0 4px 24px rgba(13, 92, 63, 0.08);
    --sleek-shadow-lg: 0 12px 40px rgba(13, 92, 63, 0.12);
}

/* Hero */
.sleek-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--sleek-primary-dark) 0%, var(--sleek-primary) 45%, #127a52 100%);
    overflow: hidden;
}

.sleek-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 90% 20%, rgba(0, 166, 81, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(245, 184, 0, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.sleek-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sleek-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 3.5rem;
    width: 100%;
}

.sleek-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.sleek-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.sleek-hero__badge--eu {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.sleek-hero__badge--erasmus {
    background: var(--sleek-gold);
    color: var(--sleek-primary-dark);
}

.sleek-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.sleek-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    line-height: 1.6;
    margin: 0 0 1.75rem;
}

.sleek-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sleek-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.sleek-hero__btn--primary {
    background: #fff;
    color: var(--sleek-primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.sleek-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--sleek-primary-dark);
}

.sleek-hero__btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.sleek-hero__btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Quick nav */
.sleek-quicknav {
    background: #fff;
    border-bottom: 1px solid var(--sleek-border);
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.sleek-quicknav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sleek-quicknav__inner::-webkit-scrollbar {
    display: none;
}

.sleek-quicknav__link {
    flex-shrink: 0;
    padding: 1rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sleek-muted);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.sleek-quicknav__link:hover,
.sleek-quicknav__link.is-active {
    color: var(--sleek-primary);
    border-bottom-color: var(--sleek-accent);
}

/* Sections */
.sleek-section {
    padding: 4rem 0;
}

.sleek-section--alt {
    background: var(--sleek-surface);
}

.sleek-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sleek-section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.sleek-section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sleek-accent);
    margin-bottom: 0.5rem;
}

.sleek-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--sleek-ink);
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.sleek-section__desc {
    font-size: 1.0625rem;
    color: var(--sleek-muted);
    line-height: 1.65;
    margin: 0;
}

/* Stats */
.sleek-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
}

.sleek-stat {
    background: #fff;
    border: 1px solid var(--sleek-border);
    border-radius: var(--sleek-radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: var(--sleek-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sleek-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--sleek-shadow-lg);
}

.sleek-stat__value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--sleek-primary);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.sleek-stat__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sleek-muted);
    line-height: 1.35;
}

/* About / intro */
.sleek-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .sleek-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.sleek-intro__text {
    font-size: 1.0625rem;
    color: var(--sleek-muted);
    line-height: 1.75;
}

.sleek-intro__text p {
    margin: 0 0 1rem;
}

.sleek-intro__text p:last-child {
    margin-bottom: 0;
}

.sleek-intro__visual {
    background: linear-gradient(145deg, var(--sleek-accent-light) 0%, #fff 100%);
    border: 1px solid var(--sleek-border);
    border-radius: var(--sleek-radius);
    padding: 2rem;
    box-shadow: var(--sleek-shadow);
}

.sleek-intro__visual-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sleek-primary);
    margin: 0 0 1rem;
}

.sleek-intro__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sleek-intro__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--sleek-border);
    font-size: 0.9375rem;
    color: var(--sleek-ink);
}

.sleek-intro__list li:last-child {
    border-bottom: none;
}

.sleek-intro__list-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--sleek-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 0.1rem;
}

/* Benefits */
.sleek-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.sleek-benefit {
    background: #fff;
    border: 1px solid var(--sleek-border);
    border-radius: var(--sleek-radius);
    padding: 1.75rem;
    box-shadow: var(--sleek-shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.sleek-benefit:hover {
    transform: translateY(-4px);
    box-shadow: var(--sleek-shadow-lg);
    border-color: var(--sleek-accent);
}

.sleek-benefit__icon {
    width: 3rem;
    height: 3rem;
    background: var(--sleek-accent-light);
    color: var(--sleek-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.sleek-benefit__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--sleek-ink);
    margin: 0 0 0.5rem;
}

.sleek-benefit__text {
    font-size: 0.9375rem;
    color: var(--sleek-muted);
    line-height: 1.6;
    margin: 0;
}

/* Partners */
.sleek-partners {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.sleek-partner {
    background: #fff;
    border: 1px solid var(--sleek-border);
    border-radius: var(--sleek-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--sleek-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sleek-partner:hover {
    transform: translateY(-3px);
    box-shadow: var(--sleek-shadow-lg);
}

.sleek-partner__flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.sleek-partner__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--sleek-ink);
    margin: 0 0 0.25rem;
    line-height: 1.35;
}

.sleek-partner__name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.sleek-partner__name a:hover {
    color: var(--sleek-primary);
}

.sleek-news-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.sleek-news-card__title a:hover {
    color: var(--sleek-primary);
}

.sleek-partner__country {
    font-size: 0.8125rem;
    color: var(--sleek-muted);
    margin: 0;
}

.sleek-partner--lead {
    border-color: var(--sleek-accent);
    background: linear-gradient(180deg, var(--sleek-accent-light) 0%, #fff 40%);
}

.sleek-partner--lead .sleek-partner__name::after {
    content: ' — Lead';
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sleek-accent);
}

/* Objectives carousel */
.sleek-goals {
    position: relative;
    overflow: hidden;
    border-radius: var(--sleek-radius);
    background: #fff;
    border: 1px solid var(--sleek-border);
    box-shadow: var(--sleek-shadow);
}

.sleek-goals__track {
    display: flex;
    transition: transform 0.5s ease;
}

.sleek-goals__slide {
    flex: 0 0 100%;
    padding: 2.5rem 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 640px) {
    .sleek-goals__slide {
        padding: 3rem;
    }
}

.sleek-goals__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--sleek-primary);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.sleek-goals__text {
    font-size: 1.125rem;
    color: var(--sleek-ink);
    line-height: 1.65;
    margin: 0;
    max-width: 680px;
}

.sleek-goals__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
    border-top: 1px solid var(--sleek-border);
    background: var(--sleek-surface);
}

.sleek-goals__btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--sleek-border);
    background: #fff;
    border-radius: 50%;
    color: var(--sleek-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.sleek-goals__btn:hover {
    background: var(--sleek-accent-light);
    border-color: var(--sleek-accent);
}

.sleek-goals__dots {
    display: flex;
    gap: 0.5rem;
}

.sleek-goals__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--sleek-border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.sleek-goals__dot.is-active {
    background: var(--sleek-accent);
    transform: scale(1.25);
}

/* Themes & impact */
.sleek-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.sleek-card {
    background: #fff;
    border: 1px solid var(--sleek-border);
    border-radius: var(--sleek-radius);
    overflow: hidden;
    box-shadow: var(--sleek-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sleek-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sleek-shadow-lg);
}

.sleek-card__accent {
    height: 4px;
    background: linear-gradient(90deg, var(--sleek-primary), var(--sleek-accent));
}

.sleek-card__body {
    padding: 1.75rem;
}

.sleek-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--sleek-ink);
    margin: 0 0 0.65rem;
}

.sleek-card__text {
    font-size: 0.9375rem;
    color: var(--sleek-muted);
    line-height: 1.65;
    margin: 0;
}

/* News */
.sleek-news {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.sleek-news-card {
    background: #fff;
    border: 1px solid var(--sleek-border);
    border-radius: var(--sleek-radius);
    overflow: hidden;
    box-shadow: var(--sleek-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.sleek-news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sleek-shadow-lg);
}

.sleek-news-card__img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--sleek-accent-light);
}

.sleek-news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sleek-news-card:hover .sleek-news-card__img {
    transform: scale(1.05);
}

.sleek-news-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sleek-news-card__date {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--sleek-accent);
    margin-bottom: 0.5rem;
}

.sleek-news-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--sleek-ink);
    margin: 0 0 0.65rem;
    line-height: 1.35;
}

.sleek-news-card__excerpt {
    font-size: 0.9375rem;
    color: var(--sleek-muted);
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
}

.sleek-news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sleek-primary);
    text-decoration: none;
    transition: gap 0.2s;
}

.sleek-news-card__link:hover {
    gap: 0.6rem;
    color: var(--sleek-accent);
}

.sleek-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border: 1px dashed var(--sleek-border);
    border-radius: var(--sleek-radius);
    color: var(--sleek-muted);
}

.sleek-empty__icon {
    font-size: 2.5rem;
    opacity: 0.35;
    margin-bottom: 1rem;
}

/* Erasmus banner */
.sleek-erasmus {
    background: linear-gradient(135deg, #003399 0%, #0047b3 100%);
    border-radius: var(--sleek-radius);
    padding: 2rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: #fff;
}

.sleek-erasmus__text {
    flex: 1;
    min-width: 240px;
}

.sleek-erasmus__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.sleek-erasmus__desc {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.sleek-erasmus__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
