:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --tertiary-dark: #2a2a2a;
    --accent-gold: #d4af37;
    --light-text: #ffffff;
    --medium-text: #e0e0e0;
    --muted-text: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-dark);
    color: var(--light-text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 100px;
}

.header {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-container {
    text-align: left;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #d4af37;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 0.25rem;
}

.menu-container {
    position: relative;
}

.menu-button {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    .menu-button:hover {
        background: #d4af37;
        color: #000;
    }

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .menu-icon span {
        width: 20px;
        height: 2px;
        background: #d4af37;
        transition: all 0.3s ease;
    }

.menu-button:hover .menu-icon span {
    background: #000;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    min-width: 300px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
}

.card {
    background-color: var(--secondary-dark);  
    border: 1px solid rgba(212, 175, 55, 0.3); 
    color: var(--medium-text); 
}

.card-title {
    color: var(--warning); 
    font-weight: bold;
    margin-bottom: 1rem;
}

.card-body ul {
    list-style-type: none; 
    padding: 0;
}

    .card-body ul li {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
    }

        .card-body ul li .bi-check2-circle {
            color: var(--warning); 
            margin-right: 0.5rem;
        }

.card-body .d-flex strong {
    color: var(--light-text); 
}

.card-body .d-flex span {
    color: var(--warning); 
    font-weight: bold;
}

.text-warning {
    color: #d4af37 !important; 
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    margin-bottom: 8px;
}

    .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .dropdown-item:hover {
        background: rgba(212, 175, 55, 0.2);
        color: #d4af37;
        padding-left: 30px;
        transform: translateX(5px);
    }

    .dropdown-item.active {
        background: rgba(212, 175, 55, 0.3);
        color: #d4af37;
    }

    .dropdown-item i {
        font-size: 1.3rem;
        margin-right: 15px;
        width: 25px;
        text-align: center;
    }

.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #c9a030);
    z-index: 1001;
    transition: width 0.3s ease;
}

.btn-gold {
    background: linear-gradient(45deg, #d4af37, #c9a030);
    border: none;
    color: #000 !important;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

    .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        color: #000 !important;
    }

.btn-outline-gold {
    border: 3px solid var(--accent-gold);
    color: var(--accent-gold) !important;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    background: transparent;
}

    .btn-outline-gold:hover {
        background: var(--accent-gold);
        color: #000 !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(26, 26, 26, 0.9)), url('/images/hero.jpg') center/cover no-repeat;
}

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }

        .hero h1 span {
            color: var(--accent-gold);
        }

    .hero p {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        color: var(--medium-text);
    }

.section-dark {
    background: var(--secondary-dark);
    padding: 5rem 0;
}

.section-light {
    background: var(--primary-dark);
    padding: 5rem 0;
}

.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 3rem;
    text-align: center;
}

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--light-text);
    }

        .section-title h2 span {
            color: var(--accent-gold);
        }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--accent-gold);
        border-radius: 2px;
    }

.card {
    background: var(--tertiary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        border-color: rgba(212, 175, 55, 0.3);
    }

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-title {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.5rem;
}

.card-text {
    color: var(--medium-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.footer {
    background: var(--secondary-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 0;
    color: var(--muted-text);
}

    .footer a {
        color: var(--medium-text);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: var(--accent-gold);
        }

h1, h2, h3, h4, h5, h6 {
    color: var(--light-text);
}

p {
    color: var(--medium-text);
}

.text-muted {
    color: var(--muted-text) !important;
}

.lead {
    color: var(--medium-text);
    font-size: 1.25rem;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .dropdown-menu {
        min-width: 200px;
        right: -30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.8rem;
    }

    body {
        padding-top: 120px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .dropdown-menu {
        right: 0;
        left: 0;
        margin: 0 1rem;
    }
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}