body {
    font-family: "Roboto", sans-serif;
    background-color: #1e376c;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Poppins", sans-serif;
}

.hero {
    text-align: center;
    padding: 200px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../images/gu_blur.jpg") no-repeat center center/cover;
    color: white;
    min-height: 100vh;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #1e376c 100%);
}

.hero p {
    font-family: "Poppins", sans-serif;
    font-size: medium;
}

.wrapper-kontak {
    position: relative;
    width: 100%;
    overflow: visible;
}

#card-oren,
#card-biru,
#kontak {
    transition: all 0.3s ease-in-out;
}

#card-oren {
    background-color: #F2682A;
    border-radius: 85px 85px 0 0;
    height: 300px;
    z-index: 1;
}

#card-biru {
    background-color: #57C9E8;
    border-radius: 78px 78px 0 0;
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 2;
}

#kontak {
    background-color: white;
    border-radius: 69px 69px 0 0;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

#kontak .contact-box {
    background-color: #D9D9D9 !important;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

#kontak .contact-box i {
    color: #1E376C !important;
    font-size: 1.2rem;
    margin-right: 10px;
}

#kontak .contact-box span {
    color: #1E376C;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

.map-container {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

@media (max-width: 991.98px) {
    #card-oren,
    #card-biru,
    #kontak {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        border-radius: 40px 40px 0 0;
    }

    .wrapper-kontak {
        overflow: visible !important;
        background: #ffffff;
    }

    #kontak {
        display: block;
        padding: 40px 20px;
        text-align: center;
    }

    #kontak .row {
        flex-direction: column;
    }

    #kontak .col-md-4,
    #kontak .col-md-4.offset-md-1 {
        margin-left: 0 !important;
        margin-bottom: 25px;
        text-align: center;
    }

    #kontak img {
        max-width: 250px !important;
        margin: 0 auto 15px auto;
    }

    .map-container {
        max-width: 300px;
        margin: 20px auto;
    }

    #kontak .contact-box {
        justify-content: center;
        margin: 10px auto;
        width: 90%;
    }
}

@media (max-width: 576px) {
    #kontak img {
        max-width: 200px !important;
    }

    #kontak .contact-box span {
        font-size: 14px;
    }

    #kontak {
        padding: 30px 10px;
    }
}


