/* static/styles/home.css */

/* General Styling for Main Background */

main {
    background-image: url('/pictures/assets/wallpaper/pixel_city.gif');
    /* background-image: url('/pictures/assets/wallpaper/blue_hack.gif'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Home Section */
#home {
    text-align: center;
    padding: 2rem;
}

#home h1 {
    font-size: 2.5rem;
    color: #f1f1f1;
}

#home p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Introduction Section */
.introduction {
    /* background-color: rgba(255, 255, 255, 0.44); */
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1rem;
}

.introduction .intro-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Validation Section */
#validation {
    /* background-color: rgba(255, 255, 255, 0.44); */
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1.5rem;
}

#validation h4 {
    font-size: 1.8rem;
    color: #f1f1f1;
    text-align: center;
    margin-bottom: 1rem;
}

.validation-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Project Info Section */
#project-info {
    /* background-color: rgba(255, 255, 255, 0.44); */
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1.5rem;
}

#project-info h4 {
    font-size: 1.8rem;
    color: #f1f1f1;
    text-align: center;
    margin-bottom: 1rem;
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}


/* Community Info Section */
#community-info {
    /* background-color: rgba(255, 255, 255, 0.44); */
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1.5rem;
}

#community-info h4 {
    font-size: 1.8rem;
    color: #f1f1f1;
    text-align: center;
    margin-bottom: 1rem;
}

.community-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Social Media Section */
#social-media {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
    margin-top: 1.5rem;
}

#social-media h4 {
    font-size: 2rem;
    color: #ffffff;
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Social Media Item Styling */
.rs-item {
    background-color: rgba(0, 0, 0, 0.65);
    /* background-color: rgba(255, 255, 255, 0.15); */
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    width: 140px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.rs-item:hover {
    transform: scale(1.05);
}

.rs-item h5 {
    font-size: 1.2rem;
    color: #f1f1f1;
    margin-bottom: 0.5rem;
}

.rs-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.rs-item p {
    font-size: 0.9rem;
    color: #f1f1f1;
    margin-bottom: 0.5rem;
}

.rs-item a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
    color: #fff;
    background-color: #6a0dad;
    border-radius: 4px;
    text-decoration: none;
}

.rs-item a:hover {
    background-color: #9a4dff;
}


