* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

button {
    cursor: pointer;
}

.navbar {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #f4c27d;
    /* flex-wrap: wrap; */
}

.logo {
    display: flex;
    align-items: center;
    /* width: 100%; */
    cursor: pointer;
}

.logo img {
    width: 100%;
    max-width: 325px;
}

.logo-text h1 {
    font-size: 18px;
    margin-bottom: 2px;
}

.logo-text span {
    font-size: 10px;
    color: #ccc;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ececec;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
}

.nav-links a:hover {
    color: #faf089;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.mobile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.mobile-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    text-align: center;
}

.modal-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
}

.modal-nav-links a:hover {
    color: #f4c27d;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 0.5rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 1rem auto;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    height: 3rem;
}

.footer-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #faf089;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 12px;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #000;
        margin-top: 10px;
    }

    .nav-links a {
        padding: 10px 20px;
        border-top: 1px solid #333;
    }

    .hamburger {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar {
        justify-content: space-between;
        padding: 1.25rem 1rem;
    }
}