﻿

@media (min-width: 1800px) {
    .container {
        max-width: 1600px;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body {
    font-family: 'Inter Tight', sans-serif;
    line-height: 1.6;
    color: #333;
    /*background: #f9fafb;*/
}



.icon{
    font-size: 1.5em !important;
    padding: 20px;
}


.title {
    font-size: 3rem;
    font-weight: 800;
}


/* White to Gold Gradient */
.white-to-gold-gradient {
    background: linear-gradient(to right, #FFFFFF, #FFD700); /* White to Standard Gold */
    background: -moz-linear-gradient(to right, #FFFFFF, #FFD700);
    background: -webkit-linear-gradient(360deg, #FFFFFF, #FFD700); /* Safari, old WebKit */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.white-to-gold-gradient-center {
    background: linear-gradient(to right, #FFFFFF, #FFD700);
    background: -moz-linear-gradient(to right, #FFFFFF, #FFD700);
    background: -webkit-linear-gradient(360deg, #FFFFFF, #FFD700); /* Safari, old WebKit */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200%; /* Stretch gradient */
    background-position: center; /* Center the gradient over the text */
    background-repeat: no-repeat;
}

    /* Optional hover */
a.white-to-gold-gradient-center:hover {
    background: linear-gradient(to right, #FDD017 0%, /* Paler Gold */
    #FFD700 25%, /* Standard Gold */
    #DAA520 50%, /* Rich Gold */
    #B8860B 75%, /* Darker Gold */
    #FFD700 100% /* Standard Gold */
    );
    background: -moz-linear-gradient(to right, #FDD017 0%, #FFD700 25%, #DAA520 50% #B8860B 75%, #FFD700 100%);
    background: -webkit-linear-gradient(360deg, #FDD017 0%, #FFD700 25%, #DAA520 50% #B8860B 75%, #FFD700 100%); /* Safari, old WebKit */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* Gold to White Gradient */
.gold-to-white-gradient {
    background: linear-gradient(to right, #DAA520, #FFFFFF); /* Rich Gold to White */
    background: -moz-linear-gradient(to right, #DAA520, #FFFFFF);
    background: -webkit-linear-gradient(360deg, #DAA520, #FFFFFF); /* Safari, old WebKit */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Subtle Gold Gradient (e.g., from a light gold to a slightly darker gold) */
.subtle-gold-gradient {
    background: linear-gradient(to right, #FDD017, #DAA520); /* Paler Gold to Rich Gold */
    background: -moz-linear-gradient(to right, #FDD017, #DAA520);
    background: -webkit-linear-gradient(360deg, #FDD017, #DAA520); /* Safari, old WebKit */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Multi-stop Gold Gradient (more metallic look) */
.multi-gold-gradient {
    background: linear-gradient(to right, #FDD017 0%, /* Paler Gold */
    #FFD700 25%, /* Standard Gold */
    #DAA520 50%, /* Rich Gold */
    #B8860B 75%, /* Darker Gold */
    #FFD700 100% /* Standard Gold */
    );
    background: -moz-linear-gradient(to right, #FDD017 0%, #FFD700 25%, #DAA520 50%, #B8860B 75%, #FFD700 100%);
    background: -webkit-linear-gradient(360deg, #FDD017 0%, #FFD700 25%, #DAA520 50%, #B8860B 75%, #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Optional: Add a text shadow for more depth, especially with gradients */
.gradient-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

.header-section {
    display: flex;
    height: 100px;
    padding: 0.5rem 1em;
    flex-wrap: nowrap;
    background-color: #264735; /* fallback solid color */ 
    background: -webkit-linear-gradient(90deg, #264735, #208054); /* Safari, old WebKit */
    background: linear-gradient(90deg, #264735, #208054); /* Standard */
    /*background: linear-gradient(90deg,rgba(28, 56, 42, 0.93) 0%, rgba(32, 128, 84, 0.9) 80%);*/
    left: 0;
    right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100vw;
    box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}

.header-footer {
    background-color: #0b3e27;
    background: -moz-linear-gradient(to right, #0b3e27, #197149);
    background: -webkit-linear-gradient(360deg, #0b3e27, #197149);
    background: linear-gradient(to right, #0b3e27, #197149); 
}

#myFooter {
    padding: 15px 20px 0px 20px;
    justify-content: space-between;
    align-items: center;
}

.footerlink {
    padding-left: 5em !important; 
}


.custom-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 28px;
    transition: all 0.3s ease-in-out;
}

    .custom-hamburger span {
        height: 3px;
        width: 100%;
        border-radius: 2px;
        background: linear-gradient(to right, #fff, #FFD700);
        background: -moz-linear-gradient(to right, #fff, #FFD700);
        background: -webkit-linear-gradient(360deg, #fff, #FFD700);
        transition: all 0.3s ease-in-out;
        transform-origin: center;
    }

/* Animate to X */
.menu-open .custom-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.menu-open .custom-hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-open .custom-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
} 


    .custom-hamburger:hover span {
        opacity: 0.9;
        transform: scaleX(1.05);
        transition: all 0.2s ease;
    }


.mt-body{
    margin-top:6em;
}

#navbarSupportedContent a {
    font-size: larger;
}

/* Mobile nav dropdown */
.custom-mobile-menu {
    background: linear-gradient(90deg,rgba(28, 56, 42, 0.93) 0%, rgba(32, 128, 84, 0.9) 80%);
    background: -moz-linear-gradient(90deg,rgba(28, 56, 42, 0.93) 0%, rgba(32, 128, 84, 0.9) 80%);
    background: -webkit-linear-gradient(360deg,rgba(28, 56, 42, 0.93) 0%, rgba(32, 128, 84, 0.9) 80%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    position: absolute;
    top: 7rem;
    left: 1rem;
    right: 1rem;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Only apply the style for small screens */
@media (min-width: 992px) { 

    .custom-mobile-menu {
        background: none !important;
        backdrop-filter: none !important;
        position: static;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }

    .footerlink {
        padding-left: 5em !important;
    }
     
}


@media (max-width: 991px) {

    .header-section {
        height: 80px;
        padding: 0.2rem 1em;
    }

    .navbar-toggler {
        padding: 1em !important;
        align-self: center !important;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .pgaBth {
        width: 100% !important; 
    }

    .footerlink {
        padding-left: revert-layer !important;
    }
}


.pgaBth {
    width: 100px;
    height: 40px;
    color: #fff;
    border: solid 1px transparent;
    border-radius: 0.8em;
    /*background-image: linear-gradient(#E0AF4C, #E0AF4C), linear-gradient(0deg, rgba(173, 119, 44, 1) 0%, rgba(245, 160, 60, 1) 20.85%, rgba(249, 193, 75, 1) 32.96%, rgba(244, 234, 184, 1) 45.23%, rgba(245, 160, 60, 1) 67.78%, rgba(173, 119, 44, 1) 84.88%, rgba(250, 195, 90, 1) 99.63%);*/
    background-color: #E0AF4C;
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 1px;
    font-size: large !important;
}

    .pgaBth:hover {
        background-color: #c9983f; /* darker gold */
        transition: background-color 0.3s ease;
    }

#myFooter a {
    font-size: larger;
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 15px;
    text-align: center;
    display: none;
    z-index: 1000;
}

    .cookie-consent button {
        background: #3498db;
        color: white;
        border: none;
        padding: 8px 15px;
        margin-left: 10px;
        border-radius: 3px;
        cursor: pointer;
    }



@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
 

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }

.whatsapp-icon {
    width: 40px;
    height: 40px;
}


 


@media (max-width: 575.98px) {

    #myFooter a {
        font-size: medium;
    }
}

/* Tablets (iPad portrait) */
@media (min-width: 576px) and (max-width: 767.98px) {
    #myFooter a {
        font-size: medium;
    }
 
}

/* iPad Landscape & Small Laptops */
@media (min-width: 768px) and (max-width: 991.98px) {

    #myFooter a {
        font-size: large;
    }

}