@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
    --color: gold;
    --hover: #DA8A67;
    --white: #FFFFFF;
    --black: #000000;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Header */
header {
    background: var(--glass);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(230, 180, 34, 0.2);
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo {
    height: 50px;
    filter: drop-shadow(0 0 5px var(--color));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: var(--dark-gray);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--color);
}

nav a:hover::after {
    width: 100%;
}

/* Cover Section */
.cover {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    padding: 6vw;
    overflow: hidden;
}

.cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/desmos1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

.cover__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cover h1 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.cover p {
    color: var(--white);
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Spacer */
.spacer {
    height: 80px;
}

/* Constrained Group */
.group {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.group h2 {
    color: var(--black);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Board Members Section */
.board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
    justify-content: center;
}
@media (max-width: 768px) {
    .board-grid {
        grid-template-columns: 1fr;
    }
}

.board-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.board-card:nth-child(2) { animation-delay: 0.1s; }
.board-card:nth-child(3) { animation-delay: 0.2s; }
.board-card:nth-child(4) { animation-delay: 0.3s; }
.board-card:nth-child(5) { animation-delay: 0.4s; }
.board-card:nth-child(6) { animation-delay: 0.5s; }

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.board-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 2px solid var(--color);
}

.board-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.board-card .role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color);
    margin-bottom: 0.5rem;
}

.board-card .bio {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Animation */
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cover h1 {
        font-size: 2.5rem;
    }

    .cover p {
        font-size: 1.2rem;
    }

    .group h2 {
        font-size: 2rem;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }

    .board-card h3 {
        font-size: 1.5rem;
    }

    .board-card .role,
    .board-card .bio {
        font-size: 0.95rem;
    }
}

/* Existing CSS remains unchanged up to this point */

/* New Info Section Styles */
.info {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease forwards;
}

.director-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.director-table th,
.director-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.director-table th {
    background: #B87333; /* Copper for table headers */
    color: var(--black);
    font-weight: 600;
}

.director-table tr:last-child td {
    border-bottom: none;
}

.director-table tr:hover {
    background: rgba(0, 0, 0, 0.05);
}

footer {
  text-align: left;
  padding: 1rem;
  font-size: 0.9rem;
  color: #999;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
}