body{
    font-family: "Candara", serif;
}

.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #050b15;
    padding: 10px 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.topnav a {
    color: #ffffb4;
    text-align: center;
    padding: 0px 20px;
    text-decoration: none;
    font-size: 50px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.searchbar {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-top: 20px;
    margin-right: 5%;
    margin-left: 5%;
}

.searchbar i {
    margin-left: 20px;
    color: #ffffb4;
    font-size: 30px;
}

.searchbar input[type="text"] {
    flex: 1;
    background-color: #f2f2f2;
    height: 25px;
    padding: 5px;
    font-size: 18px;
    border-radius: 5px;
}

.left,
.right {
    display: flex;
    align-items: center;
}

/* gif container */
.gif-container {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
    z-index: -1;
}

.fullscreen-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Scroll container */
.scroll-container {
    margin-top: 5px;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    background-color: #f2f2f2;
    padding: 10px 0;
}

.scroll-images img {
    display: inline-block;
    width: 200px;
    height: auto;
    margin: 0 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    transition: transform 0.3s ease;
}


/*Gym container*/
.gym-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background-color: #f2f2f2;
}

.gym-container p {
    flex: 1;
    font-size: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    padding: 20px;
    background-color: #ffffb4;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.gym-container img {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Wellness Container */
.wellness-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    flex-direction: row-reverse;
    background-color: #f2f2f2;
}

.wellness-container img {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.wellness-container p {
    flex: 1;
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffb4;
    border-radius: 20px;
}
/* Contact text */
.contact-us{
    text-align: center;
}
.contact-us h1{
    font-size: 3rem;
}
.scroll-images img:hover {
    transform: scale(1.1);
}




/* Footer Styling */
.footer {
    background-color: #f2f2f2;
    color: #333;
    padding: 20px 0;
    text-align: left;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    gap: 20px;
}

/* Footer Contact Section */
.footer-contact, .footer-info {
    flex: 1;
}

.footer-contact h3, .footer-info h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Footer Links */
.footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info ul li {
    margin: 5px 0;
}

.footer-info ul li a {
    color: #333;
    text-decoration: none;
}

.footer-info ul li a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
}

/* Contact Us Button */
.footer-contact-button {
    text-align: center;
    margin-top: 20px;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffb4;
    color: #111d35;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-button:hover {
    background-color: #ddd;
    transform: scale(1.05);
}