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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('images/raijin-logo-3.JPEG') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem 3rem;
    border-radius: 10px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.blurb {
    margin-bottom: 2rem;
}

.blurb p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.social-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border: 2px solid white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .social-links {
        flex-direction: column;
    }
}
