@import url('https://use.typekit.net/zyj8onu.css');

h1, h2, h3, h5, h6 {
	font-family: "montserrat", sans-serif;
    margin: 0;
    padding: 0;
}
h4 {
    font-family: "montserrat", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14pt;
}
.paraStyle {
    font-family: "montserrat", sans-serif;
    font-size: 11pt;
}
.background-layer {
    position: fixed;
    width: 100%;
    height: 215px; /* Adjust the height as needed */
    background-color: black;
    z-index: 500; /* Lower than the header z-index */
    top: 0;
    left: 0;
}


body {
    margin: 0;
    padding: 0;
    background-color: #e767a8; /* Main content pink background */
}
.menu-header {
    background-color: transparent; /* No specific background color */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 750; /* Keeps header content on top */
    display: flex;
    padding: 10px 20px;
}

.logo-container img {
    height: auto;
    width: 287px;
}

.header-content {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: center;
    align-items: center; /* Center-align the items horizontally */
    width: 100%;
}

.qualify-appointment-container {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 40px); /* Adjusting width considering the padding */
    padding: 0 20px; /* Padding on both sides */
}

.qualify-link {
    font-family: "ice-cream-standard", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #e767a8;
    white-space: nowrap;
    overflow: visible; /* Let it take the necessary space */
    text-overflow: clip; /* Default clipping */
    flex-grow: 1; /* Allow it to fill the available space */
    text-decoration: none;
    text-align: center;
}
.spwidget-button-wrapper {
    margin-right: 10px; /* 20px off from the right edge */
	margin-left: 20px; /* 20px off from the left edge */
    text-align: right; /* Aligns the content to the right */
    flex-grow: 0; /* Prevent it from growing and taking unnecessary space */
    white-space: nowrap; /* Prevent wrapping */
}
.spwidget-button {
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    background: #de6a26;
    border: 0;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.menu-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.menu-nav .menu-link, .menu-nav .dropdown > a {
    font-family: "ice-cream-standard", sans-serif;
    font-size: 18px;
    color: #e767a8;
    text-decoration: none;
    padding: 10px;
    display: grid;
	align-items: center;
	text-align: center;
    line-height: 1.2em;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    min-width: 160px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    font-family: "montserrat", sans-serif;
    font-size: 14px;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Hover and active states */
.dropdown-content a:hover,
.dropdown-content a:active {
    background-color: #e767a8;
    color: white;
}
.pinkBlock {
    background-color: #e767a8;
    min-height: 32px;
}
.clearBlock {
    min-height: 32px;
}
.page-footer {
    background-color: black; /* Or any color you prefer */
    color: #e767a8;
    padding: 20px;
    display: flex;
    flex-direction: row; /* Align children in a row */
    justify-content: space-around; /* Evenly space the direct children */
    align-items: center; /* Vertically center the items */
    flex-wrap: wrap; /* Allows items to wrap into the next line on small screens */
    font-family: "montserrat", sans-serif;
    font-size: 16px;
    font-weight: bold;
}
.social-media-icons {
    position: fixed;
    top: 20px;  /* Adjust based on desired distance from top */
    right: 20px; /* Adjust based on desired distance from right */
    font-size: 24px; /* Size of the icons */
    z-index: 1500; /* High enough to be on top of everything else */
}

.social-media-icons a {
    margin-left: 10px; /* Space between icons */
	transition: opacity 0.3s ease; /* Smooth transition for hover effect */
}

.social-media-icons a:hover {
    opacity: 0.8; /* Slight opacity change on hover for visual feedback */
}

.social-media-icons .fa-facebook-f {
    color: #1877f2; /* Facebook's brand color */
}

.social-media-icons .fa-twitter {
    color: #1da1f2; /* Twitter's brand color */
}

.social-media-icons .fa-instagram {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), 
                radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), 
                radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), 
                radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), 
                radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), 
                radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), 
                radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), 
                radial-gradient(ellipse farthest-corner at 60% 100%, #d9317a, transparent);
    color: transparent; /* Makes the FontAwesome icon take the background color */
    -webkit-background-clip: text;
    background-clip: text;
}
.footerContent, .social-media-footer {
    flex: 1; /* Each child will take equal width */
    text-align: center; /* Center the text/content */
    display: flex;
    justify-content: center; /* Center the content for each block */
    align-items: center; /* Align the items vertically */
}
.social-media-footer {
    font-size: 26px; /* Size of the icons */
}

.social-media-footer a {
    margin: 0 10px; /* Margin between social icons */
}


.social-media-footer a {
    margin: 0 10px; /* Spacing between icons */
}
.social-media-footer .fa-facebook-f {
    color: #1877f2; /* Facebook's brand color */
}

.social-media-footer .fa-twitter {
    color: #1da1f2; /* Twitter's brand color */
}

.social-media-footer .fa-instagram {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), 
                radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), 
                radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), 
                radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), 
                radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), 
                radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), 
                radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), 
                radial-gradient(ellipse farthest-corner at 60% 100%, #d9317a, transparent);
    color: transparent; /* Makes the FontAwesome icon take the background color */
    -webkit-background-clip: text;
    background-clip: text;
}
.social-media-footer a:hover {
    opacity: 0.8; /* Slight opacity change on hover */
}
@keyframes blinker {
    50% {
        color: #e767a8; /* Your commonly used pink color */
    }
}

.start-weight-loss-link {
    color: white; /* Initial color */
    text-decoration: none; /* Removes underline from the link */
    animation: blinker 1s linear infinite; /* Apply the blinking animation */
    padding: 12px 24px; /* Padding to make it look like a button */
    border-radius: 4px; /* Optional: to give it rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.start-weight-loss-link:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Slight background on hover for better UI */
}