@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
/* Arrow styling for collapse instruction */
/* Arrow styling for collapse instruction */
/* Arrow styling for collapse instruction */
/* Arrow styling for collapse instruction */

  .responsive-img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-width: 300px; /* Default for smaller screens */
  }

#carouselExample {
	
	height: 423px;
	background-position: 30px 0;
}

.FrameBitAPI {
	display: flex;
}


  @media (min-width: 768px) {
    .responsive-img {
      max-width: 450px; /* For larger screens (desktop) */
    }
  }
  
  .navbar-nav .nav-item .nav-link:hover {
    color: #ffffff !important; /* Change this to your desired color */
}

.mobile-paragraphs {
    display: none;
}

  .circleBox {
  	position: absolute; top: 50%; 
  	left: 50%; 
  	transform: translate(-50%, -50%); 
    color: black; 
    background: rgba(255, 255, 255, 0.8); 
    width: 600px; 
    height: 600px; 
    border-radius: 50%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    align-items: center; 
    text-align: center; 
    padding: 20px;
  	
  } 
  
  .circleHeadings {
  	
  	font-size: 2.8rem;
  	font-weight: bold;
  }
  
  .circleHeadings2 {
  	
  	font-size: 2rem;
  	font-weight: bold;
  }

.arrow-icon {
    position: absolute;
    top:10px; /* Adjust this value to place the arrow higher */
    left: 15%; /* Center it horizontally */
    transform: translateX(-50%); /* Center it horizontally */
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 15px solid black; /* Arrow color and size */
    z-index: 10; /* Ensure it's above other elements */
}

/* Horizontal line below the arrow */
.arrow-line {
    position: absolute;
    top: 5px; /* Adjust this value to control the line position */
    left: -20px; /* Ensure it starts from the left side of the arrow */
    width: 40px; /* Control the length of the line */
    height: 2px;
    background-color: black; /* Line color */
}

#localeSelect {
    background-color: transparent;
    border: 0px solid #ccc; /* Optional: Adjust border color */
    color: #333; /* Optional: Adjust text color */
}

/* Optional: Adjust the dropdown arrow color */
#localeSelect::-ms-expand {
    display: none;
}

#localeSelect option {
    background-color: #fff; /* Optional: Set background for option items */
}

/* Apply gap between navigation items on large screens only */


/* Ensure parent container aligns items at the top */
.parent-container {
    display: block !important; /* Force block layout */
    text-align: left; /* Align items to the top-left */
    margin: 0 auto;
}

@media (max-width: 768px) {
      .custom-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100%;
        overflow-y: auto;
        background-color: #fff;
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .mobile-paragraphs {
    display: block;
}

#navbarNav {
	background: rgba(255, 255, 255, 1);
	z-index: 1050;
	margin-top: 350px;
}

#carouselExample {
	
	max-height: 200px;
	background-position: -170px 0;
}

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;   
    }

    .navbar-nav .nav-item {
        text-align: center;
        width: 100%;
        color: white;
               
    }

    .navbar-nav .nav-item.dropdown {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw; /* Makes the item take full screen width */

    }

    .navbar-nav .nav-item.dropdown a {
        display: flex;
        align-items: center;
         
        
    }

    .navbar-nav .nav-item.dropdown .dropdown-toggle {
        margin-left: 5px; /* Small space between text and arrow */
     
    }
    
    .dropdown-menu {
        text-align: center;
        width: auto; /* Ensures dropdown is not too wide */
    }

    .dropdown-menu.show {
        display: block;
        position: absolute;
        top: 100%; /* Positions submenu directly below */
        left: 50%;
        transform: translateX(-50%);
    }

    /* Enforcing black color on nav-links */
    .navbar-nav .nav-item .nav-link,
    .navbar-nav .nav-item.dropdown .nav-link,
    .dropdown-menu .dropdown-item {
        color: #fff !important;
       
    }

    /* Ensuring active and hover states also have black text */
    .navbar-nav .nav-item .nav-link:focus,
    .navbar-nav .nav-item .nav-link:hover,
    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus {
        color: blue !important;
        background-color: transparent !important;
    }

    .navbar-nav .nav-item:hover,
    .navbar-nav .nav-item.dropdown:hover {
        background-color: #f8f9fa; /* Light gray background */
        border-radius: 5px; /* Optional: rounded corners for a better look */
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: #f8f9fa !important; /* Ensuring dropdown items also have the same effect */ 
    }

    .navbar-nav .nav-item form {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #localeSelect {
        text-align: center;
        width: auto; /* Prevents full-width stretching */
    }

    /* Ensure the parent container is positioned */
    .circleBox-parent {
        position: relative;
        width: 98vh;
        height: 98vh;
    }
    
     .circleHeadings {
  	
  	font-size: 1.2rem;
  	font-weight: bold;
  }
  
    .circleHeadings2 {
  	
  	font-size: 1rem;
  	font-weight: bold;
  }

    .circleBox {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: black;
        background: rgba(255, 255, 255, 0.8);
        width: min(98vw); /* Prevents excessive size */
        height: min(98vw);
        border-radius: 50%;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 10px;
        z-index: 1100;
        visibility: visible !important;
        opacity: 0.80 !important;
        border: 1px solid white; /* Debugging border, remove later */
    }
}		
			#menuArrowItem {
			        display: none;
			    }
            .navbar-collapse.show {
                transform: translateX(0);
            }

            .navbar-nav .nav-item {
                text-align: center;
                margin: 1rem 0;
                font-family: 'Rubik', sans-serif; /* Use your preferred font */
    			font-weight: 400; /* Medium weight for headings */
    			font-size: 1rem;
                
            }

            .navbar-toggler {
                border: none;
                outline: none;
                
            }
            
            /* Add this to your existing CSS file */
.navbar-nav .nav-item:hover {
    background-color: #46bd2e; /* Change this to your desired background color */
    transition: background-color 0.3s ease; /* Optional: Adds a smooth transition effect */
    color: #000000 !important;
    font-weight: bold;
}

.navbar-nav .nav-item {
    transition: background-color 0.3s ease; /* Optional: Adds a smooth transition effect */
}
            
            .navbar-nav .nav-link {
    			color: #ffffff !important;
    			font-weight: bold;
			}

            .navbar-toggler-icon {
                background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"%3E%3Cpath stroke="rgba(255, 255, 255, 0.7)" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
            }
        }
        
         /* Landscape Mode - Keeping navbar always expanded */
        @media (min-width: 769px) and (orientation: landscape) {
            .navbar-collapse {
                display: flex !important;
                justify-content: flex-end;
                height: auto !important;
                transform: none !important;
                transition: none !important;
            }

            .navbar-nav {
                flex-direction: row;
            }
            
      
            .navbar-toggler {
                display: none; /* Hide the toggle button in landscape */
            }
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1055;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            background-color: white;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
        }



.marcellus-regular {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

.rubik-normal {
  font-family: "Rubik", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.rubik-normal-italic {
    font-family: "Rubik", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
  }

.rubik-bold {
    font-family: "Rubik", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }
  
  .rubik-semibold {
    font-family: "Rubik", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif; /* Use your preferred font */
    font-weight: 400; /* Medium weight for headings */
    margin: 0 0 0.5em 0; /* Add spacing below each heading */
    line-height: 1.2; /* Adjust spacing between lines for readability */
    color: #333; /* Dark grey for text */
  }

  h1 {
    font-size: 2.5rem; /* Main title */
    font-weight: 700;  /* Bold */
  }
  
  h2 {
    font-size: 2rem; /* Section titles */
    font-weight: 600;
  }
  
  h3 {
    font-size: 1.75rem; /* Subsection titles */
    font-weight: 500;
  }
  
  h4 {
    font-size: 1.5rem; /* Smaller subsections */
    font-weight: 500;
  }
  
  h5 {
    font-size: 1.25rem; /* Minor headings */
    font-weight: 400;
  }
  
  h6 {
    font-size: 1rem; /* Smallest headings */
    font-weight: 400;
  }


.carousel-item {
    position: relative;
    z-index: 1; /* Default layer */
    opacity: 0;
    transform: translateX(100%); /* Initially, position off-screen to the right */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; /* Add transform for sliding */
}

.carousel-item.active {
    z-index: 10; /* Ensure the active item is on top */
    opacity: 1;  /* Visible */
    transform: translateX(0); /* Move the active item to the center */
}


.carousel-inner {
	z-index: 1;
    width: 100%;
    max-width: 550px;
    margin: 0 auto; /* Center align */
    overflow: hidden; /* Ensure no overflow */
    position: relative;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Vertically center the controls */
    z-index: 15; /* Ensure buttons are always on top */
    background: rgba(0, 0, 0, 0); /* Optional: for better visibility */
    border: none;
    padding: 10px;
    color: white;
}

.carousel-item .animated-content {
    opacity: 0;
    transform: scale(0.8); /* Start smaller */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.carousel-item.active .animated-content {
    opacity: 1;
    transform: scale(1); /* Grow to full size */
}

        .custom-header {

    display: flex;
    justify-content: space-between;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    height: 200px;            /* Adjust the height of your header as needed */
    position: relative;
    background: linear-gradient(302deg, rgba(0, 212, 255, 1) 0%, rgba(57, 255, 20, 1) 50%, rgba(0, 212, 255, 1) 100%);
    padding: 0 ;  /* Optional, adjust padding if needed */   
    }

        .custom-header img {
            padding: 00px;
            width: 300px;
        }

        #logo {
    max-width: 300px; /* You can adjust the logo size */
    height: auto;
}

        .custom-shadow {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%);
            pointer-events: none;
        }

        .custom-shadowWhite {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 75px;
            background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0) 70%);
            pointer-events: none;
            opacity: 0; /* Start hidden */
            display: none; /* Ensure it's not visible initially */
            transition: opacity 0.1s ease-in-out; /* Smooth fade-in */
        }



        #loginBtn .nav-link {
            background: #ff9e00;
            color: #1e2a47;
            font-weight: bold;
            border-radius: 5px;
            padding: 10px 20px;
            transition: background 0.3s, color 0.3s;
        }
        
        #loginBtn .nav-link:hover {
            background: #1e2a47;
            color: #ff9e00;
        }
        
       
        .custom-gradient {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 1) 70%);
            pointer-events: none;
        }

        .custom-card {
            display: flex;
            align-items: start;
            gap: 1rem;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0px 14px 34px 0px rgba(0, 0, 0, 0.08);
            background-color: white;
            transition: transform 0.3s ease-in-out;
        }

        .custom-card:hover {
            transform: scale(1.02);
        }

        .custom-card-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            background-color: rgba(255, 45, 32, 0.1);
            border-radius: 50%;
        }

        .custom-card-icon svg {
            width: 2rem;
            height: 2rem;
            fill: #FF2D20;
        }

        .bg-slate-900 {
            background-color: #ade9ff; /* TailwindCSS slate-900 color */
        }

        .bg-transp {
            background-color: transparent; /* TailwindCSS slate-900 color */
        }

        .custom-card h2 {
            font-size: 1.25rem;
            font-weight: bold;
        }

        .custom-card p {
            color: #6c757d;
        }

/* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1050; /* Ensure modal is above other content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
}

/* Modal Backdrop */
.modal-backdrop {
    z-index: 1040; /* Lower z-index for the backdrop */
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    margin: 10% auto; /* Center the modal */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Adjust width as needed */
    max-width: 500px; /* Max width */
    border-radius: 10px; /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative; /* Ensure the content can hold the close button */
}

/* Close Button */
.close {
    color: #aaa;
    position: absolute; /* Position the close button relative to the modal content */
    top: 10px; /* Adjust the top spacing */
    right: 20px; /* Adjust the right spacing */
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1060; /* Ensure it's above the modal content */
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


        /* Responsive Design */
        @media (max-width: 768px) {
            .left-sidebar {
                width: 200px; /* Adjust sidebar width for smaller screens */
            }

            .row .col-md-12 {
                margin-bottom: 1rem; /* Add desired spacing */
            }
            
            
        }
    
        @media (max-width: 576px) {
            .left-sidebar {
                width: 100%; /* Sidebar becomes full-width on very small screens */
            }
    
            .main-container {
                flex-direction: column; /* Stack the sidebar and main content vertically */
            }
    
            .main-content {
                margin-left: 0;
            }
      
        }

        .row {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        
        .column {
            flex: 1;
            
            border: 0px solid #ccc; /* Optional, to visually separate columns */
        }
        
  		.opening-hours {
            max-width: 300px;
            margin: 20px auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        .day {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }
        .today {
            font-weight: bold;
            color: #198754;
            background: #e9f7ef;
            border-radius: 5px;
        }
        
