/*
Theme Name: Konotop Water
Author: @Masi
Version: 1.0
*/

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4fcfd;
    color: #1a2b2f;
}

.header {
    background: white;
    border-bottom: 2px solid #3b7ad8;
    position: sticky;
    top: 0;
    z-index: 10;
}
.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-weight: 700;
    color: #2193a0;
    font-size: 20px;
}

.menu a {
    text-decoration: none;
    color: #334;
    margin: 0 12px;
    font-size: 15px;
}
.menu a:hover {
    color: #38c6d8;
}

.hero {
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 34px;
    font-weight: 600;
}

.section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.card-title {
    padding: 12px;
    text-align: center;
    font-size: 18px;
    color: #2193a0;
}

.about-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.btn {
    background: #38c6d8;
    color: white;
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-block;
    text-decoration: none;
}

.contacts {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.map {
    height: 300px;
    background: #dff6fa;
    border-radius: 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2193a0;
}

footer {
    text-align:center;
    padding: 25px;
    color:#777;
}


