/* Shared CSS for ConcordProsper */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    color: #fff;
}

header {
    background: #1a1a1a;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #333;
}

footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
    color: #999;
    border-top: 2px solid #333;
}

footer a {
    color: #f7931a;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
}

footer a:hover {
    color: #fff;
}


.logo {
    font-size: 1.5rem;
    color: #f7931a;
    text-decoration: none;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav.mobile-hidden {
    display: none;
}

nav.desktop-visible {
    display: flex; /* Ensure nav is visible for non-mobile */
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a.active {
    color: #f7931a;
}

nav a:hover {
    color: #f7931a;
}

.btn-login {
    color: #f7931a;
    border: 1px solid #f7931a;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-login:hover {
    background: #f7931a;
    color: #fff;
}

textarea {
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background: #222;
    color: #fff;
    resize: vertical; /* Allow vertical resizing only */
    width: 100%; /* Ensure it takes full width */
    box-sizing: border-box; /* Include padding in width calculation */
    min-height: 5em; /* Minimum height equivalent to 3 lines of text */
}

textarea::placeholder {
    color: #aaa;
}


/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 14px;
    right: 20px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #f7931a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
nav.mobile-visible {
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 1000;
    padding: 10px 20px;
    gap: 10px;
    border-left: 2px solid #333;
    width: 250px;
    text-align: right;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav.desktop-visible {
        display: none;
    }

    nav.mobile-visible {
        display: flex;
    }
}
