/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f9f9f9;
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

/* .schedule {
    width: 90%;
    margin: 0 auto 0 auto;
} */

#schedule {
    width: 90%;
    margin: 20px auto 0 auto;
    background-color: #f2f2f2;
    padding: 40px;
    border-radius: 10px;
}

.echWan {
    margin-left: auto;
}

/* Header & Navigation */
header {
    /* background-color: #333; */
    padding: 15px 0;
    text-align: center;
    background-color: rgba(34, 34, 34, 0.8);
    /* background-color: rgba(198, 61, 61, 0.5); */
}



nav {
    display: flex;
    justify-content: center;
}

/* header, footer {
    background-color: rgba(34, 34, 34, 0.5);
} */

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 20px;
    transition: background 0.3s;
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: #555;
}

/* Main Content */
main {
    flex: 1;
    /* max-width: 1200px; */
    width: 100%;
    /* margin: 40px auto; */
    /* padding: 20px; */
    background-color: #ffffff;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    /* background-image: url("assets/jejemonbackground.jpg"); */
    background-image: url("assets/jejemonbackground.jpg");
}

/* Headings */
h1, h2, h3 {
    color: #222;
    /* margin-bottom: 15px; */
    text-align: left;
}

.section_text {
    color: #f6f6f6;
    margin-bottom: 15px;
}

h1.section-title {
    font-size: 2.2rem;
    color: #f6f6f6;
}

.hero-power {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.about-power {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 83.3vh;
}

#hero {
    height: 83.3vh;
}


/* Hero Section */
.hero-wrapper {
    display: flex;
    flex-direction: row; /* Ensures side-by-side layout */
    align-items: center;
    justify-content: space-between;
    /* padding: 60px 20px; */
    max-width: 1200px;
    /* margin: 0 auto; */
}

.hero-container {
    flex: 1;
    padding: 20px;
}

.pfp-container {
    display: flex;
    justify-content: center;
}

.pfp {
    max-width: 300px;
    height: auto;
    border-radius: 50%;
}

/* About Section */
#about {
    padding: 40px;
    background-color: rgba(34, 34, 34, 0.3);
    max-width: 900px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.glass {
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 2.5px );
    -webkit-backdrop-filter: blur( 2.5px );

}

#about p {
    font-size: 1rem;
    color: #f6f6f6;
}

/* Blog Page */
#blog {
    max-width: 900px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-post {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 5px solid #007bff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-post h2 {
    font-size: 1.8rem;
    color: #007bff;
}

.blog-post p {
    margin: 5px 0;
    font-size: 1rem;
    color: #333;
}

.blog-post a {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.blog-post a:hover {
    text-decoration: underline;
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

form label {
    font-size: 16px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

form textarea {
    height: 120px;
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    width: 100%;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .pfp-container {
        margin-top: 20px;
    }

    .pfp {
        max-width: 200px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    main {
        margin: 20px;
        padding: 15px;
    }

    form {
        width: 90%;
    }

    .blog-post {
        padding: 15px;
    }

    .hero-container h1 {
        font-size: 2rem;
    }
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #000;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

