/* orange color: #FF6F59; */
/* Green color : #008080 */
/* skin color : #FBF7F4 */

@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');


/* DEFAULT VALUES */
body{
    background-color: #f5f5f5;
}
*{
    margin: 0;
    padding: 0;
    color: #000000;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
}


/* ========== BUTTON SECTION - START ========== */
/* Classes - BUTTONS FIXED TO EXAMPLE SIZE */
.btn-container {
    margin: 5rem 2rem !important;
    display: flex !important;
    justify-content: space-around !important;
    width: 70% !important;
}

.primary-btn {
    text-decoration: none;
    font-size: 18px !important;
    background-color: #C5A028 !important;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    font-family: 'Maven Pro', sans-serif !important;
    color: #000000 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7) !important;
    font-weight: bold !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-block !important;
}

.primary-btn-extra-padding {
    padding: 14px 30px !important;
}
/* ========== BUTTON SECTION - END ========== */

.highlighted-text{
    font-size: 1.5rem;
    font-family: 'Dosis', sans-serif;
    color: #000000;
    text-transform:uppercase ;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    font-weight: bold;
}
.heading-text{
    font-size: 5rem;
    font-family: 'Roboto', sans-serif;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    font-weight: bold;
}
.big-text{
    font-size: 3rem;
    font-family: 'Roboto', sans-serif;
    color: #000000;
    text-transform:uppercase ;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
    font-weight: bold;
}
.small-text{
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #000000;
    width: 90%;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.4);
}
.list-square{
    list-style: square;
}
.list-circle{
    list-style: circle;

}
/* NAVIGATION BAR */
#navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    font-family: 'Montserrat', sans-serif;
    background-color: #2d3748;
}

#logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
#logo img {
    width: 100px;
}
.logo span,#logo span{
    font-size: 40px;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.nav-ul a{
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    padding: 10px;
    transition: 0.5s ease-in-out;
    color: #ffffff;
}
.nav-btn{
    font-size: 22px;
    font-weight: 700;
    background-color: #C5A028;
    border-radius: 15px;
    padding: 1rem !important;
    color: #000000;
    border: none;
    margin: 0 0.5rem;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    font-weight: bold;
}
#navbar>div{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.nav-ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
}
#three-lines {
    display: none; 
    font-size: 45px; 
    color: #ffffff;
}

/* SIDE NAV BAR */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    background-color: #2d3748;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 50px;
}

.sidenav ul {
    display: flex;
    flex-direction: column;
    height: 350px;
    text-align: center;
    justify-content: space-between;
}

.sidenav a {
    text-decoration: none;
    font-size: 45px;
    color: #ffffff;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #C5A028;
}

.sidenav .closebtn {
    position: absolute;
    top: 5px;
    left: 25px;
    font-size: 55px;
    margin-right: 15px;
}


/* DROPDOWN CONTAINER*/

.dropdown {
    float: left;
    overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
    font-size: 22px;
    font-weight: 700;
    border: none;
    outline: none;
    color: #ffffff;
    padding: 14px 16px;
    background-color: #2d3748;
    font-family: inherit;
    display: flex;
    align-items: center;
    margin: 0;
}
.dropdown .dropbtn svg{
    fill: #ffffff;
    margin: 0 5px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2d3748;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 4;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #C5A028;
    color: #000000 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    transition: 0.5s ease-in-out;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* FOOTER  */
#footer{
    background-color: #2d3748;
    padding: 3rem 0;
}
.footer-container{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 90%;
    margin: auto;
}
.footer-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-logo-section{
    width: 30%;
}
.footer-section img{
    width: 250px;
}
.logo-text{
    font-size: 2.6rem !important;
    color: #ffffff !important;
}
.footer-big-text{
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    color: #C5A028;
    text-transform: uppercase;
    margin: 1rem 0;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

/* FOOTER BUTTONS - UPDATED */
.footer-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.footer-contact-buttons .primary-btn {
    padding: 10px 14px !important;
    font-size: 14px !important;
    flex: 1;
    min-width: 80px;
    max-width: 100px;
    text-align: center;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    background-color: #C5A028 !important; /* CRITICAL FIX - ADDED BACK */
    color: #000000 !important; /* CRITICAL FIX - ADDED BACK */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7) !important; /* CRITICAL FIX - ADDED BACK */
    font-family: 'Maven Pro', sans-serif !important; /* CRITICAL FIX - ADDED BACK */
    font-weight: bold !important; /* CRITICAL FIX - ADDED BACK */
}

/* Social media container removed - replaced with buttons */
.social-media-container {
    display: none;
}
.social-media-container a{
    margin: 0.5rem;
    padding: 0.5rem;
}
.social-media-container svg{
    width: 40px;
    height: 80px;
    fill: #ffffff;
}
.footer-btn{
    width: 30%;
    text-align: center;
    text-decoration: none;
    background-color: #C5A028;
    color: #000000 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    font-weight: bold;
    padding: 12px 20px !important;
    border-radius: 10px;
    font-size: 16px !important;
    margin-top: 15px !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.footer-section-small-img{
    width: 100px !important;
    border-radius: 10px;
}
.footer-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-text-section a {
    margin: 0 0.5rem;
    color: #ffffff;
}
hr{
    margin: 2rem 0;
    background-color: #4a5568;
    border: none;
    height: 1px;
}

/* Fix typewriter text color - EXTRA SHINY */
#intro-animated-text {
    color: #000000 !important;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

@media(max-width:700px){
    #navbar {
        padding: 0px 5px
    }
    .nav-ul li{
        display: none;
    }
    .sidenav ul{
        align-items: center;
        list-style: none;
    
    }
    .sidenav a {
        font-size: 28px;
        color: #ffffff;
    }    
    .dropdown .dropbtn{
        background-color: #2d3748;
        font-size: 22px;
        padding: 0px;
        color: #ffffff;
    }
    .dropdown-content{
        background-color: #2d3748;
    }
    #three-lines{
        display:block;
    }
    #footer{
        padding: 1rem 0;
    }
    .footer-container {
        flex-direction: column;
    }  
    .footer-section {
        margin: 2rem 0.5rem;
    }
    .footer-logo-section {
        width: 100%;
    }
    /* Mobile footer buttons - FIXED */
    .footer-contact-buttons {
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }
    .footer-contact-buttons .primary-btn {
        width: auto;
        max-width: 85px;
        margin: 0;
        padding: 8px 10px !important;
        font-size: 13px !important;
        min-width: 70px;
        border-radius: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        background-color: #C5A028 !important; /* CRITICAL FIX - ADDED BACK */
        color: #000000 !important; /* CRITICAL FIX - ADDED BACK */
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.7) !important; /* CRITICAL FIX - ADDED BACK */
        font-family: 'Maven Pro', sans-serif !important; /* CRITICAL FIX - ADDED BACK */
        font-weight: bold !important; /* CRITICAL FIX - ADDED BACK */
    }
    .footer-btn {
        width: 50%;
        max-width: 200px;
        margin-top: 12px !important;
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
    .footer-text-section p{
        font-size: 10px;
    }   
    hr {
        margin: 1rem 0;
    }   
}