@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');

:root {
    --bg-color: #1f1f3b;
    --white-color: #ffffff;
    --input: #e9e9e9;
    --org-color: #f0a028;
}

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

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Serif', serif;
    background: var(--bg-color);
}


/* Main Content Styles */
main {
    max-width: 1340px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

.bg-pattern{
    position: absolute;
    top: 10vh;
    right: 0;
    height: 50vw;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 6rem;
    font-weight: bold;
    background: -webkit-linear-gradient(#ffffff,#ffffff,#ffffff, #999999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* color: var(--white-color); */
    margin: 0;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    /* align-items: center; */
    align-items: start;
}

.text h2 {
    font-size: 2.5rem;
    color: var(--org-color);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--white-color);
    margin-bottom: 2rem;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--org-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}

.join-btn:hover {
    background-color: #f8b44c;
}

.image {
    position: relative;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 1rem;
}

.image img {
    /* width: 100%; */
    width: 630px;
    height: 360px;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .text h2 {
        font-size: 2rem;
    }
}