/* SaveHosting.net - Corporate Design System */
:root {
    --primary-blue: #003366;
    --secondary-blue: #001f3f;
    --accent-blue: #007bff;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-color: #333333;
    --transition: all 0.3s ease;
}

body {
    background-color: #0b0f19;
    color: #e5e7eb;
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background: #111827;
}

.card {
    background: #1f2937;
    border: none;
    border-radius: 12px;
}

.btn-primary {
    background: #2563eb;
    border: none;
}

.btn-primary:hover {
    background: #1d4ed8;
}

/* Navbar */
.navbar {
    background-color: var(--secondary-blue);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--white) !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--white) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-blue);
}

/* Portfolio Cards */
.portfolio-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-card img {
    height: 250px;
    object-fit: cover;
}

.portfolio-card .card-body {
    padding: 1.5rem;
}

.portfolio-card .price {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-blue);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-outline-primary {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline-primary:hover {
    background-color: var(--accent-blue);
    color: var(--white);
}

/* Footer */
footer {
    background-color: #111;
    color: #999;
    padding: 4rem 0 2rem;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

footer a {
    color: #999;
    text-decoration: none;
}

footer a:hover {
    color: var(--white);
}

/* Admin Dashboard */
.admin-sidebar {
    min-height: 100vh;
    background-color: var(--secondary-blue);
    color: var(--white);
}

.admin-sidebar .nav-link {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-sidebar .nav-link.active {
    background-color: var(--accent-blue);
}

/* Multi-language Tabs */
.nav-tabs .nav-link {
    color: var(--dark-gray);
}

.nav-tabs .nav-link.active {
    font-weight: 700;
    color: var(--primary-blue);
}

/* SweetAlert customization */
.swal2-popup {
    border-radius: 15px !important;
}