/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
}

/* Banner Header - 15% of screen */
.banner {
    background-color: #000000;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.logo {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}

/* Hamburger Menu */
.hamburger {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffcb01;
    transition: 0.3s;
}

.hamburger:hover span {
    background-color: #ffd633;
}

/* Red Divider Line - 5px */
.divider {
    height: 5px;
    background-color: #e2130e;
    width: 100%;
}

/* Navigation Menu */
.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    padding-top: 100px;
    overflow-y: auto;
}

.menu.active {
    left: 0;
}

.menu ul {
    list-style: none;
    padding: 0;
}

.menu ul li {
    border-bottom: 1px solid #e0e0e0;
}

.menu ul li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s;
}

.menu ul li a:hover {
    background-color: #f0f0f0;
}

/* Content Panel */
.content-panel {
    background-color: #ffffff;
    flex: 1;
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    width: 95%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-panel h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.content-panel p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Footer - 5% of screen */
.footer {
    background-color: #f5f5f5;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-size: 14px;
}

/* Profile Page Styles */
.profile-info {
    margin-bottom: 30px;
}

.profile-info table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.profile-info table td {
    padding: 10px 0;
    color: #555;
}

.profile-info table td:first-child {
    font-weight: bold;
    width: 40%;
}

.profile-status {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.profile-status p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.profile-status .label {
    font-weight: bold;
    display: inline-block;
    min-width: 150px;
}

.error-message {
    color: #e2130e;
    padding: 20px;
    background-color: #ffe6e6;
    border-radius: 5px;
}

/* Comments Form */
.comments-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comments-form textarea {
    width: 100%;
    padding: 12px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

.comments-form textarea:focus {
    outline: none;
    border-color: #ffcb01;
}

.submit-button {
    background-color: #ffcb01;
    color: #000000;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #ffd633;
}

.submit-button:active {
    background-color: #e6b800;
}

.comment-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.comment-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.comment-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Overlay for menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
    .content-panel {
        padding: 30px;
    }

    .content-panel h1 {
        font-size: 28px;
    }

    .profile-info table td:first-child {
        width: 30%;
    }
}

@media (min-width: 1024px) {
    .content-panel {
        padding: 40px;
    }

    .content-panel h1 {
        font-size: 32px;
    }
}
