body {
    background: #000;
    color: #fff;
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    align-items: center;
}
.logo { font-weight: 300; font-size: 28px; }
nav a { color: white; margin-left: 20px; text-decoration: none; font-weight: 300; }
.hero { text-align: center; padding: 60px 0; }
.hero h2 { font-weight: 300; font-size: 26px; }

.section-title {
    text-align: center;
    font-weight: 300;
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 26px;
    text-transform: lowercase;
}

.divider {
    width: 100%;
    border: none;
    border-top: 1px solid #333;
    margin: 30px 0;
}

.gallery {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 40px;
}

.item {
    flex: 0 0 auto;
    text-align: center;
    width: 300px;
}

.item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
}

.caption {
    font-size: 14px;
    margin-top: 8px;
    color: #fff;
}

.about-container { 
    max-width: 700px; 
    margin: 60px auto; 
    padding: 0 20px; 
    text-align: center;
}

.insta {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}
.insta a {
    color: #fff;
    text-decoration: none;
}
.insta a:hover {
    text-decoration: underline;
}
