* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

/* HEADER */
header {
    min-height: 100vh;
    background-image: url("imgs/bg-img.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    color: white;
    overflow: hidden;
}

/* NAV */
nav {
    padding-top: 20px;
    position: relative;
    z-index: 10;
}

.nav-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 10px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.logo {
    width: 50px;
    height: 40px;
    object-fit: contain;
}

.links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
}

.links li:hover {
    color: #d8891d;
}

.btn_lang {
    font-size: 15px;
    color: #FFFFFF;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

span {
    display: block;
}

.icons {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.icons input {
    width: 120px;
    height: 35px;
    border-radius: 20px;
    border: none;
    outline: none;
    background: rgba(53, 36, 84, 0.8);
    padding: 0 35px 0 15px;
    color: white;
}

.icons span {
    font-size: 18px;
    cursor: pointer;
}

.icons span:first-of-type {
    position: absolute;
    right: 38px;
    top: 8px;
    font-size: 16px;

}

.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
}



.hero-box {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    width: 48%;
    color: white;
    padding-top: 20px;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 22px;
    margin-bottom: 25px;
    color: #f1f1f1;
    font-weight: 600;
}

.hero-text button {
    background: #d8891d;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.hero-text button:hover {
    background: #b96f12;
}

.cards {
    position: absolute;
    bottom: 5px;
    left: 40%;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.card {
    width: 250px;
    min-height: 170px;
    background: #d8891d;
    color: white;
    padding: 20px;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
}