/* General Styles */
:root {
    --primary-color: #760b0d;
    --primary-color-light: #a10e11;
    --primary-color-dark: #5a090a;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --font-family: 'Roboto', sans-serif;
}

body {
    font-family: 'STV', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    font-weight: 500;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color-light);
}

p {
    margin-bottom: 1rem;
}

.section-padding {
    padding: 160px 0 60px;
}

.bg-light {
    background-color: var(--light-gray);
}

.btn-primary, .btn-login {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover, .btn-login:hover {
    background-color: var(--primary-color-light);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header Styles */
/* These styles are now handled by assets/css/styles.css */

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/back.png') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 150px 0;
}

#hero h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#hero .btn-primary {
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* About Section */
.about-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.card {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

/* Events Section */
.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background-color: var(--white);
    border-left: 5px solid var(--primary-color);
}

.event-card h3 {
    margin-top: 0;
}

/* Success Stories Section */
.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story {
    text-align: center;
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.story img {
    border-radius: 50%;
    margin-bottom: 15px;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.story h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.story p {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

/* Contact Section */
form .form-group {
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
    box-sizing: border-box;
}

form textarea {
    resize: vertical;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo h3, .footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    font-weight: normal;
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-contact p {
    color: #ccc;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 0.9rem;
    color: #ccc;
}

/* Dashboard Page Specific Styles */
#dashboard-main {
    background-color: var(--light-gray);
}

.welcome-message {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.welcome-message h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dashboard-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.dashboard-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.dashboard-card p {
    margin-bottom: 25px;
    color: #666;
}

.error-message {
    text-align: center;
    padding: 40px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    color: #721c24;
}

.error-message h2 {
    color: #721c24;
    margin-bottom: 15px;
}

.error-message .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.error-message .btn-primary:hover {
    background-color: var(--primary-color-light);
    border-color: var(--primary-color-light);
}

/* Profile Page Specific Styles */
#profile-page {
    background-color: var(--light-gray);
}

.profile-container {
    display: flex;
    gap: 40px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.profile-picture-section {
    text-align: center;
    flex-shrink: 0;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid var(--light-gray);
}

.profile-form-section {
    flex-grow: 1;
}

.profile-form-section h3 {
    color: var(--primary-color-dark);
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

/* Active Link in Navigation */
nav ul li a.active {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

/* Directory Page Specific Styles */
#directory-page {
    background-color: var(--light-gray);
}

.directory-search-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.directory-search-form {
    display: flex;
    flex-grow: 1;
    max-width: 600px;
}

.search-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
    font-family: var(--font-family);
}

.directory-search-form .btn-primary {
    border-radius: 0 5px 5px 0;
    margin-left: -1px; /* To join input and button */
}

.filter-dropdown .btn-secondary {
    white-space: nowrap;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.alumni-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alumni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.alumni-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    flex-shrink: 0;
    border: 3px solid var(--light-gray);
}

.alumni-info {
    flex-grow: 1;
}

.alumni-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--primary-color-dark);
}

.alumni-degree, .alumni-company {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: #666;
}

.alumni-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 15px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a:hover {
    background-color: var(--light-gray);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Events Page Specific Styles */
#events-page {
    background-color: var(--light-gray);
}

.events-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--light-gray);
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px; /* To align with the border-bottom of the container */
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-btn:hover {
    color: var(--primary-color-light);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-item {
    display: flex;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-details {
    padding: 30px;
    flex-grow: 1;
}

.event-details h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color-dark);
    font-size: 1.5rem;
}

.event-details p {
    margin-bottom: 10px;
    color: #555;
}

.event-details p:last-of-type {
    margin-bottom: 20px;
}

.event-details .btn-primary, .event-details .btn-secondary {
    margin-top: 10px;
}

.past-event .event-date {
    background-color: #999;
}

/* Jobs Page Specific Styles */
#jobs-page {
    background-color: var(--light-gray);
}

.jobs-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color-dark);
}

.job-type {
    background-color: var(--primary-color-light);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.job-company {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--light-gray);
}

.company-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.company-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.job-details p {
    color: #555;
    margin-bottom: 20px;
}

.job-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.job-meta span {
    display: flex;
    align-items: center;
}

.job-meta i {
    margin-right: 5px;
}

.job-actions {
    text-align: right;
}

/* Registration Page Specific Styles */
#register-page {
    background-color: var(--light-gray);
}

.register-form-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
}

.register-form-container h2 {
    text-align: center;
    margin-bottom: 10px;
}

.register-form-container p {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.register-form-container h3 {
    color: var(--primary-color-dark);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.register-form-container hr {
    border: none;
    border-top: 1px solid var(--light-gray);
    margin: 20px 0;
}

/* Success Page Specific Styles */
#success-page {
    background-color: var(--light-gray);
}

.success-message-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.success-message-container h2 {
    color: #28a745; /* Green color for success */
    margin-bottom: 20px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin: 20px 0;
}

/* Admin Dashboard Page Specific Styles */
#admin-dashboard-page {
    background-color: var(--light-gray);
}

.admin-users-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.admin-user-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-user-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.user-info h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color-dark);
    font-size: 1.3rem;
}

.user-info p {
    margin-bottom: 8px;
    color: #555;
}

.user-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Login Page Specific Styles */
#login-page {
    background-color: var(--light-gray);
}

.login-form-container {
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.login-form-container h2 {
    margin-bottom: 10px;
}

.login-form-container p {
    color: #666;
    margin-bottom: 30px;
}

.login-form-container .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.login-form-container .forgot-password {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.login-form-container .btn-primary.full-width {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.login-help {
    margin-top: 30px;
    font-size: 0.9rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(118, 11, 13, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.full-width {
    width: 100%;
}

/* Responsive Form Styles */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 20px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-actions .btn-primary,
    .form-actions .btn-secondary {
        width: 100%;
    }
}

/* Posts Page Specific Styles */
#posts-page {
    background-color: var(--light-gray);
}

.posts-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.main-content {
    flex: 1;
}

.sidebar {
    width: 300px;
    order: 2; /* Position sidebar on the right */
}

.main-content {
    order: 1; /* Position main content on the left */
}

.sidebar-section {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 25px;
    margin-bottom: 20px;
}

.sidebar-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-color-dark);
    font-size: 1.3rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

.users-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.user-item:hover {
    background-color: var(--light-gray);
}

.user-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    width: 100%;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--light-gray);
}

.user-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--primary-color-dark);
}

.user-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

.no-users {
    text-align: center;
    color: #777;
    font-style: italic;
    padding: 20px 0;
}

.post-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.post-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--light-gray);
}

.post-author-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--primary-color-dark);
}

.post-time {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

.post-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.post-content {
    margin-bottom: 20px;
}

.post-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.post-image {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 15px;
}

.post-footer {
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

.post-stats {
    margin-bottom: 20px;
}

.comment-count {
    color: #666;
    font-size: 0.9rem;
}

.comment-section h5 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    color: var(--primary-color-dark);
}

.no-comments {
    color: #777;
    font-style: italic;
    margin-bottom: 20px;
}

.comment {
    display: flex;
    margin-bottom: 20px;
}

.comment-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
}

.comment-content {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.comment-header strong {
    color: var(--primary-color-dark);
}

.comment-time {
    color: #777;
    font-size: 0.8rem;
}

.comment-form {
    margin-top: 20px;
}

.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
    box-sizing: border-box;
    resize: vertical;
    min-height: 80px;
}

.comment-form .btn-primary {
    margin-top: 10px;
}

.create-post-container {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
}

.create-post-container h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-color-dark);
}

.create-post-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
    box-sizing: border-box;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 15px;
}

.create-post-form .form-group {
    margin-bottom: 20px;
}

.create-post-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.create-post-form input[type="file"] {
    display: none;
}

.create-post-form label[for="post_image"] {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--light-gray);
    color: var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.create-post-form label[for="post_image"]:hover {
    background-color: #e0e0e0;
}

.create-post-form .form-actions {
    display: flex;
    justify-content: flex-end;
}

.no-posts {
    text-align: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    #hero {
        padding: 100px 0;
    }

    #hero h2 {
        font-size: 2.2rem;
    }

    .about-cards {
        flex-direction: column;
    }

    .event-cards, .success-stories-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Posts Page Responsive Design */
    .posts-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .main-content {
        width: 100%;
    }
}

/* Graduate Inquiry Section Styles */
#nino-services .sectionContent {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-top: 40px;
}

#nino-services .nino-sectionHeading {
    text-align: center;
    margin-bottom: 30px;
}

#nino-services .nino-subHeading {
    display: block;
    font-size: 1rem;
    color: #777;
}

#SearchHotel form ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#SearchHotel form li {
    flex-grow: 1;
}

#SearchHotel form select,
#SearchHotel form input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
    box-sizing: border-box;
}

#SearchHotel form .Hotelsubmit {
    width: 100%;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#SearchHotel form .Hotelsubmit:hover {
    background-color: var(--primary-color-light);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#modal-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px;
    border: 5px solid var(--light-gray);
}

#modal-name {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

#modal-position {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-top: 0;
    margin-bottom: 20px;
}

#modal-story {
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

/* Graduate Inquiry Section Styles */
#nino-services .sectionContent {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-top: 40px;
}

#nino-services .nino-sectionHeading {
    text-align: center;
    margin-bottom: 30px;
}

#nino-services .nino-subHeading {
    display: block;
    font-size: 1rem;
    color: #777;
}

#SearchHotel form ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#SearchHotel form li {
    flex-grow: 1;
}

#SearchHotel form select,
#SearchHotel form input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
    box-sizing: border-box;
}

#SearchHotel form .Hotelsubmit {
    width: 100%;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#SearchHotel form .Hotelsubmit:hover {
    background-color: var(--primary-color-light);
}
