body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #061f3c;
    color: white;
}

.index-nav {
    background: rgb(5, 32, 61,);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 20px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.15);
}

.hero {
    height: calc(100vh - 70px);
    width: 100%;
    position: relative;
    background: url('uploads/homepage.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.btn-order {
    padding: 14px 34px;
    background: #ffd166;
    color: #1e1e1e;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: 0.3s;
}

.btn-order:hover {
    background: #ffbf3f;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.4);
}
