@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=PT+Serif:wght@700&display=swap");

:root {
    --brand: #10A38B;
    --brand-dark: #0E7F6F;
    --brand-soft: #BFE5DB;
    --bg: #F4F8F7;
    --card: #FFFFFF;
    --text: #23302D;
    --muted: #566562;
    --line: #E1ECE8;
}

* {
    box-sizing: border-box;
}

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

body {
    font-family: "PT Sans", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 163, 139, 0.18), transparent 70%);
    filter: blur(4px);
    z-index: -1;
    animation: floatGlow 18s ease-in-out infinite;
}

body::before {
    top: -120px;
    right: -80px;
}

body::after {
    bottom: -140px;
    left: -60px;
    animation-delay: -6s;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

article {
    margin: 0;
    padding: 0 6px;
}

a {
    color: var(--brand-dark);
    text-decoration: none;
}

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

.hero {
    margin-top: 32px;
    padding: 36px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(120deg, #f4f8f7 0%, #e5f4ef 55%, #d4eee6 100%);
    box-shadow: 0 16px 40px rgba(16, 163, 139, 0.12);
}

.hero__title {
    font-family: "PT Serif", serif;
    font-size: 32px;
    margin: 0 0 12px;
}

.hero__subtitle {
    margin: 0 0 20px;
    font-size: 18px;
    color: var(--muted);
}

.hero-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.detail-item {
    background: var(--card);
    border: 1px solid var(--line);
    border-left: 4px solid var(--brand);
    border-radius: 14px;
    padding: 12px 16px 12px 14px;
    box-shadow: 0 10px 22px rgba(16, 163, 139, 0.08);
}

.detail-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-bottom: 4px;
}

.detail-value {
    font-weight: 700;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.badge {
    padding: 6px 14px;
    background: rgba(16, 163, 139, 0.12);
    color: var(--brand-dark);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.stat-card {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 16px;
    box-shadow: 0 10px 24px rgba(16, 163, 139, 0.08);
}

.stat-card span {
    display: block;
    font-size: 14px;
    color: var(--muted);
}

.stat-card strong {
    font-size: 18px;
}

.section-block {
    margin-top: 32px;
    padding: 28px 30px;
    background: var(--card);
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(16, 163, 139, 0.08);
}

.section-title {
    margin: 0 0 16px;
    font-family: "PT Serif", serif;
    font-size: 24px;
}

.section-subtitle {
    margin: 0 0 12px;
    color: var(--muted);
    font-weight: 700;
}

.text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.list-columns {
    columns: 2;
    column-gap: 32px;
}

.list-columns li {
    margin-bottom: 10px;
}

.info-card {
    background: rgba(16, 163, 139, 0.08);
    padding: 16px;
    border-radius: 14px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    overflow: visible;
}

.photo-card {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center;
}

.photo-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(16, 163, 139, 0.18);
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.photo-grid:hover .photo-card {
    transform: scale(0.97);
}

.photo-grid:hover .photo-card:hover {
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 18px 34px rgba(16, 163, 139, 0.24);
}

.photo-grid:hover .photo-card:not(:hover) img {
    filter: saturate(0.85) brightness(0.9);
}

.photo-grid:hover .photo-card:hover img {
    transform: scale(1.08);
    filter: none;
}

.btn {
    display: inline-block;
    border-radius: 999px;
    border: 2px solid var(--brand);
    color: var(--brand-dark) !important;
    background: transparent;
    padding: 10px 18px;
    margin: 6px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 8px 20px rgba(16, 163, 139, 0.12);
    will-change: transform;
    transform: translateZ(0);
}

.btn:hover {
    transform: translate3d(6px, 0, 0);
    background-color: rgba(16, 163, 139, 0.12);
    box-shadow: 0 16px 32px rgba(16, 163, 139, 0.2);
}

.btn:focus {
    outline: 2px solid rgba(16, 163, 139, 0.4);
    outline-offset: 2px;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    align-items: start;
}

.report-grid .btn {
    width: 100%;
}

.report-item {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.report-submenu {
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: 0 12px 24px rgba(16, 163, 139, 0.12);
    width: 100%;
    opacity: 0;
    transform: translateY(-6px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.3s ease;
}

#reports.section-block {
    margin-top: 24px;
}

.report-item:hover .report-submenu,
.report-item:focus-within .report-submenu {
    opacity: 1;
    transform: translateY(0);
    max-height: 600px;
    pointer-events: auto;
}

.report-link {
    display: block;
    padding: 6px 0;
    font-size: 15px;
    color: var(--brand-dark);
}

.report-link:hover {
    color: var(--brand);
}

.muted {
    color: var(--muted);
}

.fade-up {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s ease forwards;
    animation-delay: var(--delay, 0s);
}

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

@keyframes floatGlow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}

.nav {
    background: var(--brand);
}

.nav h2 a {
    color: #e6f7f3;
}

.nav-toggle {
    color: #e6f7f3;
}

.nav > ul > li > a {
    color: #e6f7f3;
}

.nav > ul > li > a:after,
.nav > ul > li > a:before {
    background: var(--brand-soft);
}

.nav > ul > li > a:hover,
.nav > ul > li > a:focus {
    color: #ffffff;
}

@media (max-width: 900px) {
    .list-columns {
        columns: 1;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 26px;
    }

    .hero__title {
        font-size: 26px;
    }

    .section-block {
        padding: 22px;
    }

    .photo-card img {
        height: 260px;
    }
}
