/* =========================
   RESET / BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}
html{
    scroll-behavior: smooth;
}

body {
    font-family: "Georgia", "Times New Roman", serif;
    background: #f6f3ee;
    color: #1c1c1c;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* =========================
   CONTAINER
========================= */
.container {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* =========================
   HEADER
========================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.brand {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.site-name {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 1px;
}

.site-name span {
    color: #b89b5e;
}

.logo p {
    margin-top: 5px;
    font-size: 16px;
    color: #777;
}

.contacts {
    font-size: 14px;
    color: #777;
    text-align: right;
}

/* =========================
   MENU
========================= */
.menu-toggle {
    display: none;
    padding: 12px;
    text-align: center;
    font-size: 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

nav {
    background: #fff;
    border-bottom: 1px solid #eee;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    list-style: none;
    padding: 15px 20px;
}

nav a {
    text-decoration: none;
    color: #1c1c1c;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover {
    color: #b89b5e;
    letter-spacing: 0.5px;
}

/* =========================
   HERO
========================= */
.hero {
    text-align: center;
    position: relative;
}

.hero img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 18px;
}

/* =========================
   PAGE TITLE
========================= */
.page-title {
    text-align: center;
    padding: 30px 20px 20px;
}

.page-title h1 {
    font-size: 36px;
    font-weight: 400;
}

/* =========================
   CONTENT / BLOCKS
========================= */
.content {
    padding: 35px 25px;
    font-size: 16px;
    color: #333;
}

.content a {
    color: #1c1c1c;
    text-decoration: none;
    transition: 0.3s;
}

.content a:hover {
    color: #b89b5e;
    padding-left: 5px;
}

.block {
    margin-bottom: 30px;
}

.center {
    text-align: center;
}

/* =========================
   CARDS
========================= */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 25px 40px;
}

.card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card h3 {
    color: #b89b5e;
    margin-bottom: 10px;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #111;
    color: #bbb;
    padding: 40px 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

footer h4 {
    color: #fff;
    margin-bottom: 10px;
}

footer a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    display: block;
    margin-bottom: 6px;
}

footer a:hover {
    color: #fff;
}

.bottom {
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 12px;
    text-align: center;
}

/* =========================
   ANIMATION
========================= */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   IMAGES (GLOBAL FIX)
========================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* =========================
   PHOTO BLOCK
========================= */
.photo-block {
    max-width: 800px;
    margin: 0 auto 35px;
    padding: 0 15px;
}

.photo-text {
    text-align: center;
    margin-top: 12px;
    font-size: 15px;
}

/* =========================
   CHAMPIONS (ACCORDION)
========================= */
.champion-item {
 margin-top:20px;
     margin-bottom: 15px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.champion-title {
    width: 100%;
    border: none;
    background: #b89b5e;
    color: #fff;
    padding: 18px 20px;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-family: Georgia, serif;
    transition: 0.3s;
}

.champion-title:hover {
    background: #a88a4f;
}

.champion-content {
    display: none;
    padding: 20px;
}

.champion-content img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.champion-content ul {
    margin-top: 15px;
    padding-left: 20px;
}

.champion-content li {
    margin-bottom: 8px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .brand {
        flex-direction: column;
        text-align: center;
    }

    .contacts {
        text-align: center;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-text {
        font-size: 14px;
        padding: 10px 14px;
    }

    .page-title h1 {
        font-size: 26px;
    }
}
