/* Nevigation Bar  */
html,
body {
    overflow-x: hidden;
    /* stop horizontal scrolling */
    max-width: 100%;
    font-family: Ysabeau, sans-serif !important;
}

body {
    padding-top: 75px;
    /* Adjust based on navbar height */
}

/* Full screen overlay */
.navbar-custom {
    background: #fff;
    font-family: Ysabeau, sans-serif !important;
    /* White background */
    padding: 5px 15px;
    box-shadow: 0 4px 10px rgba(214, 51, 132, 0.6), 0 0 10px rgba(255, 192, 203, 0.4);
}

.navbar-nav .nav-link {
    color: #880E4F;
    /* Dark pink color */
    font-weight: 600;
    font-family: Ysabeau, sans-serif !important;
    font-size: 22px;
    /* text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); */
    padding-left: 20px !important;
    transition: color 0.3s ease-in-out;
    /* Smooth hover transition */
}

.navbar-nav .nav-link:hover {
    color: goldenrod;
    /* Darker pink on hover */

}

/* Custom pink navbar toggler */
.navbar-toggler {
    border-color: #880E4F;
    background-color: #fff;
    /* pink background */
    padding: 2vh 1vh;
    border-radius: 4px;

}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    /* remove default icon */
    width: 22px;
    height: 2px;
    background-color: #880E4F;
    /* lines color */
    position: relative;
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 22px;
    height: 2px;
    background-color: #880E4F;
    position: absolute;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    top: 6px;
}

.navbar-toggler-icon:focus,
.navbar-toggler-icon:active {
    outline: 2px solid #880E4F;
    border-radius: 4px;
    /* Optional, for smoother corners */
    outline-offset: 2px;
    /* Optional, for better spacing */
}

/* End Css of Nevigation Bar */

/* footer css */
.footer {
    background: #A72155;
    color: #F5F1EA;
    padding: 50px 20px;
    width: 100%;
}

.footer h5 {
    font-family: 'Ysabeau', sans-serif;
    font-weight: 700;
    font-size: 24px;
    /* margin-bottom: 20px; */
    /* padding-bottom: 10px; */
    display: inline-block;
}

.footer p,
.footer a {
    font-family: 'Ysabeau', sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* line-height: 1.5; */
    color: #F5F1EA;
    text-decoration: none;
}

.footer a {
    margin-bottom: -10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.footer .fab {
    color: #F5F1EA;
    font-size: 20px;
    transition: 0.3s;
}

.footer .fab:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Aligning content */
.quick-links,
.social-links {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    text-align: left !important;
    gap: 10px;
}

.quick-links a,
.social-links a {
    color: #F5F1EA;
    font-family:  'Ysabeau', sans-serif;
    font-size: 16px;
    text-decoration: none;
    text-align: left;
    padding: 5px 0;
}

.quick-links a:hover,
.social-links a:hover {
    text-decoration: underline;
}

/* End Of Footer css */