/*
Theme Name: AV THEME
Author: Dominic Vega
Version: 1.0
*/
@font-face {
    font-family: 'Neue Haas Display';
    src: url('font/NeueHaasDisplayLight.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Display';
    src: url('font/NeueHaasDisplayBold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

body {
    font-family: 'Neue Haas Display', sans-serif;
    font-weight: 400;
    background-color: #171717;
    margin: 0;
    padding-bottom: 100px;
}

h1 {
    font-weight: 700;
}

.nav-links .current-menu-item a,
.modal-menu .current-menu-item a {
    font-weight: bold;
}

.container {
    width: 100%;
    margin: auto;
    overflow-x: hidden;
}

.getting-started {
    height: 50vh;
    margin-top: -15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFF;
}

.main-header {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    position: absolute;
    top: 20px;
    width: calc(100% - 240px); 
    margin: 0 auto; 
    left: 0;
    right: 0;
    z-index: 999;
}


.header-container {
    margin: 16px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
    color: black;
}

.nav-links li {
    display: inline-block;
}

.nav-links li a {
    text-decoration: none;
    color: #171717;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nav-links li a:hover {
    color: red;
}

.btn-red {
    background-color: red;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.divider {
    margin: 50px 0;
}

.btn-red:hover {
    background: darkred;
}

.modal-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
}

.modal-menu li {
    display: inline-block;
}

.modal-menu li a {
    text-decoration: none;
    color: #171717;
    font-weight: 500;
    font-size: 20px;
    font-style: normal;
    line-height: 30px;
}
.spacer {
    padding: 10px
}
.modal {
    display: none; 
    position: fixed; 
    z-index: 999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    background-color: #FFF;
    height: 100%;
    width: 100%;
    margin-top: -30px;
    padding: 20px
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin: 50px;
}

#myBtn {
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Mobile Styles */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Footer */
.footer-wrapper {
    background: white;
    height: 320px;
    margin-bottom: 100px;
}

.main-footer {
    background: linear-gradient(90deg, darkred, red);
    color: white;
    border-radius: 20px;
    width: calc(100% - 240px); 
    margin: 0 auto; 
    z-index: 999;
}

.footer-container {
    padding: 52px 54px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer-left {
    width: 70%;
}

.footer-left h2 {
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.footer-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-buttons .btn {
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.footer-buttons .btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.footer-right {
    width: 30%;
    display: flex;
    justify-content: space-between;
}

.footer-links {
    list-style: none;
    width: 50%;
    padding: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-right p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-logo h3 {
    font-size: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social img.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: transform 0.3s;
}

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

.footer-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-links li a {
    text-decoration: none;
    color: #FFF;
    font-weight: 500;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
}

.footer-nav-links li a:hover {
    color: black;
}

.footer-menu {
    padding: 0;
}

/* 404 Page */
.not-found-wrapper {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    text-align: center;
    color: #333;
}

.not-found-container {
    padding: 200px 20px;
}

.graphic {
    font-size: 140px;
    font-weight: bold;
    letter-spacing: 10px;
    background: linear-gradient(
        135deg,
        #8e2de2,
        #4a00e0,
        #f27121,
        #e94057,
        #8a2387,
        #fcb045
    );
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}

.message-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
}

.message-subtitle {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    margin-bottom: 40px;
}

@media screen and (max-width: 1100px) {
    body {
        padding-bottom: 0;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .btn-red {
        background-color: red;
        padding: 10px;
        font-size: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
    }

    .nav-links li a {
        color: white;
        font-size: 24px;
    }

    .menu-toggle {
        display: block;
        color: #171717;
    }

    .main-header {
        width: 100%;
        left: 0;
        transform: none;
        padding: 0;
    }
    
    .header-button {
        display: none;
    }

    /* FOOTER */
    .footer-wrapper {
        background: white;
        height: auto;
        margin-bottom: 0;
        border-radius: 0 0 20px 20px;
    }

    .main-footer {
        width: 100%;
    }

    .footer-container {
        padding: 20px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-left h2 {
        font-size: 30px;
    }

    .footer-buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-right {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}

