body {
    margin: 0;
    font-family: 'Georgia', serif;
    background: #f6f3ed;
    color: #2b2b2b;
}

/* HERO — старая фотка */
.hero {
    background-image: url("https://i.ibb.co/9HWcwRdm/IMG-8251.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 520px;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 40px;
}

.hero-buttons {
    margin-top: 20px;
}

.btn-main {
    background: #c5a96b;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    margin: 5px;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
}

/* NAV */
.nav {
    background: #2f2626;
    text-align: center;
}

.nav a {
    color: white;
    padding: 15px;
    display: inline-block;
    text-decoration: none;
}

/* ABOUT */
.about {
    display: flex;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    padding: 40px;
}

/* ABOUT IMAGE — новая фотка */
.about-img {
    background: url("https://i.yapx.ru/dnoIS.jpg") center/cover;
    min-height: 300px;
}

/* CONTAINER */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

/* CARD */
.card {
    background: white;
    padding: 15px;
    border-left: 4px solid #c5a96b;
}

/* SCHEDULE */
.schedule {
    background: #ebe6dd;
    padding: 40px 20px;
    text-align: center;
}

.schedule-box {
    background: white;
    padding: 20px;
    max-width: 600px;
    margin: auto;
}

/* CHARITY */
.charity {
    text-align: center;
    padding: 50px 20px;
}

/* CONTACTS */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    max-width: 800px;
    margin: auto;
}

/* FOOTER */
footer {
    background: #1f1f1f;
    color: white;
    text-align: center;
    padding: 30px;
}

/* MOBILE */
@media(max-width:700px){
    .hero {
        height: 350px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .about {
        flex-direction: column;
    }
}
