/* ---------------- Reset ---------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f0f2f5;
    color: #333;
}

/* ---------------- Top Banner ---------------- */
.top-banner {
    width: 100%;
    background-color: #2563eb;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ---------------- Main Content ---------------- */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

/* ---------------- Banner inside main content ---------------- */
.banner {
    text-align: center;
    padding: 50px 20px;
    background: url('../images/banner-home.jpg') no-repeat center center/cover;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    border-radius: 8px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 50px;
}

.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.banner p {
    font-size: 1.2rem;
}

/* ---------------- Buttons ---------------- */
/* Button Container */
.button-container {
    text-align: center;
    margin-top: 50px;
}

/* Polished Button Style */
.main-button {
    display: inline-block;
    padding: 15px 35px; /* bigger, easy to click */
    margin: 15px;
    background: linear-gradient(135deg, #4e73df, #1cc88a); /* gradient */
    color: white;
    text-decoration: none; /* remove underline */
    font-size: 18px;
    font-weight: bold;
    border: 2px solid transparent; /* subtle border */
    border-radius: 30px; /* pill shape */
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2); /* shadow */
    transition: all 0.3s ease; /* smooth hover animation */
}

/* Hover effect */
.main-button:hover {
    transform: translateY(-3px); /* lifts button */
    box-shadow: 0px 8px 20px rgba(0,0,0,0.3); /* bigger shadow */
    background: linear-gradient(135deg, #1cc88a, #4e73df); /* gradient flips */
    cursor: pointer;
}

/* Optional: focus effect for accessibility */
.main-button:focus {
    outline: none;
    box-shadow: 0px 0px 0px 3px rgba(76, 175, 80, 0.5);
}






/* ---------------- Content pages (capstone/blog) ---------------- */
.main-content {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.main-content h1, .main-content h2, .main-content h3 {
    margin-bottom: 20px;
}

.main-content p {
    margin-bottom: 15px;
}

/* ---------------- Blog posts ---------------- */
.blog-post {
    padding: 25px;
    margin-bottom: 40px;
    border-left: 6px solid #ff7f50;
    background-color: #fff8f2;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog-post img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 5px;
}
.blog-post {
    clear: both;
}

