@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,300;1,9..144,400&family=Manrope:wght@300;400;500;600;700&display=swap');

/*Global */
body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    margin: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    letter-spacing: 0.01em;
}

a {
    color: #ff69b4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

header .logo {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ff69b4;
    letter-spacing: -0.01em;
}

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

nav li {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

/* Hero Section */
.hero {
    background: url('images/penguin_banner.jpg') no-repeat center center/cover;
    color: #fe10ab;
    padding: 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fe10ab;
}

.hero p {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fe10ab;
    opacity: 0.85;
}

/* Sections */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    color: #ff69b4;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    letter-spacing: -0.02em;
}

.section h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.section h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

/* Figures */
.intro-figure {
    max-width: 100%;
    display: block;
    margin: 1rem auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Team */
.team-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.team-member {
    background: #fff1f6;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
}

.team-member p {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
}

.links a {
    margin: 0 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #fff;
    border-top: 1px solid #eee;
    color: #666;
    margin-top: 2rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.tab-content {
    max-width: 1200px;
    margin: 2rem auto;
}

.tab-section {
    display: none;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tab-section.active {
    display: block;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.section .team-container {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2.5rem;
    justify-items: stretch;
}

.section .team-member {
    width: 100%;
    max-width: 100%;
}