/* Filename: assets/styles/index.css */

/* General container for layout consistency */
.index-container {
    width: 70%;
    max-width: 800px;
    margin: 1rem auto;
    box-sizing: border-box;
        border: 1px solid white;
            background-color: rgba(255, 255, 255, 0.5); /* Slightly white with 80% opacity */
                border-radius: 8px;
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Intro section styling */
.index-intro {
    background: transparent;
    border: 1px solid grey;
                background-color: rgba(255, 255, 255, 0.5); /* Slightly white with 80% opacity */
                border-radius: 8px;
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 20px;
    margin: 20px; /* Space around the section */
    text-align: left;
    font-family: "Arial", sans-serif; /* Clean font */
}

/* Heading style */
.index-intro h1 {
    padding: 10px;
    font-size: 2.5rem; /* Large heading */
    font-weight: bold;
        text-shadow: 
        1px 1px 0 rgba(255,255,255, 0.2),  /* Right and bottom shadow */
        -1px 1px 0 rgba(255,255,255, 0.2), /* Left and bottom shadow */
        1px -1px 0 rgba(255,255,255, 0.2), /* Right and top shadow */
        -1px -1px 0 rgba(255,255,255, 0.2); /* Left and top shadow */
    margin-bottom: 20px;
}

/* Paragraph styles */
.index-intro p {
    padding: 10px;
    font-size: 1.5rem; /* Slightly larger than default font size */
    line-height: 1.3; /* Increased spacing for readability */
    color: black;
    text-shadow: 
        1px 1px 0 rgba(255,255,255, 0.2),  /* Right and bottom shadow */
        -1px 1px 0 rgba(255,255,255, 0.2), /* Left and bottom shadow */
        1px -1px 0 rgba(255,255,255, 0.2), /* Right and top shadow */
        -1px -1px 0 rgba(255,255,255, 0.2); /* Left and top shadow */
    margin-bottom: 10px; /* Spacing between paragraphs */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .container {
        width: 90%; /* Slightly wider for smaller screens */
    }

    .intro h1 {
        font-size: 2rem; /* Slightly smaller heading */
    }

    .intro p {
        font-size: 1rem; /* Adjust paragraph size */
    }
}
