
/* styles.css */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(45deg, #3498db, #e74c3c);
}

header {
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.bgk-groups-heading {
    display: inline-block;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out forwards, slideInBackground 1s ease-out forwards;
}

.animated-heading {
    font-size: 48px;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideInBackground {
    from {
        background-position: 200%;
    }
    to {
        background-position: 0%;
    }
}

.tagline {
    margin: 10px 0;
    font-size: 16px;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    padding: 10px;
    background: linear-gradient(45deg, #ecf0f1, #bdc3c7);
    border-radius: 10px;
    animation: fadeInUp 1s ease-out forwards;
    justify-content: center;
}

.brand {
    width: 150px;
    margin: 10px;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    transition: transform 0.3s ease-out;
    flex-shrink: 0;
}

.brand:hover {
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .container {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .brand {
        width: 100%;
        max-width: 200px;
        margin: 10px 5px;
    }
}

.bgk-medya { background-color: #ff7675; }
.bgk-mobilya { background-color: #74b9ff; }
.bgk-org { background-color: #55efc4; }
.bgk-otomotiv {
    background-color: #28292b;
    transform: scale(1.2);
}
.bgk-otomotiv a {
    color: #af8c58 !important;
}

.brand img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.brand a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: block;
}

.about {
    text-align: center;
    margin: 10px 0;
    animation: fadeInUp 1s ease-out forwards;
}

.about p {
    margin: 10px 0;
    font-size: 14px;
    color: #fff;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.copyright {
    margin: 0;
    font-size: 14px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
