body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

header {
    background: #000;
    color: #c6a75e;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: #c6a75e;
}

.admin-btn {
    background: #c6a75e;
    padding: 5px 10px;
    border-radius: 4px;
    color: black;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 42px;
}

button {
    padding: 10px 20px;
    background: #c6a75e;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.section {
    padding: 80px 20px;
    text-align: center;
}

.dark {
    background: #111;
    color: white;
}

.offer-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.offer-card {
    background: #fff;
    padding: 20px;
    margin: 15px;
    width: 250px;
    border-radius: 8px;
    transition: 0.3s;
}

.offer-card:hover {
    transform: scale(1.05);
}

form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin: 10px 0;
    padding: 10px;
}

.admin-panel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.admin-card {
    background: #222;
    padding: 20px;
    margin: 15px;
    width: 200px;
    border-radius: 8px;
}