/* Custom Styles */

:root {
    --bs-primary: #D4AF37;
    --bs-primary-rgb: 212, 175, 55;
    --bs-link-color: #D4AF37;
    --bs-link-hover-color: #AA8C2C;
    --bs-btn-primary-bg: #D4AF37;
    --bs-btn-primary-border-color: #D4AF37;
    --bs-btn-primary-hover-bg: #AA8C2C;
    --bs-btn-primary-hover-border-color: #AA8C2C;

    /* Secondary Dark Color */
    --bs-secondary-blue: #1C1C1C;
    --bs-secondary-blue-rgb: 28, 28, 28;
    --bs-secondary-blue-hover: #000000;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: var(--bs-btn-primary-hover-bg);
    border-color: var(--bs-btn-primary-hover-border-color);
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

/* Secondary Blue Color Classes */
.text-secondary-blue {
    color: var(--bs-secondary-blue) !important;
}

.bg-secondary-blue {
    background-color: var(--bs-secondary-blue) !important;
}

.btn-secondary-blue {
    background-color: var(--bs-secondary-blue);
    border-color: var(--bs-secondary-blue);
    color: #fff;
}

.btn-secondary-blue:hover {
    background-color: var(--bs-secondary-blue-hover);
    border-color: var(--bs-secondary-blue-hover);
    color: #fff;
}

html,
body {
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* Navbar */
.navbar-brand img {
    object-fit: contain;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(28, 28, 28, 0.9), rgba(212, 175, 55, 0.75));
}

/* Animations */
.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-100 {
    animation-delay: 0.2s;
}

.delay-200 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.text-success .icon-wrapper {
    background-color: rgba(25, 135, 84, 0.1);
}

.text-warning .icon-wrapper {
    background-color: rgba(255, 193, 7, 0.1);
}

.text-info .icon-wrapper {
    background-color: rgba(13, 202, 240, 0.1);
}

.text-danger .icon-wrapper {
    background-color: rgba(220, 53, 69, 0.1);
}

/* Footer */
.filter-white {
    filter: brightness(0) invert(1);
}

.hover-white:hover {
    color: #fff !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .btn-lg {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        width: 100%;
    }
}