/*
Theme Name: Akin
Description: Custom theme for Akin Detroit Under Development page
Version: 1.0
Author: DeepMind
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    background-color: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    background-image: url('assets/img/akin-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 40px 20px;
    z-index: 1;
}

.main-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    z-index: 2;
}

/* Investors Login Link */
.investors-login {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #fff;
    font-size: 15px;
    font-weight: 200;
    text-decoration: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.investors-login:hover {
    opacity: 0.7;
}

/* Typography and Content Styling */
.logo {
    margin-bottom: 0;
    max-width: 250px;
    width: 100%;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.title {
    font-size: 52px;
    font-weight: 200;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.description {
    font-size: 19px;
    font-weight: 200;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 0;
}

.contact-email {
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 0.5px;
    color: #fff;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .main-wrapper {
        padding: 80px 20px 40px;
    }

    .investors-login {
        top: 25px;
        right: 25px;
        font-size: 14px;
    }

    .logo {
        max-width: 110px;
        margin-bottom: 0px;
    }

    .title {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .contact-email {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .description {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .contact-email {
        font-size: 15px;
        text-align: center;
    }
}