* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Commissioner", sans-serif;
}

body {
    font-family: "Commissioner", sans-serif;
    font-weight: 300;
}

.nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: #000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-text {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    text-align: right;
    z-index: 2;
}

.hero-text h1 {
    font-size: 100px;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 0.9;
    font-family: 'climate crisis';
}

.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 50px;
    margin-bottom: 2rem;
    font-family: 'climate crisis';
    letter-spacing: 3px;
}

.section-title1 {
    font-size: 90px;
    margin-bottom: 10px;
    font-family: 'climate crisis';
    letter-spacing: 3px;
}

.section-title-center {
    font-size: 50px;
    margin-bottom: 2rem;
    font-family: 'climate crisis';
    text-align: center;
    letter-spacing: 3px;
}

.atelier-image-container {
    width: 100%;
    height: 500px;
    margin: 2rem 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.atelier-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.atelier-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-member-container {
    text-align: center;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member-container:hover {
    transform: translateY(-5px);
}

.team-member {
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.member-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0 0.5rem;
    font-family: 'climate crisis';
    letter-spacing: 1px;
}

.member-title {
    font-size: 1rem;
    color: #666;
    font-family: Arial, sans-serif;
    margin-bottom: 0.5rem;
}

.member-description {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 20px;
    font-family: 'commissioner';
}

.black-line {
    width: 100%;
    height: 2px;
    background-color: black;
    margin: 20px 0;
}


@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-text {
        bottom: 2rem;
        right: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
