@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+Bengali:wght@500&display=swap');

:root {
    --color-top: #d4aa90;
    --color-mid: #4d8a63;
    --color-bottom: #1f5135;
    --white: #ffffff;
    --red: #a3121c;
    --green: #004b23;
    --button: #146c43;
    --button-hover: #0e5233;
    --progress: #d9534f;
}


body {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--color-top) 0%, var(--color-mid) 50%, var(--color-bottom) 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    text-align: center;
    position: relative;
}

/*!* Background overlay to simulate track photo *!*/
/*.overlay {*/
/*    background: url('athletes-bg.jpg') center/cover no-repeat;*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    opacity: 0.35;*/
/*    z-index: 0;*/
/*}*/

.header{
    margin-top: 57px;
}
/* Logo and Headings */
.logo {
    width: 100%;
    margin-bottom: 0.5rem;
}


.title{
    font-size: 71px;
    font-weight: 600;
}
.desc{
    margin-top: 30px;
    font-size: 30px;
}
.progress-text{
    font-size: 24px;
}
/* Progress */
.progress-section {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--progress);
    border-radius: 10px 0 0 10px;
    transition: width 0.5s ease;
}

/* Launch Text */
.launch {
    font-size: 24px;
    margin-bottom: 1.5rem;
}

/* Subscribe Section */
.subscribe {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.subscribe input {
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 8px;
    width: 60%;
    font-size: 1rem;
    outline: none;
}

.subscribe button {
    background: var(--button);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.subscribe button:hover {
    background: var(--button-hover);
}

/* Footer */
footer {
    margin-top: 80px;
    text-align: center;
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 30px;
}



/* Responsive */
@media (max-width: 600px) {
    .title{
        font-size: 35px;
        font-weight: 600;
    }
    .desc {
        font-size: 15px;
    }
    footer {
        font-size: 15px;
    }
    .launch {
        font-size: 15px;
    }
    .progress-text{
        font-size: 15px;
    }
    .org-name, .org-name-bn {
        font-size: 1rem;
    }
    .subscribe input {
        width: 65%;
    }
}