@font-face {
    font-family: 'MainFont';
    src: url('../fonts/aAwalRamadhan.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'SecondFont';
    src: url('../fonts/hidayatullah.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* For Chrome, Edge, and Safari */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #130f24
}

::-webkit-scrollbar-thumb {
    background-color: #181a1e;
    background-image: -webkit-linear-gradient(25deg,#1D1E28 0,#f0ba48cc 100%);
    border-radius: 10px
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #f0ba48 transparent;
}

/* Optional: Customizing the scrollbar on hover */
::-webkit-scrollbar-thumb:hover {
    background-image: -webkit-linear-gradient(25deg,#1D1E28 0,#f0ba48cc 100%);
}

/* Reset some basic elements */
body, h1, h2, p, header, footer, main, section {
    margin: 0;
    padding: 0;
}

/* Apply some basic styling */
body {
    font-family: 'MainFont', Arial, sans-serif;
    line-height: 1.6;
    background-color: #0b0c0e;
    color: #333;
}

#bg {	
	position: fixed;
    background: linear-gradient(145deg, #181a1e 10%, #000000 115%);
    width: auto;
    height: auto;
	margin: 0;
    padding: 0;
    z-index: -2;
}

@media (max-width: 768px) {
    #bg {
        height: -webkit-fill-available;
    }
}

/* Header (Heading) styles */
.heading {
    width: 100%;
    height: 100vh; /* Full viewport height */
    background: rgba(24, 26, 30, 1); /* Fully opaque */
    animation: fadeBackground 2s ease-in-out forwards;
    /*background: #181a1e url('../img/test4.png') no-repeat center center/cover;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.heading-menu {
    width: 100%;
    background: rgba(24, 26, 30, 1); /* Fully opaque */
    animation: fadeBackground 2s ease-in-out forwards;
    /*background: #181a1e url('../img/test4.png') no-repeat center center/cover;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@keyframes fadeBackground {
    from {
        background: rgba(24, 26, 30, 1); /* Start with full opacity */
    }
    to {
        background: rgba(24, 26, 30, 0.7); /* End with lower opacity */
    }
}

@keyframes drop-down {
    from {
        transform: translateY(-100vh); /* Start above the viewport */
    }
    to {
        transform: translateY(0);      /* End at the original position */
    }
}

@keyframes up-down {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes up-down-100 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0);
    }
}

.lamp-1 {
    position: absolute;
    max-height: 600px;
    opacity: 0.9;
    z-index: 1;
    animation: drop-down 2.2s ease-out; /* Adjust the duration and easing as needed */
}

.lamp-2 {
    position: absolute;
    max-height: 400px;
    left: 300px;
    opacity: 0.1;
    z-index: 1;
    animation: drop-down 2s ease-out 1, up-down-100 6s ease-in-out infinite 2s; /* Adjust the duration and easing as needed */
}

.lamp-3 {
    position: absolute;
    max-height: 500px;
    top: -220px;
    left: 120px;
    opacity: 0.5;
    z-index: 1;
    animation: drop-down 3.5s ease-out 1, up-down 8.5s ease-in-out infinite 3.5s;
}

.lamp-4 {
    position: absolute;
    max-height: 350px;
    right: 450px;
    opacity: 0.3;
    z-index: 1;
    animation: drop-down 2.5s ease-out 1, up-down 10s ease-in-out infinite 2.5s; /* Adjust the duration and easing as needed */
}

.lamp-5 {
    position: absolute;
    max-height: 300px;
    right: 0px;
    opacity: 0.6;
    z-index: 1;
    animation: drop-down 2.5s ease-out 1, up-down-100 7.5s ease-in-out infinite 2.5s; /* Adjust the duration and easing as needed */
}

.lamp-6 {
    position: absolute;
    right: 0;
    max-height: 800px;
    opacity: 0.9;
    z-index: 1;
    animation: drop-down 3s ease-out; /* Adjust the duration and easing as needed */
}

@media (max-width: 1350px) {
    .lamp-1 {
        display: none;
    }
    .lamp-4 {
        display: none;
    }
    .lamp-6 {
        display: none;
    }
}

@media (max-width: 850px) {
    .lamp-1 {
        display: none;
    }
    .lamp-2 {
        max-height: 250px;
        left: 1px;
        opacity: 0.4;
        z-index: 0;
    }
    .lamp-3 {
        display: none;
    }
    .lamp-4 {
        display: none;
    }
    .lamp-5 {
        opacity: 0.2;
        z-index: 0;
    }
    .lamp-6 {
        display: none;
    }
}

.wave-divider {
    display: block;
    width: 100%;
}

/* Menubar styles */
.menubar {
    width: 100%;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    z-index: 2;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Top Menubar with Social Media Icons */
.menubar-top {
    background-color: transparent;
    padding-top: 10px;
    z-index: 2;
    position: relative;
}

.menu-phone {
    font-size: 20px;
}

.menu-email {
    font-size: 20px;
}

.social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.social-icons li {
    margin: 0 10px;
}

.social-icons a {
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 20px;
    color: #f0ba48;
    text-shadow: -3px 2px #4e0705;
}

.social-icons a:hover {
    color: #F09D27;
}

/* Bottom Menubar with Logo and Links */
.menubar-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .menubar-bottom {
        display: none;
    }
}

.left-links {
    justify-content: right;
}

.right-links {
    justify-content: left;
}

.left-links, .right-links {
    list-style: none;
    display: flex;
    flex: 1;
    font-size: xx-large;
    z-index: 2;
    padding-left: 40px;
    padding-right: 40px;
}

@media (min-width: 768px) and (max-width: 800px) {
    .left-links, .right-links {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 800px) and (max-width: 1050px) {
    .left-links, .right-links {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.left-links li, .right-links li {
    margin: 0 20px;
}

.left-links a, .right-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
    color: #f0ba48;
    text-shadow: -3px 2px #4e0705;
}

@media (min-width: 1050px) {
    .left-links a, .right-links a {
        font-size: 1.1em;
    }
}

@media (min-width: 1300px) {
    .left-links a, .right-links a {
        font-size: 1.2em;
    }
}

.left-links a:hover, .right-links a:hover {
    color: #F09D27;
}

.logo {
    display: flex;
    justify-content: center;
    flex: 0.5;
}

.logo a {
    z-index: 2;
}

.logo img {
    max-width: 220px;
}

@media (min-width: 768px) {
    .logo img {
        max-width: 200px;
    }
}

@media (min-width: 1050px) {
    .logo img {
        max-width: 260px;
    }
}

@media (min-width: 1300px) {
    .logo img {
        max-width: 300px;
    }
}

.main-logo {
    z-index: 2;
}

.mobile-menubar {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #fff;
}

.mobile-logo img {
    max-width: 250px;
}

@media (max-width: 600px) {
    .mobile-logo img {
        max-width: 200px;
    }
}

@media (max-width: 400px) {
    .mobile-logo img {
        max-width: 150px;
    }
}


.hamburger-menu {
    font-size: 2em;
    cursor: pointer;
    color: #f0ba48;
}

.mobile-menu-links {
    display: flex;
    list-style: none;
    margin: 10px;
    background: #181a1e;
    border-radius: 20px;
    border: 1px solid #f0ba48;
    box-shadow: 67.1px 62.5px 125px -25px rgb(9 9 14 / 86%), 16.2px 37.5px 75px -37.5px rgb(6 12 34 / 27%);
    font-size: x-large;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    height: 80px;
    z-index: 2;
    animation-duration: 1.5s; /* Set duration for both animations */
    animation-fill-mode: forwards; /* Keep the final state of animation */
    padding: 0; /* Remove default padding */
    visibility: hidden; /* Initially hidden */
}

.menu-visible {
    visibility: visible; /* Make the menu visible when active */
}

.slide-in {
    animation-name: slideInLeft; /* Slide in from the left */
}

.slide-out {
    animation-name: slideOutRight; /* Slide out to the right */
}

.mobile-menu-links li {
    padding: 10px 0;
    text-align: right;
    flex: 1; /* Make each li equal width */
    text-align: center; /* Center the content */
}

.mobile-menu-links a {
    color: #f0ba48;
    text-decoration: none;
    font-size: 0.8em;
    transition: color 0.3s;
    text-shadow: -3px 2px #4e0705;
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack icon and text */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    height: 100%; /* Full height of li */
}

.mobile-menu-links i {
    font-size: 1.2em; /* Increase icon size */
    margin-bottom: -5px; /* Space between icon and text */
    margin-left: 1px;
}

.mobile-menu-links a:hover {
    color: #F09D27;
}

@media (max-width: 768px) {
    .mobile-menubar {
        display: flex;
    }
    
    .background-smoke-mobile {
        position: absolute;
        left: 0;
        width: 100%;
        z-index: -1;
        overflow: hidden;
    }
}


.main_background {
    width: 70%;
    transform: translateX(-100%); /* Start off-screen to the left */
    opacity: 0; /* Start invisible */
    animation: slideInLeft 1.5s ease-out forwards; /* Apply animation */
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.left_border {
    height: 100%;
}

.right_border {
    height: 100%;
}

.background-smoke {
    position: absolute;
    width: 100%;
    z-index: 1;
    margin-top: 20px;
    scale: 2.5;
}

@media (min-width: 1050px) {
    .background-smoke {
        scale: 3;
    }
}

@media (min-width: 1300px) {
    .background-smoke {
        scale: 4;
    }
}

/* Main content in Heading styles */
.heading-content {
    padding: 20px;
    color: #fff;
    display: flex;
    flex: 1;
    justify-content: center;
}

.center-zone {
    max-width: 1200px;
    margin-top: 50px;
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .center-zone {
        margin-top: 0;
    }
}

.left-zone-border {
    display: flex;
    flex: 0.2;
    justify-content: left;
    height: 600px;
}

.right-zone-border {
    display: flex;
    flex: 0.2;
    justify-content: right;
    height: 600px;
}

.left-zone {
    flex: 1;
    text-align-last: right;
}

@media (max-width: 850px) {
    .left-zone {
        display: none;
    }
}

.right-zone {
    flex: 1;
    text-align-last: left;
    padding-bottom: 10px;
    overflow-x: hidden;
    overflow-y: hidden;
}

@media (max-width: 850px) {
    .right-zone {
        text-align-last: center;
    }
}

.right-zone h1 {
    font-size: 3em;
    margin-bottom: 20px;
    transform: translateX(100%); /* Start off-screen to the right */
    opacity: 0; /* Start invisible */
    animation: slideInRight 1s ease-out forwards; /* Apply animation */
    font-family: 'SecondFont', Arial, sans-serif;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .right-zone h1 {
        font-size: 2em;
    }
}


/* Keyframes for sliding in from the bottom */
@keyframes slideInBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.right-zone .btn-primary, .right-zone .btn-secondary {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    margin-left: 10px;
}

.right-zone .btn-primary {
    background-color: #F09D27;
    color: #fff;
}

.right-zone .btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

/* Main content styles */
main {
    margin: 20px 0;
}

/* Section styles */
section {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.confidentialitate-container {
    max-width: 1000px; /* Ajustează după cum este necesar */
    margin: 0 auto; /* Centrează containerul */
    padding: 20px;
    text-align: center;
    font-family: 'SecondFont', Arial, sans-serif;
}

.confidentialitate-container h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #f0ba48;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

.confidentialitate-container h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #f0ba48;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

.confidentialitate-container p, 
.confidentialitate-container ul {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 10px 0;
    text-align: left; /* Aliniază textul la stânga pentru o mai bună lizibilitate */
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

.actualizare {
    text-align: center !important; /* Centrează textul */
    font-size: 1em; /* Poți ajusta dimensiunea fontului după preferințe */
    margin: 20px 0; /* Margine sus și jos pentru a crea spațiu */
    color: #f0ba48 !important;
    padding-bottom: 40px;
}

.confidentialitate-container ul {
    list-style-type: disc; /* Puncte pentru lista */
    margin-left: 20px; /* Indentare pentru lista */
}


.flavours-container {
    max-width: 1600px; /* Adjust as needed */
    margin: 0 auto; /* Center the container */
    padding: 20px;
    text-align: center;
    font-family: 'SecondFont', Arial, sans-serif;
}

.flavours-container h2 {
    font-size: 4rem;
    margin-bottom: 5px;
    color: #f0ba48;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

.flavours-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

.flavours-container a {
    text-decoration: none
}

.flavours-container h4 {
    font-size: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

.flavours-content {
    display: flex;
    justify-content: space-between; /* Distribute space evenly between items */
    gap: 10px; /* Space between images */
}

.flavour-item {
    flex: 1; /* Each item takes equal width */
    text-align: center;
}

.flavour-item img {
    width: 100%; /* Image takes up the full width of its container */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.flavour-item img:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}

.flavour-70 {
    margin-top: 70px;
}

.flavour-35 {
    margin-top: 35px;
}

@media (max-width: 768px) {
    .flavours-content {
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .flavours-content .flavour-item {
      flex: 1 1 calc(33.33% - 10px);
      max-width: calc(33.33% - 10px);
    }

    .flavours-content .flavour-item:nth-child(4),
    .flavours-content .flavour-item:nth-child(5) {
        flex: 1 1 calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
    }
    .flavour-70 {
        margin-top: 0;
    }
    
    .flavour-35 {
        margin-top: 0;
    }
}

.menu-container {
    max-width: 1600px; /* Adjust as needed */
    margin: 0 auto; /* Center the container */
    padding: 20px;
    text-align: center;
    font-family: 'SecondFont', Arial, sans-serif;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

.menu-container.menu {
    max-width: 1200px; /* Override the max-width */
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}


.menu-container h2 {
    font-size: 4rem;
    margin-bottom: 5px;
    color: #f0ba48;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
    /*animation: slideInRight 2s ease-out forwards; Apply animation */
}

@media (max-width: 768px) {
    .menu-container h2 {
        font-size: 3rem;
    }
}

.menu-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

.menu-container a {
    text-decoration: none
}

.menu-container h4 {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

@media (max-width: 768px) {
    .menu-container h4 {
        font-size: 1.2rem;
    }
}

.menu-content {
    display: flex;
    justify-content: space-between; /* Distribute space evenly between items */
    gap: 10px; /* Space between images */
}

.menu-item {
    flex: 1; /* Each item takes equal width */
    text-align: center;
    /*opacity: 0;*/
    /*animation: slideInBottom 2s ease-out forwards;  Apply animation */
}

.menu-item img {
    width: 100%; /* Image takes up the full width of its container */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.menu-item img:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}

.menu-70 {
    margin-top: 70px;
}

.menu-35 {
    margin-top: 35px;
}

@media (max-width: 768px) {
    .menu-content {
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .menu-content .menu-item {
      flex: 1 1 calc(50% - 10px);
      max-width: calc(50% - 10px);
    }

    .menu-content .menu-item:nth-child(4),
    .menu-content .menu-item:nth-child(5) {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    .menu-70 {
        margin-top: 0;
    }
    
    .menu-35 {
        margin-top: 0;
    }
}

/*GALLERY styles*/
.gallery-photos {
    background: rgb(24, 26, 30, 0.7);
    text-align: center;
    font-family: 'SecondFont', Arial, sans-serif;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-photos h2 {
    font-size: 4rem;
    margin-bottom: 5px;
    color: #f0ba48;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

.gallery-photos h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center;
    height: 300px; /* Adjust as needed */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Default shadow */
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 1); /* Shadow on hover */
}

.preview {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer; /* Make sure clicking outside the image closes the preview */
}

.preview img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.preview .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

/*Unde ne gasiti styles*/
.hours-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
    padding: 20px;
}

.hours-container h2 {
    font-size: 4rem;
    margin-bottom: 5px;
    color: #f0ba48;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

.hours-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
}

.smoke-title {
    text-align: -webkit-center;
    padding-bottom: 20px;
    font-family: 'SecondFont', Arial, sans-serif;
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adds space between the location and image boxes */
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
}

.location-box {
    width: 59%; /* Adjust width to account for the gap */
    box-sizing: border-box; /* Include padding in width calculation */
    padding: 10px;
}

.image-box {
    width: 39%; /* Adjust width to account for the gap */
    box-sizing: border-box; /* Include padding in width calculation */
    padding: 10px;
}

@media (max-width: 1050px) {
    .location-box {
        width: 100%;
    }
    .image-box {
        width: 100%;
    }
}

.location-box iframe {
    height: 550px; /* Set the height for the Google Maps iframe */
}

.image-box {
    text-align: center; /* Center the image horizontally */
}

.image-frame {
    height: 550px; /* Set the height to match the Google Maps iframe */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; /* Include padding and border in width calculation */
}

.image-frame img {
    max-height: 100%; /* Ensure the image does not exceed the frame height */
    max-width: 100%; /* Ensure the image does not exceed the frame width */
    height: auto; /* Maintain aspect ratio */
    width: auto;  /* Maintain aspect ratio */
}  

.shishara-error-div {
    width: 100%;
}

.shishara-error-button {
    font-weight: bold;
    background-color: #f0ba48;
    color: #000;
    font-size: 20px;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.shishara-error-button:hover {
    background-color: #F09D27;
}

/* Footer styles */
footer {
    background: rgb(24, 26, 30, 0.7);
    color: #ffffff;
    text-align: center;
}
