@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Lexend+Giga:wght@100..900&display=swap');

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

body {
    font-family: "Jost", sans-serif;
}

/* Container */
.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    margin-top: 30px;
    padding: 10px 20px;
    position: relative;
}

.nav-logo img {
    border-radius: 10px;
}

/* Hamburger menu */
.hamburger {
    font-size: 28px;
    display: none;
    cursor: pointer;
}





/* Nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-ul li a {
    text-decoration: none;
    font-size: 18px;
    color: black;
    transition: 0.3s;
}

.nav-ul li a:hover {
    color: #666;
}



/* Language Button */
.lang button {
    width: 121px;
    height: 37px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.60);
    background: #FFF;
    cursor: pointer;
}

/* Hero Section */
.hero .content {
    display: flex;
    padding: 80px 0;
    align-items: center;
    justify-content: space-between;
}

.text-block {
    max-width: 700px;
}

.hero-title {
    color: #222;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-paragraph {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.img-block img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.buttons {
    display: flex;
    gap: 10px;
}

.button {
    font-size: 18px;
    font-weight: 500;
    padding: 0 30px;
    height: 43px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.button:first-child {
    background-color: #d9d9d9;
    color: #000;
}

.button:last-child {
    background-color: #222;
    color: #fff;
}


/* Portfolio  */
.portfolio {
    position: relative;
}

.portfolio h1 {
    margin-bottom: 20px !important;
    font-size: 28px;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-bottom: 80px !important;
}

.swiper-slide {
    text-align: center;
    border-radius: 10px;

    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 280px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #222 0%, #444 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.telegram:hover {
    background: #0088cc;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 400;
}

.contact-item i {
    font-size: 18px;
    color: white;
}




/* Footer Responsive - Add to your existing media queries */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer {
        padding: 40px 0 20px;
    }

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

    .footer-section h3 {
        font-size: 24px;
    }

    .footer-section p,
    .footer-links a,
    .contact-item {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .footer-section p,
    .footer-links a,
    .contact-item {
        font-size: 14px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}


/* Responsive */
@media (max-width: 1200px) {
    .hamburger {
        display: block;
    }

    .content {
        width: 100% !important;
    }

    .content .img-block img {
        width: 400px !important;
    }

    .content .text-block .hero-title {
        font-size: 40px;
    }

    .content .text-block .hero-paragraph {
        font-size: 16px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .lang {
        margin-top: 20px;
        display: none;
    }

    /* Step-by-step adjustments */
    .nav-ul li a {
        font-size: 17px;
    }
}

@media (max-width: 992px) {


    .nav-ul li a {
        font-size: 16px;
    }

    .lang button {
        font-size: 15px;
        width: 110px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .content .img-block img {
        max-width: 300px !important;
    }

    .nav-ul li a {
        font-size: 15px;
    }

    .lang button {
        font-size: 14px;
        width: 100px;
        height: 33px;
    }
}

@media (max-width: 660px) {
    .content {
        flex-direction: column-reverse;

    }

    .content .img-block img {
        max-width: 100% !important;
    }
}

@media (max-width: 500px) {
    .nav-ul li a {
        font-size: 14px;
    }

    .lang button {
        font-size: 12px;
        width: 95px;
        height: 31px;
    }

    .text-block {
        margin-top: 40px;
    }

    .text-block .buttons .button {
        font-size: 12px;
    }

    .hamburger {
        font-size: 24px;
    }

    .navbar {
        padding: 8px 15px;
    }
}