/* ===========================
   ПОТОК MS - ОСНОВНОЙ СТИЛЬ
   =========================== */


* {
    box-sizing:border-box;
}


body {

    margin:0;

    padding:0;

    font-family:'Segoe UI', Arial, sans-serif;

    background:#E8F5E9;

    color:#222;

}



/* ===========================
        ШАПКА
   =========================== */


.header {

    width:100%;

    background:#0F5132;

    padding:10px 40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}



/* ЛОГОТИП */

.logo img {

    height:70px;

    width:auto;

    display:block;

}



/* Меню */

.menu {

    display:flex;

    align-items:center;

    gap:15px;

}



/* Ссылки меню */

.menu a {

    color:#ffffff;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    padding:10px 18px;

    border-radius:25px;

    transition:0.3s;

}



.menu a:hover {

    background:#D4AF37;

    color:#0F5132;

}



/* ===========================
        КНОПКИ
   =========================== */


.button {

    display:inline-block;

    background:#D4AF37;

    color:#0F5132;

    padding:14px 30px;

    border-radius:30px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}



.button:hover {

    background:#0F5132;

    color:#D4AF37;

}



/* ===========================
        ФОРМЫ
   =========================== */


input {

    width:100%;

    padding:14px;

    border-radius:10px;

    border:1px solid #ccc;

    font-size:16px;

}



input:focus {

    outline:none;

    border-color:#D4AF37;

}



/* ===========================
        ГЛАВНЫЙ ЭКРАН
   =========================== */


.hero {

    height:600px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:

    linear-gradient(
        rgba(15,81,50,.75),
        rgba(15,81,50,.75)
    );

}



.hero h1 {

    color:#D4AF37;

    font-size:60px;

    margin:0;

}



/* ===========================
        КАРТОЧКИ
   =========================== */


.card {

    background:white;

    padding:25px;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}



/* ===========================
        ПОДВАЛ
   =========================== */


footer {

    background:#0F5132;

    color:white;

    text-align:center;

    padding:30px;

}



footer h3 {

    color:#D4AF37;

}



/* ===========================
        МОБИЛЬНЫЙ ВИД
   =========================== */


@media(max-width:800px){


.header {

    flex-direction:column;

    gap:20px;

}



.logo img {

    height:60px;

}



.menu {

    flex-wrap:wrap;

    justify-content:center;

}



.menu a {

    font-size:15px;

    padding:8px 14px;

}



.hero h1 {

    font-size:40px;

}


}