
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    overflow-x: hidden;
}

.hero {
    background: url('background.jpg') no-repeat center center/cover;
    height: 100vh;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    background: url('logo.png') no-repeat center center/contain;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto;
}

.slogan {
    font-size: 1.5em;
    font-weight: 300;
    margin-top: 20px;
}

button#exploreBtn {
    background-color: #C39B5F;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 auto;
    transition: background 0.3s ease;
}

button#exploreBtn:hover {
    background-color: #a88147;
}

.sidebar {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    width: 250px;
    height: 100%;
    position: fixed;
    right: -250px;
    top: 0;
    transition: right 0.4s ease-in-out;
    padding: 40px 20px;
}

.sidebar.open {
    right: 0;
}

.sidebar-logo {
    background: url('logo.png') no-repeat center center/contain;
    height: 100px;
    margin-bottom: 30px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 15px 0;
    font-size: 1.1em;
    cursor: pointer;
}

.sidebar li.active {
    font-weight: bold;
    color: #C39B5F;
}
