/* styles.css */

/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column; 
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

main {
    flex: 1;
    padding: 2rem;
}

footer {
    background-color: #333;
    color: #ddd;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Main container for the section choice area */
.section-choice-container-home-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.section-choice-container-documentation-page { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual card styles */
.section-container-home-page {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    transition: transform 0.2s, box-shadow 0.2s;
}
/*The hyperlink inside the card*/
.section-container-home-page a {
    display: flex; /* make the link behave like a flex container */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 12px; /* optional for smooth clickable area inside the box */
}

.section-container-home-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
	cursor: pointer;
}

.section-container-home-page a {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
}