@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins/Poppins-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

body {
    margin: 0;
    padding: 0;
    background-color: white; /* fallback */
    color: black;
    /* min-height: 200vh; just to make scrolling testable */
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
}

.navbar-custom {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 30px;
    /* padding: 10px 20px; */
    width: 90%;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #FFCEE0;
}

.dropdown-item.active, .dropdown-item:focus {
    background-color: #FFCEE0;
}

.dropdown-item.hover, .dropdown-item:hover {
    background-color: #F77601;
    color: var(--bs-dropdown-link-hover-bg);
}

.dropdown-item {
    white-space: normal !important;
    word-break: break-word; /* Optional: breaks long words */
}


.pink-gradient-text {
    /* background: linear-gradient(76.35deg, #EC578E 8.55%, #DD7098 28.19%, #FFCEE0 51.18%); */
    background: black;
    color: #EC578E;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer .pink-gradient-text{
    background: black;
    color: #EC578E;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-custom .nav-link {
    color: black !important;
    font-weight: 600;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Optional: Prevent dropdown from closing when hovering over it */
.navbar .dropdown-menu {
    display: none;
    top: 100%;
    left: -100%;
    border-radius: 0;
    margin-top: 0.3rem;
}

/* Optional: Remove delay when hovering out */
.navbar .dropdown:hover>.dropdown-menu {
    display: block;
}

/* Style the 2-column dropdown */
.dropdown-menu-columns {
    min-width: 280px;
    padding: 0;
}
.dropdown-menu-columns .row {
    margin: 0;
}
.dropdown-menu-columns .col-6 {
    padding: 5px;
}

.btn-contact {
    background-color: #ff4fad;
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: bold;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* allow clicks to pass through */
    background: transparent;
    z-index: -1;
}

footer {
    background: linear-gradient(180deg, #FFFFFF 0%, #DBDBDB 100%);
    color: #222;
    padding: 40px 0;
}

.footer-btn {
    background-color: #F77601;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: bold;
    margin-right: 10px;
}
.custom-btn {
    border-radius: 100px;
    background-color: #F77601;
    border: none;
    color: white; /* or any text color you prefer */
}


.footer-btn,
.custom-btn {
    transition: background-color 0.3s ease;
}

.footer-btn:hover,
.custom-btn:hover {
    background-color: #c42e17; /* light pink */
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff4fad;
}

footer a {
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    margin: 5% 0;
}

footer li{
    margin: 5% 0;
}

footer h4{
    width: 75%;
    font-size: 3rem;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .dropdown-menu-columns {
        min-width: 100%; /* Make it full width on small screens */
    }
    .dropdown-menu-columns .row {
        flex-direction: column;
    }

    .dropdown-menu-columns .col-6 {
        width: 100%;
    }

    
    .dropdown-item {
        display: block;
        width: 100%;
        padding: 2% 0;
        clear: both;
        font-weight: 400;
        color: var(--bs-dropdown-link-color);
        text-align: inherit;
        text-decoration: none;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
        border-radius: var(--bs-dropdown-item-border-radius, 0);
    }
}

@media screen and (min-width: 1600px) {
    .navbar-custom {
        width: 69%;
    }
}