/* GLOBAL THEME */
body {
    background-color: #0a0a0a;
    color: #f2f2f2;
    font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}
a { text-decoration: none; }

/* NAVBAR */
.malmek-nav {
    background-color: #0a0a0a !important;
    border-bottom: 2px solid #b30000;
}
.malmek-nav .navbar-brand {
    color: #ff1a1a !important;
    font-weight: 700;
}
.malmek-nav .nav-link {
    color: #e6e6e6 !important;
    transition: 0.3s ease;
}
.malmek-nav .nav-link:hover,
.malmek-nav .nav-link.active {
    color: #ff3333 !important;
}

/* HERO */
.hero {
    padding: 6rem 1rem;
    text-align: center;
    color: #fff;
    border-bottom: 2px solid #b30000;
    background-size: cover;
    background-position: center;
}

/* BOXES */
.dark-box,
.service-card,
.contact-box,
.about-box,
.booking-box {
    background: #151515;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 1.5rem;
    transition: 0.3s ease;
}
.service-card:hover,
.gallery-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* FORMS */
.form-control,
.form-select,
textarea {
    background-color: #0f0f0f;
    border: 1px solid #444;
    color: #fff;
}
.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: #b30000;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.4);
}

/* BUTTONS */
.btn-danger {
    background-color: #b30000;
    border-color: #b30000;
}
.btn-danger:hover {
    background-color: #ff1a1a;
    border-color: #ff1a1a;
}

/* FOOTER */
footer {
    background: #000;
    color: #ccc;
    padding: 1rem;
    border-top: 2px solid #b30000;
}
footer a {
    color: #ff3333;
    transition: 0.3s ease;
}
footer a:hover {
    color: #ff6666;
}

/* GALLERY */
.gallery-img {
    border-radius: 8px;
    transition: 0.3s ease;
    cursor: pointer;
}

.brand-logo {
    max-height: 80px;
    object-fit: contain;
    opacity: 0.9;
    transition: 0.3s ease;
}
.brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}
.about-box p,
.about-box ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e6e6e6;
}

.about-box ul {
    padding-left: 1.2rem;
}

.about-box ul li {
    margin-bottom: 0.5rem;
}
body {
    background: #0d0d0d;
    color: #e6e6e6;
    font-family: 'Segoe UI', sans-serif;
}

.admin-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.nav-tabs .nav-link {
    background: #1a1a1a;
    color: #ccc;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    background: #b30000;
    color: #fff;
    border-radius: 8px;
}

.form-control, .form-select {
    background: #111;
    border: 1px solid #333;
    color: #eee;
}

.form-control:focus, .form-select:focus {
    border-color: #b30000;
    box-shadow: 0 0 0 0.2rem rgba(179, 0, 0, 0.25);
}

.btn-danger {
    background: #b30000;
    border: none;
    font-weight: 600;
}

.btn-danger:hover {
    background: #cc0000;
}

#pbSuccess {
    border-left: 4px solid #28a745;
}
#loadingOverlay {
    transition: opacity 0.3s ease;
    opacity: 0;
}

#loadingOverlay.show {
    opacity: 1;
}

