@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap');

:root {
    --primary: #000;
    --secondary: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Oswald', sans-serif;
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    background-color: #080808;
    color: white;
}

/* Hamburger icon css */
.icon {
    display: none;
}

.bar {
    width: 20px;
    height: 3px;
    background-color: var(--secondary);
    margin: 4px 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 30px;
}

.navbar {
    color: var(--secondary);
    z-index: 2;
}

.navbar a {
    color: var(--dark-font);
    text-decoration: none;
    font-weight: bold;
}

.navbar .logo {
    font-size: x-large;
    font-weight: bold;
    text-transform: uppercase;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    background-color: #121212;
    padding: 0px 40px;

}

.navbar .nav {
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.navbar ul li a:hover {
    color: gray;
    transition: 0.5s;
}

.inline-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hero-image {
    background-image: url("./images/bg.png");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

a {
    color: white;
    text-decoration: none;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-top: 40px;
}

.hero-text p {
    font-size: 26px;
    padding: 20px;
}

span {
    color: red;
}

#cv_button,
.button-container {
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

.hero-text .button-container {
    padding-top: 0px;
}

input[type=submit],
.cta-button {
    background-color: red;
    padding: 10px 40px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin: 10px;
    outline: 0;
}

input[type=submit],
.cta-button:hover {
    background-color: rgb(158, 15, 15);
    transition: 0.3s;
}

.outline-button {
    background-color: transparent;
    border: 1px solid red;
}

.outline-button:hover {
    background-color: rgb(252, 42, 42);
    transition: 0.3s;
}

.section {
    display: flex;
    align-items: center;
    margin: 50px;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 20px;

}

.section img {
    width: 500px;
    border-radius: 10px;
    padding-left: 40px;
    margin: 20px;
}

.section p {
    text-align: justify;
    font-size: 20px;
    line-height: 180%;
}

.row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

.row .prices {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    width: 100%;

}

.prices .box {
    max-width: 500px;
}

.prices .box p {
    text-align: left;
}

.prices .box h3 {
    padding: 10px 0px;
    margin: 0px;
    font-size: 30px;
    text-align: left;
}

.counter-card {
    padding: 30px;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
}

.counter {
    font-size: 48px;
}

.sticky {
    position: fixed;
    top: 0;
    text-align: center;
    width: 100%;
    margin: 20px auto;

}

.box {
    display: flex;
    flex-direction: column;
    color: white;
    background: #121212;
    border-radius: 10px;
    margin: 20px 10px;
    padding: 15px 20px;
    text-align: center;
    max-width: 300px;
    flex-grow: 1;
    justify-content: space-between;
}

.box p {
    font-size: 18px;
    text-align: center;
}

.box h3 {
    padding: 10px;
}

.box .logo {
    margin: 10px auto;
    max-width: 64px;
    padding: 0;
}

.box img {
    padding: 0;
    margin: 0px auto;
    width: 100%;
}

.box:hover {
    transition: 0.5s;
    transform: scale(103%);
}

.boxes {
    display: flex;
    justify-content: center;
}

.footer {
    font-weight: bold;
    width: 100%;
    background-color: #121212;
    padding: 20px;
    color: white;
    text-align: center;
}

.badge {
    padding: 5px;
    background-color: red;
    color: white;
    font-size: 14px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* FORM STUFF */
/* Style inputs with type="text", select elements and textareas */
form {
    background-color: #121212;
    padding: 30px;
}

form label {
    font-size: 20px;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    background-color: #121212;
    color: white;
}

.slideButton {

    text-align: center;
    cursor: pointer;
}


@media screen and (max-width:1120px) {
    .navbar .nav {
        position: absolute;
        left: -110%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        width: 100%;
    }

    .nav.active {
        left: 0;
    }

    .nav li {
        padding: 16px 0;
        background-color: var(--primary);
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    }

    .nav li:hover {
        transition: 0.4s;
        background-color: #babfc4;
    }

    .icon {
        display: block;
        font-size: 22px;
    }

    .hero-text h1 {
        font-size: 38px;
        margin-top: 40px;
    }

    .hero-text p {
        font-size: 24px;
    }

    .section {
        margin: 10px;
    }

    .section h2 {
        text-align: center;
    }

    .section .row {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .boxes {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .row .prices {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section img {
        width: 300px;
        padding-left: 0px;
        margin-bottom: 20px;
    }

    .section p {
        text-align: center;
        font-size: 18px;
    }

    .section .container {
        padding: 10px;
    }

    .sticky {
        margin: 0px;
    }

    .button-container {
        flex-direction: column;

    }

    .hero-text .cta-button {
        width: 300px;
        margin: 10px auto;
    }

    .slideButtonContainer {
        flex-direction: row;
    }
}