/* Gold color: #D4AF37 */
/* Black color: #000000 */
/* Blue footer: #001f3f */

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,300&display=swap');

:root{
    --heading-color: #D4AF37;
    --text-color: #D4AF37;
    --nav-bg-color: #000000;
    --btn-bg-color: #D4AF37;
    --footer-bg-color: #001f3f;
    --footer-head-color: #FFFFFF;
    --footer-text-color: #FFFFFF;
}

/* DEFAULT VALUES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #000000 !important;
    color: #D4AF37 !important;
    font-family: 'Roboto', sans-serif;
}

/* Classes */
.btn-container {
    margin: 5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    gap: 2rem;
}

.primary-btn {
    text-decoration: none;
    font-size: 25px;
    background-color: #D4AF37;
    color: #000000 !important;
    border-radius: 10px;
    padding: 1.5rem;
    font-family: 'Maven Pro', sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn:hover {
    background-color: #E6C158;
    transform: translateY(-2px);
}

.highlighted-text {
    font-size: 1.5rem;
    font-family: 'Dosis', sans-serif;
    color: var(--heading-color) !important;
    text-transform: uppercase;
}

.heading-text {
    font-size: 5rem;
    font-family: 'Roboto', sans-serif;
    color: var(--heading-color) !important;
    text-transform: uppercase;
    text-align: center;
}

.big-text {
    font-size: 3rem;
    font-family: 'Roboto', sans-serif;
    color: var(--heading-color) !important;
    text-transform: uppercase;
}

.small-text {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: var(--text-color) !important;
}

/* NAVIGATION BAR - section 1 */
#nav-logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    padding: 2rem 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
}

#logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#logo img {
    width: 100px;
}

#logo span {
    font-size: 40px;
    color: var(--heading-color) !important;
}

.nav-btn {
    font-size: 22px;
    font-weight: 700;
    background-color: var(--btn-bg-color);
    border-radius: 5px;
    padding: 1rem !important;
    color: #000000 !important;
    border: none;
    margin: 0 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-btn:hover {
    background-color: #E6C158;
}

/* NAVBAR SECTION 2 */
#nav-items-section {
    background-color: var(--nav-bg-color);
    font-family: 'Montserrat', sans-serif;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.nav-ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    width: 60%;
    margin: auto;
}

#nav-items-section a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    color: #D4AF37 !important;
}

#nav-items-section li {
    padding: 1rem;
    transition: all 0.3s ease;
}

#nav-items-section li:hover a {
    color: #000000 !important;
}

#nav-items-section li:hover {
    background-color: #D4AF37;
}

/* SIDE NAV bar */
#nav-items-section-mobile{
    display: none;
    margin: auto;
    background-color: var(--nav-bg-color);
    color: #D4AF37;
    border-radius: 10px;
}

.topnav {
    overflow: hidden;
    background-color: #000000;
    position: relative;
    border: 1px solid #D4AF37;
}

.topnav #myLinks {
    display: none;
}

.topnav a {
    color: #D4AF37 !important;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.topnav a.icon {
    background: #000000;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    border-left: 1px solid #D4AF37;
}

.topnav a:hover {
    background-color: #D4AF37;
    color: #000000 !important;
}

/* FOOTER */
#footer {
    background-color: var(--footer-bg-color) !important;
    padding: 3rem 0;
    color: var(--footer-text-color) !important;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-size: 2.6rem !important;
    color: #FFFFFF !important;
}

.footer-big-text {
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    color: var(--footer-head-color) !important;
    text-transform: uppercase;
    margin: 1rem 0;
}

.footer-btn {
    width: 25%;
    margin: 1rem 0;
    text-align: center;
    text-decoration: none;
    background-color: #D4AF37;
    color: #000000 !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
}

.footer-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-text-section a {
    margin: 0 0.5rem;
    color: #FFFFFF !important;
    text-decoration: none;
}

.footer-small-text{
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF !important;
}

hr {
    margin: 2rem 0;
    background-color: #D4AF37;
    border: none;
    height: 1px;
}

/* Center the existing three buttons */
.btn-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    margin: 2rem auto !important;
    width: 100% !important;
    padding: 0 1rem;
}

/* Force colors for all text elements */
h1, h2, h3, h4, h5, h6, p, span, div, a, li {
    color: #D4AF37 !important;
}

/* Specific force for footer */
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6, 
#footer p, #footer span, #footer div, #footer a, #footer li {
    color: #FFFFFF !important;
}

/* Ensure background colors are applied */
body, header, nav, section, div {
    background-color: #000000 !important;
}

@media (max-width: 600px) {
    /* FIX BODY PADDING FOR MOBILE NAVBAR - INCREASED */
    body {
        padding-top: 120px !important;
    }
    
    .heading-text {
        font-size: 3rem;
    }
    
    /* Remove phone number from mobile footer */
    .footer-section .footer-big-text:last-child,
    .footer-section a[href^="tel:"] {
        display: none !important;
    }
    
    #footer{
        padding: 1rem 0;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-section {
        margin: 2rem 0.5rem;
    }
    
    .footer-text-section p{
        font-size: 6px;
    }
    
    hr {
        margin: 1rem 0;
    }
    
    .btn-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .primary-btn {
        width: 200px;
        text-align: center;
    }
    
    /* Push content down to avoid navbar overlap - INCREASED */
    #privacy-heading-section,
    #about-heading-section,
    .heading-section {
        margin-top: 40px !important;
        padding-top: 20px !important;
    }
    
    /* ADD EXTRA SPACING FOR SPECIFIC PAGES */
    .privacy-content,
    .about-content,
    .text-section-container {
        margin-top: 30px !important;
    }
    
    /* ADD SPACING FOR ALL MAIN CONTENT */
    .main-content,
    .content-section,
    .container {
        margin-top: 30px !important;
    }
}