body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo .dot {
    color: #1dbf73;
}

.nav-links a, .nav-links button {
    margin-left: 16px;
    text-decoration: none;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.nav-links .join-btn {
    border: 1px solid #000;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero {
    position: relative;
    background: url('/images/hero-background.jpg') no-repeat center center/cover;
    height: 80vh;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding-top: 100px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.search-box {
    display: inline-flex;
    background: white;
    border-radius: 5px;
    overflow: hidden;
}

.search-box input {
    border: none;
    padding: 12px;
    font-size: 16px;
    outline: none;
    width: 300px;
    color: #333;
}

.search-box button {
    padding: 0 20px;
    background: #1dbf73;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.tags {
    margin-top: 20px;
}

.tags span {
    display: inline-block;
    background: white;
    color: #333;
    border-radius: 16px;
    padding: 6px 12px;
    font-size: 13px;
    margin: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.tags span:hover {
    background: #1dbf73;
    color: white;
}
