/* Bədən və HTML üslubları */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #333;
    font-size: 70%;
}

/* Konteyner üslubları */
.container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Arxa fon üslubları */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg_dr_fk.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    z-index: 1;
}

/* Overlay üslubları */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.1), rgba(0, 255, 255, 0.1), rgba(0, 255, 0, 0.1), rgba(255, 165, 0, 0.1), rgba(0, 0, 255, 0.1));
    z-index: 2;
}

/* Məzmun üslubları */
.content {
    position: relative;
    z-index: 3;
    text-align: right;
    padding: 20px;
    width: 85%;
    max-width: 800px;
    color: #333;
}

/* Dil seçicisi üslubları */
.language-selector {
    text-align: right;
    font-size: 13px;
    margin-bottom: 30px;
}

.language-selector a {
    margin: 0 5px;
    color: #333;
    text-decoration: none;
}

.language-selector a:hover {
    text-decoration: underline;
}

/* Başlıqlar və paraqraflar üslubları */
.content h1 {
    margin: 0;
    font-size: 5vw;
    font-family: 'Great Vibes', cursive;
    line-height: 1.04;
}

.content h2 {
    margin: 0;
    font-size: 5vw;
    font-family: 'Great Vibes', cursive;
    line-height: 1.04;
}

.content p {
    margin: 1px 0;
    font-size: 1.4vw;
    font-family: 'Lato', sans-serif;
}

/* Əlaqə məlumatları üslubları */
.contact-info {
    margin-top: 10px;
}

/* Footer üslubları */
.footer {
    color: white;
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.1), rgba(0, 255, 255, 0.1), rgba(0, 255, 0, 0.1), rgba(255, 165, 0, 0.1), rgba(0, 0, 255, 0.1));
    background-clip: text;  /* Standart xüsusiyyət */
    -webkit-background-clip: text;  /* Vendor prefix */
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}

/* Sosial media ikonları üslubları */
.social-icons {
    margin: 10px 0;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.social-icons a {
    color: #333;
    font-size: 2.1vw;
    margin-left: 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #555;
}

/* Media sorğular */
@media only screen and (max-width: 768px) {
    .background {
        background-position: 50% center;
    }

    .content h1, .content h2 {
        font-size: 8vw;
    }

    .content p {
        font-size: 2.8vw;
    }

    .social-icons {
        justify-content: right;
    }

    .social-icons a {
        font-size: 4.2vw;
        margin: 0 5px;
    }

    .language-selector {
        font-size: 2.1vw;
    }
}

@media only screen and (max-width: 480px) {
    .background {
        background-position: 50% center;
    }

    .content {
        padding: 10px;
    }

    .content h1, .content h2 {
        font-size: 10vw;
    }

    .content p {
        font-size: 4.2vw;
        margin: 1px 0;
    }

    .social-icons {
        justify-content: right;
        margin: 5px 0;
    }

    .social-icons a {
        font-size: 5.6vw;
        margin: 0 3px;
    }

    .contact-info {
        margin-top: 5px;
    }

    .language-selector {
        font-size: 3vw;
    }
}
