/* ========== Base Styles ========== */
/* theme.css */

.show {
    display: block !important;
}

.color-khaki {
    color: #c5a86b!important;
}

.bg-khaki {
    background-color: #c5a86b!important;
}

.color-white {
    color: #fff !important;
}

.color-golden-yellow {
    color: #f7b733 !important;
}

.bg-golden-yellow {
    background-color: #f7b733 !important;
}

.color-rich-black {
    color: #241c17 !important;
}

.bg-rich-black {
    background-color: #241c17 !important;
}

.bg-jet-black {
    background-color: #17110E !important;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #ffd700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dc-header {
    border-radius: 1rem !important;
}

.navbar {
    background-color: #000;
    padding: 10px 20px;
    border-bottom: 1px solid #ffd700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

.navbar-toggler {
    border: none;
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.navbar-collapse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 0 30px;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.nav-links a:hover {
    color: #fff;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.auth-buttons a,
.auth-buttons button {
    background-color: transparent;
    color: #ffffff !important;
    border: 1px solid #ffd700;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
    font-size: 0.9rem;
}

.auth-buttons a:hover,
.auth-buttons button:hover {
    background-color: #ffd700;
    color: #000 !important;
}

@media (max-width: 768px) {
    .navbar-collapse {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        position: absolute;
        top: 100%;
        background-color: #fff;
        z-index: 999;
        padding: 15px 0;
        display: none;
    }

    .navbar-toggler {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-links a,
    .auth-buttons a{
        color: #18120f !important;
    }

    .auth-buttons {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
    }
}


/* ========== Hero Section ========== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url('../images/background.png') no-repeat center center/cover;
    z-index: 1;
    padding-left: 52px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
    }
}

.hero h1 {
    color: gold;
    font-size: 64px;
}

.hero h2 {
    font-size: 52px;
}

.hero p {
    color: #ddd;
    font-size: 20px;
}

.hero a {
    display: inline-flex;
    justify-content: center;
    align-items:  center;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #f7b733;
    color: #000 !important;
    border-radius: 8px;
    transition: .3s;
}

.hero a:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #f7b733;
}

/* ========== Contact Section ========== */

.home-form input[type='text'],
.home-form input[type='email'],
.home-form textarea{
    width: 100%;
}

.home-form input:focus,
.home-form textarea:focus{
    box-shadow: none;
    border: 1px solid #f7b733;
}

/* ========== Sections ========== */
.section {
    padding: 80px 20px;
}

@media (max-width: 768px) {
    .section {
        padding: 50px 20px;
    }
}
.section-title {
    color: gold;
    font-size: 36px;
    margin-bottom: 30px;
    /*text-align: center;*/
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }
}

.section p {
    color: #ccc;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    /*text-align: center;*/
}

/* ========== Footer ========== */
footer {
    background-color: #111;
    padding: 20px;
    text-align: center;
    color: #aaa;
    border-top: 1px solid gold;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .hero h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
}

/* ========== Video BG ========== */
.video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    z-index: 1;
}

.py-3 {
    color: white;
}

.py-6 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.bg-white.p-6.rounded.shadow {
    margin: 20px;
}

/* ========== User Dashboard ========== */

/*Dashboard Header Section*/
.user-header {
    border-radius: 1rem !important;
}