/* =======================================================
   === GLOBAL & LAYOUT STYLES (Terms specific) ===
   ======================================================= */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --- NAVBAR STYLES --- */
.navbar-brand img {
    height: 40px;
}

.bg-footer-color {
    background-color: #212121 !important; 
}

/* Nav Links (Gold) */
.nav-link-custom-color {
    color: #9E8A2F !important; 
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent; 
    border-radius: 0 !important;          
    transition: border-color 0.2s ease;   
}

.nav-link-custom-color:hover,
.nav-link-custom-color:focus,
.nav-link-custom-color.active {
    border-bottom-color: #9E8A2F; 
}

.dropdown-toggle::after {
    color: #9E8A2F;
    vertical-align: middle;
}

/* Dropdown */
.dropdown-menu {
    background-color: #9E8A2F !important;
    border-radius: 0 !important; 
    margin-top: 0; 
}

.dropdown-item-custom-color {
    color: #ffffff !important; 
}

.dropdown-item-custom-color:hover {
    background-color: #7a6b24 !important; 
    color: #ffffff !important; 
}

/* Log-in Button */
.btn-custom {
    background-color: #9E8A2F !important; 
    color: #ffffff !important;            
    border: none;
    padding: 0.45rem 1rem;
    font-weight: bold;
    border-radius: 3px;
    display: inline-flex;       
    align-items: center;        
    justify-content: center;    
    gap: 0.5rem;                
}

.btn-custom:hover {
    background-color: #7a6b24 !important; 
    color: #ffffff !important;
}

/* --- HEADER BANNER (Updated to Full Screen) --- */
.header-banner {
    height: 100vh !important; /* Changed from 50vh to 100vh */
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; 
}

.header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1; 
}

.header-banner .container {
    position: relative; 
    z-index: 2; 
}

.header-title {
    font-size: 5rem !important; 
    font-weight: 700;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
}

.header-subtitle {
    font-size: 1.5rem !important; 
    color: #dcdcdc;    
    margin-top: 0.5rem;
}

/* --- FOOTER STYLES --- */
.footer {
    color: #f8f9fa;
    background-color: #212121;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover, 
.footer a.text-white-50:hover {
    color: #ffffff !important; 
}

/* Footer Social Icons */
.social-icon-btn {
    width: 50px; 
    height: 50px;
    background-color: #9E8A2F; 
    color: #ffffff;            
    font-size: 1.5rem; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease; 
    border: none;              
}

.social-icon-btn:hover {
    background-color: #7a6b24; 
    color: #ffffff;            
}

/* =========================================
   === TERMS PAGE SPECIFIC CONTENT ===
   ========================================= */

.terms-content {
    line-height: 1.8;
    color: #444;
    font-size: 1rem;
    text-align: justify;
    background-color: #fff;
}

.terms-heading {
    color: #9E8A2F; /* Uniform Gold */
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.terms-list {
    padding-left: 2rem; 
}

.terms-list li {
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-title { font-size: 3rem !important; }
    .header-title-terms { font-size: 3rem !important; }
    .footer .text-center { text-align: left !important; }
    .footer .d-flex.justify-content-center { justify-content: flex-start !important; }
}