
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
}

/* ГОРНО МЕНЮ */
.top-menu {
    display: flex;
    justify-content: flex-start;  
    align-items: center;
    background: #111;
    color: white;
    padding: 12px 20px;
    gap: 20px; 
}

/* 3D лого */
.logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffff22;
    text-decoration: none;
    text-shadow:
        1px 1px 0 #aaa,
        2px 2px 0 #888,
        3px 3px 0 #666,
        4px 4px 8px rgba(0,0,0,0.6);
    transition: transform 0.6s ease, text-shadow 0.6s ease;
}

.logo:hover {
    transform: translateY(-10px);
    text-shadow:
        1px 1px 0 #ccc,
        2px 2px 0 #aaa,
        3px 3px 0 #888,
        6px 6px 12px rgba(0,0,0,0.8);
}

.menu-links a {
    color: white;
    text-decoration: none;
    margin-left: 0;
    margin-right: 15px; 
}
.menu-links a:hover {
    color: #f5c542;
}

/* СЕКЦИЯ */
.container {
    max-width: 800px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* РЕВЮ КАРТИ */
.review {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: relative;
    cursor: default;
}

.review:last-child {
    border-bottom: none;
}

.review strong {
    color: #111;
}

.stars {
    color: #f5c542;
    margin: 5px 0;
}

/* Добавям бутон за изтриване */
.review button.delete-btn {
    position: absolute;
    right: 0;
    top: 15px;
    background: transparent;
    border: none;
    color: #cc0000;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.review button.delete-btn:hover {
    color: #ff4444;
}

/* ФОРМА */
form {
    margin-top: 30px;
    margin-bottom: 30px;
}

input, textarea, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button[type="submit"] {
    background: #111;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background: #f5c542;
    color: #111;
}

footer {
    text-align: center;
    margin: 40px 0;
}
		
.footer {
    background: #111;
    color: white;
    padding: 40px 0 0 0;
    margin-top: 50px;
}

.footer-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    width: 30%;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #f1f1f1;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #000;
    margin-top: 20px;
    font-size: 13px;
}

