/** GENERAL STYLES **/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --primary: #FCD611; /* Example variable for a color */
    --font-size: 16px;   /* Example variable for font size */
}

body {
    background-color: black;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

p {
    line-height: 150%;
}

h1 {
    font-size: clamp(32px, 8vw, 64px);
    line-height: 120%;
}

h2 {
    font-size: clamp(26px, 8vw, 48px);
}

h3 {
    font-size: clamp(22px, 5vw, 28px);
}

a {
    text-decoration: none;
    color: unset;
}

.button-xl {
    color: black;
    background-color: var(--primary);
    width: 220px;
    padding: 16px 28px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    transition: .2s;
    outline: none;
    border: none;
    cursor: pointer;
}

.button-xl:hover {
    background-color: rgb(253, 220, 57);
}

/* LAYOUT BLOCKS */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    box-sizing: border-box;
    z-index: 1;
}

.navbar__logo {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2%;
    transition: .2s;
}

.navbar__logo:hover {
    color: var(--primary);
}

.navbar__links {
    display: flex;
    gap: 16px;
}

.navbar__link {
    list-style: none;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
}

.navbar__link:hover {
    color: var(--primary);
}

/* Hamburger Menu Styles */
.navbar__toggle {
    display: none;
    cursor: pointer;

    i {
        font-size:32px;
    }
}

@media (max-width: 768px) {


    .navbar__links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: black;
        width: 100%;
        text-align: center;
        padding: 16px 0;
    }

    .navbar__toggle {
        display: block;
    }

    .navbar__links.open {
        display: flex;
    }
    .navbar-container.open {
        display: flex;
    }

    .navbar__links a {
        color: white;
        padding: 10px;
        display: block;
        text-decoration: none;
    }
}

/* FOOTER */

footer {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 0 32px 0;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer__brand {
    max-width: 260px;
}

.footer__logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .2s;
}

.footer__logo:hover {
    color: var(--primary);
}

.footer__tagline {
    margin: 12px 0 0 0;
    font-size: 14px;
    opacity: 0.7;
    line-height: 150%;
}

.footer__links h4,
.footer__social h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links ul li {
    font-size: 14px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__links ul li a {
    transition: .2s;
}

.footer__links ul li a:hover {
    color: var(--primary);
}

.footer__social-links {
    display: flex;
    gap: 16px;
}

.footer__social-links a {
    font-size: 20px;
    transition: .2s;
    opacity: 0.7;
}

.footer__social-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px 0;
}

.copyright-notice {
    margin: 0;
    font-size: 13px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__links ul {
        align-items: center;
    }

    .footer__social-links {
        justify-content: center;
    }
}

/* BASIC HERO SECTION */

.hero-section--simple {
    margin: 0 auto 80px auto;
}

.hero-section__title {
    margin: 120px 0 0 0;
    text-align: center;
}

.hero-section__subtitle {
    text-align: center;
}

/* FORM */

form {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

input {
    padding: 8px;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 4px;
}

textarea {
    padding: 8px;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 4px;
    min-height: 200px;
    resize: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-family: 'Poppins', sans-serif;
}
