/* Index Page Specific Styles */

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    font-weight: 300;
}

/* Content Section */
.content {
    background: var(--color-white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about {
    margin-bottom: 40px;
}

.about h2 {
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.about h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgb(0, 193, 212), transparent);
    border-radius: 2px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-medium);
}

/* Events CTA */
.events-cta {
    text-align: center;
    margin-top: 30px;
}

.events-cta p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* Join Section */
.join-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 10px;
}

.join-section h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.join-section p {
    font-size: 1.1rem;
    color: var(--color-text-medium);
    margin-bottom: 25px;
}

.join-section > .btn {
    margin-bottom: 30px;
}

/* Telegram Section */
.telegram-section {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.telegram-section h3 {
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: center;
}

.telegram-section > p {
    text-align: center;
    margin-bottom: 25px;
}

.telegram-join {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 30px 0;
    flex-wrap: nowrap;
}

.telegram-qr {
    text-align: center;
}

.telegram-qr img {
    width: 150%;
    max-width: 200px;
    height: auto;
    border: 3px solid rgb(0, 193, 212);
    border-radius: 10px;
    padding: 12px;
    background: var(--color-white);
}

.qr-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Contact Section */
.contact-section {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.contact-section h3 {
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: center;
}

.contact-section p {
    text-align: center;
    margin-bottom: 15px;
}

.contact-section a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-section a:hover {
    text-decoration: underline;
}
