/* style.css */

/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin: 0;
}

.hero {
    position: relative;
    height: 100vh;
    background: url("hero.png") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 85%, black 100%);
    z-index: 1;
    pointer-events: none;
}

header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    box-sizing: border-box;
}

.logo img {
    max-width: 200px;
    height: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 70px;
}

.menu a {
    margin-left: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.menu a img {
    height: 30px;
    width: auto;
}

.header-text,
.header-logos {
    display: flex;
    align-items: center;
}

.header-text a,
.header-logos a {
    margin-left: 30px;
}

.header-text a:first-child,
.header-logos a:first-child {
    margin-left: 0;
}

.services {
    text-align: center;
    padding: 40px 20px;
    width: 80%;
    margin: 0 auto;
}

.title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}

.service-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 250px;
    max-width: 250px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.service-header h3 {
    font-size: 20px;
    margin: 0;
    text-align: left;
}

.service-header .price {
    font-size: 18px;
    font-weight: 700;
    color: #E2BB5A;
}

.service-card p {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    margin: 0;
    color: #fff;
}

.contact {
    text-align: center;
    padding: 40px 20px;
    width: 80%;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 100px;
    margin-top: 30px;
}

.contact-left,
.contact-right {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
}

.contact-subtitle {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-left p,
.contact-right p {
    margin: 4px 0;
    line-height: 1.4;
}

.contact-block {
    margin-bottom: 40px
}

.contact-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

.contact-logos img {
    width: 32px;
    height: auto;
    margin-top: 10px;
}

.contact-block a {
  color: inherit;
  text-decoration: none
}

@media (max-width: 1300px) {
    .menu {
        gap: 30px;
    }

    .service-container {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header {
        width: 90%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 0;
        text-align: center;
    }

    .menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
        width: 100%;
    }

    .heder-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .heder-text a {
        margin: 0;
    }

    .header-logos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .header-logos a {
        margin: 0;
    }
}
