/* Overall page background */
body {
    position: relative;
    margin: 0;
    padding-bottom: 60px;
    font-family: 'Garet', Arial, sans-serif;
    background: linear-gradient(to right, #D6E4E5 35%, #EBF5F8 65%);
    height: 100vh;
}
html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Top black bar */
.top-bar {
    height: 30px;
    background-color: #3B3B3B;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}

/* Navbar styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(50px);
    position: fixed;
    top: 30px;
    width: 100%;
    z-index: 10;
}

/* Logo styles */
.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Navigation buttons */
.nav-buttons {
    display: flex;
    gap: 80px;
    background: rgba(255, 255, 255, 0.8); /* Background with some transparency */
    padding: 10px 20px;
    border-radius: 10px;
}

.nav-buttons a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 300;
    padding: 5px 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-buttons a:hover {
    background-color: #D6E4E5;
    color: white;
    border-radius: 5px;
}

/* Book Appointment button */
.book-appointment {
    margin-right: 30px;
}

.book-appointment a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #EBF5F8;
    font-weight: lighter;
    padding: 5px 10px;
    background-color: #344E41;
    border-radius: 30px;
    width: 180px;
    text-align: center;
    font-size: 10px;
    font-family: 'Raleway', sans-serif;
}

.book-appointment img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.book-appointment a:hover {
    background-color: #adb7b7;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
    margin-right: 30px;
}

.hamburger-menu span {
    background-color: black;
    height: 3px;
    width: 25px;
    border-radius: 5px;
}
/* Offcanvas Menu (hidden by default) */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Hidden off-screen */
    width: 250px;
    height: 100vh;
    background-color: #f9f9f9;
    box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 100;
    padding: 20px 15px;
    font-family: 'Raleway', sans-serif;
    display: none; /* Hide initially */
}

/* Show the offcanvas menu */
.offcanvas-menu.active {
    right: 0; /* Slide in */
    display: block; /* Make visible when active */
}

/* Close Button */
.offcanvas-menu .close-btn {
    position: absolute;
    top: 7px;
    left: 10px;
    font-size: 40px; /* Larger size for better visibility */
    color: #333;
    cursor: pointer;
}

/* Logo in offcanvas menu */
.offcanvas-menu .menu-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
}

/* Menu links */
.offcanvas-menu a {
    display: block;
    padding: 10px 0;
    margin-top: 10px;
    color: #444;
    text-decoration: none;
    font-size: 14px; /* Smaller font size */
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect for menu links */
.offcanvas-menu a:hover {
    background-color: #D6E4E5;
    color: #fff;
    border-radius: 5px;
}

/* Submenu styling for treatments */
.offcanvas-menu .submenu {
    margin-left: 15px;
    font-size: 12px; /* Even smaller font for sub-items */
    color: #666;
    font-weight: 400;
}

.offcanvas-menu .submenu a {
    display: block;
    padding: 5px 0;
    border: none; /* Remove borders for sub-items */
}

.offcanvas-menu .submenu a:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Make offcanvas menu invisible on larger screens */
@media (min-width: 1024px) { /* Adjust breakpoint as needed */
    .offcanvas-menu {
        display: none !important; /* Ensure it's hidden */
    }
}





/* Hide nav-buttons and show hamburger on mobile */
@media (max-width: 768px) {
    .nav-buttons {
        display: none; /* Hide on mobile */
    }

    .hamburger-menu {
        display: flex; /* Show on mobile */
    }
    .navbar {
    background:#fff;
    backdrop-filter: blur(50px);
    }
}

@media (max-width: 480px) {
    .book-appointment {
        display: none;  /* Hide the entire section on mobile */
    }
}


/* Main Content Adjustment */
body {
    padding-top: 105px; /* Ensure space for both top-bar (30px) + navbar (40px) */
}

/* Footer Base */
.footer {
    background-color: rgba(30, 72, 84, 0.9); /* Optional: Make footer more visible */
    color: white;
    z-index: 10;
    margin-top: auto; /* Push footer to the bottom */
}

.footer-overlay {
    background-color: rgba(30, 72, 84, 0.7); /* 70% transparency over #1E4854 */
    padding: 15px 0;
}

/* Apply Garet font family to footer text */
.footer-content {
    font-family: 'Garet', sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 15px;
}

.footer-section {
    width: 100%;
    padding: 10px;
    background-color: #1E4854;
    max-width: 21%; /* Sets a max-width for each section */
    margin-bottom: 20px; /* Adds space between sections */
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 300; /* Font weight set to 300 */
    text-transform: uppercase; /* Capitalize headings */
}

.footer-section ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 12px;
    font-weight: 150;
}

.footer-section ul li {
    margin: 30px 0;
    text-transform: uppercase; /* Capitalize list items */
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ddd;
}

.footer-logo {
    max-width: 100px;
}

.about-group {
    display: flex;
    align-items: start;
}

.footer-logo {
    padding: 10px 0px;
    max-width: 50px;
    margin-right: 15px; /* Space between logo and text */
}

/* Apply Tan Mon Cheri font to Burraq Herbals heading */
.about-text h3 {
    font-family: 'Tan Mon Cheri', sans-serif;
    font-weight: 300; /* Optional: Apply font weight 300 */
    text-transform: uppercase; /* Optional: Capitalize the text */
}

.about-description {
    font-size: 12px;
    line-height: 1.6;
    font-weight: 300; /* Font weight set to 300 */
    text-transform: uppercase; /* Capitalize the description */
}

.center {
    text-align: center;
}

/* Apply Tan Mon Cheri font only to the "Burraq Herbals" text */
@font-face {
    font-family: 'Tan Mon Cheri';
    src: url('/static/fonts/tan-mon-cheri.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply Tan Mon Cheri font to Burraq Herbals heading */
.about-text h3 {
    font-family: 'Tan Mon Cheri', sans-serif;
    font-weight: 300; /* Font weight set to 300 */
    text-transform: uppercase; /* Capitalize the text */
}

.about-text p {
    font-size: 12px;
}

/* Social Icons (Follow Us) */
.social-icons {
    margin-top: 40px;
}

.social-icons p {
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 10px;
}

.icons-container {
    display: flex;
    gap: 15px; /* Space between icons */
    margin-top: 0px;
}

.social-icon {
    width: 20px; /* Size of the icon */
    height: 20px;
    object-fit: contain;
    cursor: pointer;
}

.social-icon:hover {
    opacity: 0.7;
}

/* Contact Icons */
.contact-icon {
    width: 20px; /* Size of the icon */
    height: 20px;
    object-fit: contain;
    margin-right: 10px; /* Space between icon and text */
    vertical-align: middle;
}

.footer-section ul li {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.footer-section a {
    display: flex;
    align-items: center;
}

/* Bottom Bar Styling */
.bottom-bar {
    background-color: #141414; /* Black background */
    color: white;
    height: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.marquee-text {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Media Queries */
@media (max-width: 1024px) { /* For laptops and tablets */
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px; /* Adds space between sections */
    }

    .footer-section {
        width: 48%; /* For larger screens, sections can be in 2 columns */
        max-width: 48%;
    }
}

@media (max-width: 768px) { /* For medium screens (tablets) */
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-section {
        width: 90%; /* Stacks the sections */
        max-width: 100%;
        text-align: center;
        margin-bottom: 0px;
    }

    .footer-logo {
        max-width: 50px;
    }
}

@media (max-width: 480px) { /* For phones */
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-section {
        width: 90%; /* Stacks sections vertically */
        max-width: 100%;
        text-align: center;
        margin-bottom: 0px;
    }

    .footer-logo {
        max-width: 50px;
    }
}
@font-face {
    font-family: 'Tan Mon Cheri';
    src: url('../fonts/tan-mon-cheri.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

