* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}

:root {
    --primary-color: #C6A75E;
    --text-color: #2A2A2E;
}

.flex {
    display: flex;
    flex-direction: column;
}

.flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

html,
body {
    direction: rtl;
    width: 100%;
    height: 100vh;
}

.heading {
    position: relative;
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 3.2rem);
    font-weight: 900;
    background: linear-gradient(90deg, #C6A75E 0%, #DAC082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 9.07px #C6A75E;
}

.subtitle {
    font-size: clamp(1.1rem, 3vw, 3rem);
    font-weight: 900;
    color: #ffffff;
}

.hero-section {
    position: relative;
    gap: 30px;
    padding: 40px 30px;
    width: 100%;
    min-height: 100vh;
    background-image: url('./images/background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero-section .glow-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-section .glow-effects .glow {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    filter: blur(40px);
    background: var(--primary-color);
    box-shadow:
        0 0 250px var(--primary-color),
        0 0 188px var(--primary-color),
        0 0 94px var(--primary-color),
        0 0 13px var(--primary-color);
}

.hero-section .info {
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 1;
}

.hero-section .info h2 {
    max-width: 35ch;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--text-color);
}

.hero-section .info h3 {
    max-width: 45ch;
    font-size: clamp(1.1rem, 2.2vw, 1.7rem);
    font-weight: normal;
    color: var(--text-color);
}

.hero-section .info h4 {
    max-width: 45ch;
    font-size: clamp(0.9rem, 2.8vw, 1.9rem);
    font-weight: 800;
    background: linear-gradient(90deg, #C6A75E 0%, #DAC082 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 9.07px #C6A75E;
}

.hero-section .info p {
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    font-weight: 800;
    color: var(--text-color);
}

.hero-section .form-group {
    align-self: center;
    gap: 35px;
    z-index: 1;
}

.hero-section .form-group form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px;
}

.hero-section .form-group form .group input {
    text-align: right;
    width: 150px;
    height: 30px;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    padding-right: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-color);
    background-color: #ffffff;
}

.hero-section .form-group form .group input::placeholder {
    font-weight: 800;
    color: rgb(128, 128, 128, 27%);
}

.hero-section .form-group form button {
    width: 150px;
    height: 30px;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    background-color: var(--primary-color);
    box-shadow: 
        0 0 24.19px var(--primary-color),
        0 0 12.1px var(--primary-color),
        0 0 3.46px var(--primary-color),
        0 0 1.73px var(--primary-color)
    ;
    z-index: 1;
    transition: .5s;
}

.hero-section .form-group form button:hover {
    transform: scale(1.05);
}

.hero-section .form-group .info-text {
    text-align: center;
    width: 100%;
    font-size: 0.8rem;
    color: var(--text-color);
}

.hero-section .cover-image {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 86%;
    width: auto;
    z-index: 0;
}

.hero-section .background-image {
    position: absolute;
    top: -100px;
    right: 0;
    width: auto;
    max-height: 420px;
    height: 35vh;
    opacity: 10%;
}

.hero-section .background-image2 {
    position: absolute;
    bottom: -15px;
    left: -119px;
    width: auto;
    max-height: 420px;
    height: 35vh;
    opacity: 30%;
}

@media (min-width: 768px) {
    .hero-section .form-group form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        justify-content: space-evenly;
        padding: 50px 80px;
    }

    .hero-section .info {
        text-align: right;
        align-items: flex-start;
        align-self: flex-start;
        width: 746px;
    }

    .hero-section .form-group {
        align-self: flex-start;
    }

    .hero-section .form-group form {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .hero-section .form-group form .group input {
        width: 222px;
        height: 53px;
        font-size: 1rem;
    }
    
    .hero-section .form-group form button {
        width: 222px;
        height: 53px;
        font-size: 1rem;
    }

    .hero-section .form-group .info-text {
        text-align: right;
        width: 50%;
        font-size: 1.1rem;
        color: var(--text-color);
    }

    .hero-section .background-image2 {
        display: none;
    }

    .hero-section .cover-image {
        display: block;
    }
}