* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "abacaxi-devanagari", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    min-height: 100vh;
    background-color: #171B22;
    background-image: url('assets/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: soft-light;
    position: relative;
}

/* Abacaxi Devanagari Font Variants */
.abacaxi-thin {
    font-family: "abacaxi-devanagari", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.abacaxi-thin-italic {
    font-family: "abacaxi-devanagari", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.abacaxi-light {
    font-family: "abacaxi-devanagari", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.abacaxi-light-italic {
    font-family: "abacaxi-devanagari", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.abacaxi-regular {
    font-family: "abacaxi-devanagari", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.abacaxi-italic {
    font-family: "abacaxi-devanagari", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.abacaxi-medium {
    font-family: "abacaxi-devanagari", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.abacaxi-semibold {
    font-family: "abacaxi-devanagari", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.abacaxi-bold {
    font-family: "abacaxi-devanagari", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.abacaxi-bold-italic {
    font-family: "abacaxi-devanagari", sans-serif;
    font-weight: 700;
    font-style: italic;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(219deg, #001391 -5.84%, rgba(0, 6, 43, 0) 30%);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
}

header {
    margin-bottom: 100px;
}

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

.logo,
.custom-logo {
    max-width: 400px;
    height: auto;
}

.custom-logo-link {
    display: inline-block;
}

.coming-soon {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.3;
    text-align: right;
}

main {
    max-width: 800px;
}

h1 {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 40px; 
}

.brand-name {
    font-weight: 500;
}

.description {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 80px;
    max-width: 700px;
}

.contact-section {
    position: fixed;
    bottom: 60px;
    right: 80px;
    z-index: 10;
}

.contact-intro {
       font-size: 14px;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-left: 20px;
    text-align: left;
}

.contact-intro strong {
    font-weight: 700;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 20px;
    background: transparent;
    border: 1px solid #DDFBAE;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 280px;
}

.btn:hover {
    background: rgba(221, 251, 174, 0.1);
}

.btn span {
    flex: 1;
}

.btn-action {
    font-weight: 600;
}

.btn-brand {
    font-weight: 400;
}

.btn .arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #DDFBAE;
    border-radius: 50%;
    margin-left: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn:hover .arrow-circle {
    background: rgba(221, 251, 174, 0.15);
 
}

.btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 50px 60px;
    }

    h1 {
        font-size: 38px;
    }

    .logo,
    .custom-logo {
        max-width: 350px;
    }

    .coming-soon {
        font-size: 38px;
        text-align: right;
    }

    .contact-section {
        bottom: 50px;
        right: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 30px;
    }

    header {
        margin-bottom: 60px;
    }

    .logo,
    .custom-logo {
        max-width: 280px;
    }

    .coming-soon {
        font-size: 32px;
        text-align: right;
    }

    h1 {
        font-size: 32px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 60px;
    }

    .contact-section {
        bottom: 40px;
        right: 30px;
    }

    .btn {
        font-size: 15px;
        padding: none;
        min-width: 240px;
    }

    .btn .arrow-circle {
        width: 44px;
        height: 44px;
        margin-left: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 30px;
    }

    .coming-soon {
        font-size: 26px;
        text-align: left;
    }

    h1 {
        font-size: 26px;
    }

    .description {
        font-size: 15px;
    }

    .contact-section {
        position: static;
        margin-top: 60px;
    }

    .contact-intro {
        text-align: left;
    }

    .button-group {
        align-items: stretch;
    }

    .btn {
        font-size: 14px;
        padding: none;
        min-width: auto;
    }

    .btn .arrow-circle {
        width: 40px;
        height: 40px;
        margin-left: 12px;
    }

    .btn svg {
        width: 14px;
        height: 14px;
    }
}
