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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #f5f5f5;
    color: #333;
}

header {
    background: #111;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: white;
    padding: 18px;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #0077ff;
}

.section {
    max-width: 1100px;
    margin: auto;
    padding: 0px 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.bio-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.bio-content img {
    width: 250px;
    border-radius: 50%;
}

.bio-content p {
    margin-bottom: 15px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 25px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
}

.card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.card h3 {
    padding: 20px;
    text-align: center;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px,1fr));
    gap: 20px;
}

.photo-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}



.photo-grid img:hover {
    transform: scale(1.03);
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {


    nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    header h1 {
        font-size: 2.2rem;
    }

}


.bio-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.bio-content img {
    width: 250px;
    border-radius: 50%;
}

.bio-content p {
    margin-bottom: 15px;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    text-align: center;
}

.links-list li {
    margin: 0.75rem 0;
}

.links-list a {
    color: #0066cc;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.links-list a:hover {
    color: #004999;
    text-decoration: underline;
}

.links-list a:visited {
    color: #0066cc;
}

