/* Welcome Page Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    overflow-x: hidden;
}

.welcome-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    background-color: rgba(26, 26, 26, 0.8);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hero Section */
.hero-section {
    position: relative;
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/gab_logo_with_background_2.0-04.jpg') no-repeat center center/cover;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.25rem;
    color: #d0d0d0;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.cta-button {
    background-color: #007bff;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}


/* Content Sections */
.content-section {
    padding: 4rem 2rem;
    text-align: center;
}

.content-section.dark {
    background-color: #1a1a1a;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background-color: #242424;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
}

/* How it works section */
.how-it-works-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1100px;
    margin: 3rem auto 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.how-it-works-step {
    text-align: center;
    max-width: 220px;
}

.step-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 1rem auto;
}

.how-it-works-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.how-it-works-step p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Social Media Section */
.social-media-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.social-media-content {
    flex: 1;
    text-align: left;
}

.social-media-image {
    flex: 1;
    min-width: 280px;
}

.social-media-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    color: #888888;
    padding: 3rem 2rem;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p, .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.7;
}

.footer-section a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
        flex-direction: column;
    }
    .nav-links {
        margin-top: 1rem;
    }
    .nav-links a {
        margin: 0 0.75rem;
    }
    .hero-section {
        padding: 4rem 1rem;
    }
    .content-section {
        padding: 3rem 1rem;
    }
    .social-media-section {
        text-align: center;
    }
    .social-media-content {
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .how-it-works-grid {
        flex-direction: column;
        align-items: center;
    }
    .how-it-works-step {
        margin-bottom: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
