/* counseling-style.css */
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0f7fa;
    color: #333;
}

header {
    background-color: #00790e;
    color: white;
    text-align: center;
    padding: 2rem 0;
}
/* Top-Right Corner Navigation */
.top-right-nav {
    position: absolute;
    top: 10px;
    right: 20px;
    text-align: right;
}

.top-right-nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 5px;
}

.top-right-nav a:hover {
    background-color: white;
    color: #00790e;
}
nav {
    background-color: #005f0b;
    padding: 1rem;
    text-align: center;
}
nav {
    background-color: #00600b;
    padding: 1rem;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 2rem;
    margin: 1rem auto;
    max-width: 800px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #00790e;
    text-align: center;
    margin-bottom: 1rem;
}

ul {
    margin: 1rem 0;
    padding-left: 20px;
}

footer {
    background-color: #00790e;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

#form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2em auto;
    width: 100%;
}

#contact-form {
    background: #fff;
    padding: 2em 2.5em;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin: 0 auto;
}

#contact-form h2 {
    text-align: center;
    color: #00790e;
}

#contact-form label {
    font-weight: 600;
    margin-bottom: 0.2em;
}

#contact-form input,
#contact-form textarea {
    padding: 0.6em;
    border: 1px solid #bcd0c7;
    border-radius: 8px;
    font-size: 1em;
}

#contact-form textarea {
    resize: vertical;
}

#contact-form button[type="submit"] {
    background: #2d4a53;
    color: #fff;
    padding: 0.8em;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

#contact-form button[type="submit"]:hover {
    background: #1b2e35;
}

/* Bar & Restaurant sub-navigation */
.bar-nav {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin: 1.5em 0 2em 0;
}

.bar-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.5em 1.2em;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.bar-nav a:hover,
.bar-nav a:focus {
    background: #2d4a53;
    color: #fff;
}

/* Section card style for Bar & Restaurant pages */
section {
    max-width: 700px;
    margin: 2em auto;
    background: #fff;
    padding: 2em 2.5em;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

section h2 {
    color: #2d4a53;
    margin-top: 0;
    text-align: center;
}

section ul {
    padding-left: 1.2em;
}

section ul li {
    margin-bottom: 0.7em;
    font-size: 1.05em;
}

/* Improved form styles for Bar & Restaurant pages */
form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

form label {
    font-weight: 600;
    margin-bottom: 0.2em;
}

form input,
form textarea {
    padding: 0.6em;
    border: 1px solid #bcd0c7;
    border-radius: 8px;
    font-size: 1em;
    background: #f7fafb;
}

form textarea {
    resize: vertical;
}

form button[type="submit"] {
    background: #2d4a53;
    color: #fff;
    padding: 0.8em;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

form button[type="submit"]:hover {
    background: #1b2e35;
}

/* Responsive design for Bar & Restaurant pages */
@media (max-width: 800px) {
    section {
        max-width: 98vw;
        padding: 1em 0.5em;
    }
    .bar-nav {
        gap: 1em;
    }
}