/* Основные стили и сброс */
:root {
    --header-height: 70px; /* Define header height as a custom property */
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background-color: #030303;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', serif;
    font-weight: 500;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: #020202;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #ffffff;
    color: #020202;
}

/* Шапка (Header) */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(3, 3, 3, 0.9);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #020202;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover:after {
    width: 100%;
}

.social-icons {
    display: flex;
}

.social-icon {
    margin-left: 15px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1);
}

/* Главный баннер (Hero Section) */
.hero {
    height: calc(100vh - var(--header-height)); /* Use custom property */
    background-image: url('../images/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-cover {
    background-color: black;
    clip-path: polygon(50% 100%, 100% 80%, 100% 100%, 0 100%, 0 80%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 3, 3, 0.3), rgba(3, 3, 3, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero h1 {
    color: rgba(239, 157, 94, 1);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 84px;
    font-weight: 400;
    font-family: 'Viaoda Libre', serif;
}

.hero-subtitle {
    display: inline-block;
    background-color: rgba(18, 18, 18, 0.2);
    border-radius: 66px;
    padding: 15px 30px;
    font-size: 28px;
    border: 1px solid rgba(239, 157, 94, 1);
    backdrop-filter: blur(10px);
    color: rgba(239, 157, 94, 1);
    font-weight: 400;
    font-size: 28px;
    line-height: 26px;
    text-align: center;
    font-family: 'Poiret One', serif;
}

/* Почему именно мы? (Why Us) */
.why-us {
    background-color: #030303;
    padding: 100px 0;
}

.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.feature-card {
    width: 32%;
    height: 452px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.feature-image {
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(2, 2, 2, 0.9), rgba(2, 2, 2, 0.7), transparent);
    color: #ffffff;
    z-index: 2;
    text-align: center;
    font-family: 'Roboto', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.feature-text h3 {
    font-family: 'Roboto', serif;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0%;
}

/* Актуальные Вакансии (Current Vacancies) */
.vacancies {
    background-color: #030303;
    padding: 100px 0;
}

.vacancy-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vacancy-card {
    width: 336px;
    margin-bottom: 30px;
    background-color: #020202;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vacancy-image {
    height: 309px;
    overflow: hidden;
    position: relative;
}

.vacancy-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.36);
    z-index: 1;
}

.vacancy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vacancy-card:hover .vacancy-image img {
    transform: scale(1.05);
}

.vacancy-content {
    padding: 20px;
}

.vacancy-salary {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.61);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 14px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    width: 242px;
}

.vacancy-card .btn {
    margin-top: 20px;
}

/* Работа для девушек в VIP сопровождении (VIP Escort Work) */
.vip-escort {
    background-color: #030303;
    padding: 100px 0;
}

.vip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vip-text {
    width: 55%;
    padding-right: 30px;
}

.vip-image {
    height: 522px;
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vip-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Получите престижную работу (Get Prestigious Job) */
.prestigious-job {
    background-color: #030303;
    padding: 100px 0;
}

.prestigious-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prestigious-image {
    height: 522px;
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.prestigious-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.prestigious-text {
    width: 55%;
    padding-left: 30px;
}

/* Будущее всегда в наших руках (Future in Our Hands) */
.future {
    background-image: url('../images/10.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    position: relative;
}

.future:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 3, 3, 0.7), rgba(3, 3, 3, 0.9));
}

.future-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.future-text {
    margin-bottom: 40px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.telegram-btn {
    background-color: rgba(92, 122, 156, 1);
}

.whatsapp-btn {
    background-color: rgba(125, 170, 146, 0.7);
}

.instagram-btn {
    background: linear-gradient(90deg, #d9a6a1 0%, #f2c2b8 100%);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Гарантии (Guarantees) */
.guarantees {
    background-image: url('../images/11.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    position: relative;
}

.guarantees:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 3, 3, 0.7), rgba(3, 3, 3, 0.9));
}

.guarantees .container {
    position: relative;
    z-index: 1;
}

.guarantee-items {
    margin-top: 50px;
}

.guarantee-item {
    display: flex;
    margin-bottom: 30px;
}

.guarantee-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #020202;
    background-color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.guarantee-content h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.guarantee-footer {
    margin-top: 50px;
    text-align: center;
    font-style: italic;
}

/* Подвал (Footer) */
.footer {
    background-color: #020202;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
}

.footer-column {
    flex: 1; /* Distribute space equally among columns */
    padding: 0 15px; /* Add some padding to columns */
    min-width: 200px; /* Minimum width for columns before wrapping */
    margin-bottom: 20px; /* Add margin for spacing when wrapped */
}

.footer-title {
    color: rgba(87, 87, 87, 1);
    font-family: 'Roboto', sans-serif; /* Ensuring consistent font */
    font-weight: 500; /* Making titles a bit bolder */
    margin-bottom: 8px; /* Space between title and text */
    font-size: 16px; /* Adjust size as needed */
}

.footer-text {
    color: rgba(255, 255, 255, 1);
    font-family: 'Roboto', sans-serif; /* Ensuring consistent font */
    font-size: 14px; /* Adjust size as needed */
    margin-bottom: 10px; /* Consistent with existing p margin */
}

.footer-social-icons {
    display: flex; /* Align icons horizontally */
}

.footer-social-icons .social-icon {
    margin-right: 10px; /* Space out social icons */
}

.footer-social-icons .social-icon:last-child {
    margin-right: 0; /* Remove margin from the last icon */
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    height: 40px;
}

/* Адаптивный дизайн */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .feature-card,
    .vacancy-card {
        width: 48%;
    }

    .feature-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 60px; /* Adjusted font size for smaller screens */
    }

    .hero-subtitle {
        font-size: 22px; /* Adjusted font size for smaller screens */
        padding: 10px 20px; /* Adjusted padding for smaller screens */
    }

    h2 {
        font-size: 2rem;
    }

    .header-content {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    .main-nav {
        margin-bottom: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav ul li {
        margin: 5px 10px;
    }

    .vip-content {
        flex-direction: column; /* Keep original mobile stacking */
    }
    .prestigious-content {
        flex-direction: column-reverse; /* Image will be at the bottom */
    }

    .vip-text,
    .prestigious-text,
    .vip-image,
    .prestigious-image {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 41px; /* Further adjusted font size for very small screens */
    }

    .hero-subtitle {
        font-size: 18px; /* Further adjusted font size for very small screens */
        padding: 8px 15px; /* Further adjusted padding for very small screens */
    }

    h2 {
        font-size: 1.8rem;
    }

    .feature-card,
    .vacancy-card {
        width: 100%;
    }

    .feature-card {
        height: 350px;
    }

    .feature-text {
        padding: 20px 15px;
    }

    .social-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .guarantee-item {
        flex-direction: column;
    }

    .guarantee-number {
        margin-bottom: 15px;
    }
}

.application-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.application-content > h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.application-image {
    margin-bottom: 50px;
    position: relative;
}

.application-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.36);
    border-radius: 20px;
    z-index: 1;
}

.application-image img {
    width: 100%;
    height: 295px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    display: block;
}

/* Application Form Section */
.application-form {
    padding: 100px 0;
    position: relative;
}

.application-form .container {
    position: relative;
    z-index: 1;
}

.application-intro {
    padding: 0;
    margin-bottom: 50px;
    text-align: center;
    color: #ffffff;
}

.application-intro::before {
    content: none;
}

.application-intro > * {
    position: relative;
    z-index: 2;
}

.application-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.application-intro p {
    font-weight: 400;
    margin: 0 100px;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.form-group-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.form-group {
    flex: 1;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 1px solid rgba(56, 56, 56, 1);
    border-radius: 30px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#contact-form .btn {
    width: auto;
    min-width: 250px;
    padding: 15px 30px;
    background-color: rgba(239, 157, 94, 1);
    color: #030303;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

#contact-form .btn:hover {
    background-color: #ffffff;
    color: #020202;
}

#form-message {
    margin-top: 20px;
    font-weight: bold;
    min-height: 24px;
}

@media (max-width: 768px) {
    .form-group-wrapper {
        flex-direction: column;
    }
    .application-intro p {
        margin: 0;
    }
}
