/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    background-color: #36454F; /* Charcoal grey */
    color: white; /* White text */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header styling */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #2F3D46;
}

/* Logo styling */
.logo {
    margin-right: 20px;
}

.logo img {
    width: 150px; /* Adjust size as needed */
    height: auto;
}

/* Navigation styling */
.nav-top {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.nav-top ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-top ul li {
    position: relative;
}

.nav-top ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    transition: background-color 0.3s;
}

.nav-top ul li a:hover {
    background-color: #4A5E6A;
}

/* Active link styling */
.nav-top ul li a.active {
    background-color: #4A5E6A;
    font-weight: bold;
}

/* Hover icon (miner's pick) */
.hover-icon {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; /* Adjust size as needed */
    height: auto;
    z-index: 1;
}

.nav-top ul li:hover .hover-icon {
    display: block;
}

/* Banner styling */
.banner {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Main content styling */
.content {
    padding: 50px;
}

.content h1 {
    font-size: 36px; /* Larger header text */
    margin-bottom: 20px;
}

.content h2 {
    font-size: 24px; /* Subheading for team members */
    margin-top: 20px;
    margin-bottom: 10px;
}

.content p {
    font-size: 18px; /* Smaller body text */
    margin-bottom: 15px;
}

.content .main-text {
    font-size: 20px; /* Slightly larger for the main body text */
    font-weight: bold;
}

/* Team grid styling (for management.html) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

/* Photo container for hover effect */
.photo-container {
    position: relative;
    width: 200px; /* Adjust size as needed */
    height: 200px;
    margin: 0 auto;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.3s;
}

.charcoal-drawing {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.photo-container:hover .team-photo {
    opacity: 0;
}

.photo-container:hover .charcoal-drawing {
    opacity: 1;
}

/* Ordered list styling (for about-us.html) */
.content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content ol li {
    margin-bottom: 10px;
}

/* Contact form styling (for contact.html) */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    background-color: #4A5E6A;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #5A6E7A;
}