* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    font-family: Arial, sans-serif;
}

/* Верхняя часть */

header {
    display: flex;
    align-items: center;
    height: 220px;
}

.left,
.right {
    flex: 1;
    height: 100%;
}

.left {
    background: #f5e6a3;
}

.right {
    background: #fff7d6;
}

header img {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    padding: 15px;
    border: 5px solid gold;
}

/* Блок с информацией */

.about {
    width: 75%;
    margin: 60px auto;
    background: white;
    padding: 30px;
    border: 4px solid gold;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    transition: 0.4s;
}

.about:hover {
    transform: scale(1.03);
}

.about h1 {
    text-align: center;
    color: #c9a227;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
}
.team{
    width:90%;
    margin:60px auto;
    text-align:center;
}

.team h2{
    color:#c9a227;
    margin-bottom:30px;
}

.field{
    position:relative;
    width:900px;
    height:1200px;
    margin:auto;
    background:url("images/field.jpg");
    background-size:cover;
    border:5px solid white;
    border-radius:20px;
}

.player{
    position:absolute;
    width:100px;
    text-align:center;
    color:black;
    font-weight:bold;
}

.player img{
    width:70px;
    height:70px;
    border-radius:50%;
    border:3px solid gold;
}

.player span{
    font-size:13px;
}

/* Расстановка */

.gk{
    left:415px;
    bottom:40px;
}

.lb{
    left:120px;
    bottom:220px;
}

.cb1{
    left:310px;
    bottom:180px;
}

.cb2{
    left:500px;
    bottom:180px;
}

.rb{
    right:120px;
    bottom:220px;
}

.cm1{
    left:180px;
    bottom:470px;
}

.cm2{
    left:400px;
    bottom:420px;
}

.cm3{
    right:180px;
    bottom:470px;
}

.lw{
    left:160px;
    top:140px;
}

.st{
    left:400px;
    top:70px;
}

.rw{
    right:160px;
    top:140px;
}
.titles{
    width:90%;
    margin:70px auto;
    text-align:center;
}

.titles h2{
    color:#c9a227;
    font-size:40px;
    margin-bottom:40px;
}

.cups{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.cup{
    width:260px;
    background:white;
    border:3px solid gold;
    border-radius:20px;
    padding:25px;
    box-shadow:0 0 15px rgba(0,0,0,.2);
    transition:.3s;
}

.cup:hover{
    transform:translateY(-10px);
    background:#fff8dc;
}

.cup h3{
    color:#b8860b;
    margin-bottom:15px;
}

.cup p{
    font-size:24px;
    font-weight:bold;
}
.stadium{
    background:#ffffff;
    color:#111;
    text-align:center;
    padding:60px 20px;
}

.stadium h2{
    font-size:40px;
    color:#5a0f0f;
    margin-bottom:30px;
}

.stadium img{
    width:90%;
    max-width:1000px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
    transition:.4s;
}

.stadium img:hover{
    transform:scale(1.03);
}

.stadium p{
    max-width:900px;
    margin:25px auto;
    font-size:20px;
    line-height:1.6;
}

.info{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    margin-top:40px;
}

.card{
    width:220px;
    background:#f3f3f3;
    border-radius:15px;
    padding:20px;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.card:hover{
    transform:translateY(-8px);
    background:#ffe27a;
}

.card h3{
    margin-bottom:10px;
}
.gallery{
    background:#111;
    padding:70px 20px;
    text-align:center;
}

.gallery h2{
    color:white;
    font-size:42px;
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    max-width:1300px;
    margin:auto;
}

.gallery-grid img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 8px 20px rgba(0,0,0,.5);
}

.gallery-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 15px 35px rgba(255,255,255,.3);
}
html{
    scroll-behavior:smooth;
}

.menu{
    position:sticky;
    top:0;
    width:100%;
    background:#111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 50px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:1000;
}

.menu-logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.menu-logo img{
    width:55px;
    height:55px;
}

.menu-logo h2{
    color:white;
    font-size:28px;
}

.menu-links{
    display:flex;
    gap:35px;
}

.menu-links a{
    color:white;
    text-decoration:none;
    font-size:19px;
    font-weight:bold;
    transition:.3s;
}

.menu-links a:hover{
    color:gold;
}