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

/* BODY */
body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
    position: relative;
}

/* STATIC BACKGROUND LOGO, CENTERED FOR ENTIRE SITE */
body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 1400px;
    height: 1400px;
    background-image: url('6-nobg.png'); /* filename must match EXACTLY */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffffee;
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* LOGO */
.logo img {
    height: 48px;
    width: auto;
    display: block;
}

/* NAV */
nav a {
    margin-left: 25px;
    font-size: 1.05rem;
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}
nav a:hover {
    color: #666;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
}
.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}
.hero .soft {
    font-weight: 300;
}
.hero p {
    font-size: 1.2rem;
    color: #444;
}

/* CONTENT SECTIONS */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}
.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.card p {
    color: #444;
}

/* LEADERSHIP */
.leadership {
    padding: 80px 20px;
    text-align: center;
}
.leadership h2 {
    font-size: 2rem;
    margin-bottom: 50px;
}

/* EXEC GRID */
.exec-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* EXEC CARDS */
.exec-card {
    background: #ffffffcc;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(2px);
}
.exec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

/* EXEC IMAGES */
.exec-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    filter: brightness(0.95);
    transition: filter 0.25s ease;
}
.exec-card:hover img {
    filter: brightness(1.05);
}

/* EXEC TEXT */
.exec-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}
.exec-card p {
    font-size: 0.95rem;
    color: #555;
}