body {

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #E7E7E7;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: var(--font-size-xl);
    color: var(--color-midnightblue);
    font-family: var(--font-mulish);
}

a {
    text-decoration: none;
    /* Elimină sublinierea */
    color: white;
}

.menu-components {
    position: sticky;
    width: 100%;
    z-index: 1000;
    position: sticky;
    top: 0px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 30px;
    padding: 2px 0px;

    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    max-width: 100%;

    width: 100%;
    z-index: 1000;

    top: 0px;
}

.menu-items-desktop
{
    display: flex;
    gap: 30px;
}


.menu-items-desktop h1{
    font-size: 17px;
}
/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    display: none;
    z-index: 999;
    max-height: 0;

    margin: 50px 0px 0px 0px;
    opacity: 0;
    transform: translateY(-20px);
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    background-color: #f1f1f1;
    width: 100%;

    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.dropdown-menu.show {
    max-height: 500px;
    display: inline;
    /* Suficient de mare pentru a acoperi conținutul */
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.dropdown-menu a:hover {
    color: #555;
    background-color: #e0e0e0;
    border-radius: 10px;
}




@media screen and (max-width:821px) {
    .menu-text {
        display: none;
    }

    .menu-text a {
        color: white;
    }

    .menu-items-desktop{
        display: none;
    }
}

@media screen and (min-width:822px) {
    .menu-text {
        color: white;
        flex-grow: 1;
        display: flex;
        position: relative;
        color: white;
        justify-content: flex-end;
        align-items: center;
        gap: 80px;
        width: 90%;
        flex-direction: row;

        margin: 18px 0px;
    }

    .nav-menu{
        display: none;
    }
    .menu-icon{
        display: none;
    }
}


/* end Dropdown Menu */


/* Cover Section */
.cover-section {
    position: relative;
    text-align: center;
    color: white;
    /* background-color: black; */
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('public/DEC-66.webp') center center/cover no-repeat;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

.cover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7);
}

.cover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7);
}

.cover-text h1 {
    font-size: 48px;
    margin: 0;
}

.cover-text h2 {
    font-size: 36px;
    margin: 0;
}

.cover-text p {
    font-size: 20px;
    margin-top: 10px;
}

/* Yellow Bar Section */
.yellow-bar {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    align-items: center;
    background-color: #CA985E;
    border-radius: 65px;
    height: auto;
    margin: 2px 0px 0px 0px;
    padding: 15px 0px;
    border: 1px solid black;
}

@media screen and (max-width: 415px) {
    .yellow-bar {
        flex-direction: column;
        border-radius: 0px;
        padding: 0px;
    }

    .yellow-item {
        padding: 20px 0px;
    }

    #color2 {
        background-color: #A53F2B;
        width: 100%;
    }

    #color3 {
        background-color: #4C230A;
        width: 100%;
    }

    .column{
        gap:25px;
    }
}

@media screen and (min-width: 415px)
{
    .column{
        gap:0;
    }
}

.yellow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

#special-border {
    border: 1px solid black;
}

.yellow-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.yellow-item p {
    font-size: 16px;
    font-weight: 700;
}


.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0px 0px 0px 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
}



.menu {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 60px 0px;
    background-color: #F6F6F6;
}

.question {
    background-color: #F6F6F6;
    width: 99%;
    text-align: center;
    padding: 10px 0px;
    margin: 20px 0px -20px 0px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 0px 80px 0px 80px;
}

.card {
    border-radius: 20px;
    width: 200px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    padding-top: 60px;
    max-width: 201px;
    text-align: center;
}

.card img {
    width: 100%;
    height: auto;
}

.info {
    padding: 15px;
    background-color: #D7D7D7;
}

h3 {
    margin: 10px 0;
    font-size: 18px;

    color: #511E01;
    ;
}


/* Responsive design for mobile */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .card {
        max-width: 90%;
        margin-bottom: 20px;
    }
}

#day-menu {
    gap: 105px
}

/* Menu Section Styles */



.item-container {
    display: flex;
    align-items: center;
    gap: 15px;

}

.item-container img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.menu-text {
    flex-grow: 1;
}

.menu-text h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.menu-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}


/* Gallery Section
*/

.gallery-container {
    position: relative;
    width: 100%;
    /* max-width: 2249px; */
    height: 920px;
    overflow: hidden;
    border: 2px solid #2c3e50;
    border-radius: 10px;
    background: #fff;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    outline: none;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive Design for Menu Section */





.menu-category {
    flex: 1 1 250px;
    margin: 20px;
}

.menu-category h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #b96500;
    text-transform: uppercase;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    font-size: 1rem;
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-list li span {
    flex: 1;
}

.menu-separator {
    flex: 1 1 100%;
    text-align: center;
    margin: 20px 0;
}

.menu-separator p {
    font-style: italic;
    color: #b96500;
    font-size: 1.2rem;
}


/* General Section Styles */

.column {
    display: flex;
    flex-direction: column;


}

.column h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}


.menu-text {
    display: flex;
    gap: 1px;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

.menu-text h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.menu-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}

/* Responsive Design */


.menu-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin: 40px 0;
}


.item-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-block img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.menu-text {
    flex-grow: 1;
}

.menu-text h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.menu-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}

.card-container {
    width: 100%;
    display: flex;
    gap: 25px;
    margin: 50px 0px 20px 0px;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(public/beans-coffee.webp);
    background-image: url(public/beans-coffee.webp);
    background-size: cover;
    background-position: left;
    background-repeat: space;
    width: 100%;
}


.card:hover {
    transform: translateY(-10px);
}

.image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 9px rgba(1, 1, 4, 0.4);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;    
}

.image-container img {
    width: 100%;
    height: 105%;
    object-fit: cover;
}

.card-content {
    padding: 35px;
    padding-top: 75px;
    background: #ffffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 30px;
}

.card-content h3 {
    margin: 0px 0 25px;
    font-size: 0.9em;
}

.card-content p {
    font-size: 0.6em;
    color: #666;
    margin: 0px 0px 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.card-footer span {
    font-weight: bold;
    color: #6a2a06;
    font-size: 0.9em;
}

.actions {
    display: flex;
    gap: 10px;
}

.cart-btn,
.fav-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.2em;
    transition: color 0.3s;
}

.cart-btn:hover,
.fav-btn:hover {
    color: #ff5722;
}

/* Separator Section */
.separator {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin: 40px 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-section {
        flex-direction: column;
        align-items: center;
    }

    .item-block {
        flex-direction: row;
        text-align: center;
    }
}

.cafe-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 350px);
    margin: 20px 0px 0px 0px;
    gap: 0px;

}

.info-item {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.info-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.info-item.text {
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
}

@media (max-width: 1024px) {
    .cafe-info {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 300px);
    }
}

@media (max-width: 768px) {
    .cafe-info {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 300px);
        padding: 20px;
    }
}


.intro,
.therapy {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 50px 10%;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.intro-content,
.therapy-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

.intro-image,
.therapy-image {
    flex: 1;
    padding: 20px;
}

.intro-image img,
.therapy-image img {
    width: 100%;
    border-radius: 10px;
}

.intro-text,
.therapy-text {
    flex: 1;
    padding: 20px;
}

.intro-text h1 .highlight {
    font-style: italic;
    color: #2e4d39;
}

.intro p,
.therapy p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 20px 0;
}

.btn {
    background-color: #2e4d39;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
}

.btn:hover {
    background-color: #1d3426;
}

/* Background overlays for decorative effects */
.intro::before,
.therapy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path/to/decorative-pattern.png') no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}





@media (min-width: 400px) {
    .display-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}



.footer-container {
    background-color: #171d21;
    width: 100%;
    padding: 40px 0px 40px 0px;
  }
  
  .footer {
    display: flex;
    flex-wrap: nowrap;
    margin: 0px 0px 0px 35px;
    line-height: 0.571429em;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }
  
  .social-media {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  #icon-facebook {
    margin-right: 15px;
    color: orange
  }
  
  #icon-instagram {
    color: orange
  }
  
  .icon-sm:hover {
    color: white;
  }
  
  @media (min-width: 550px) {
    .footer {
        flex-direction: row;
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
        padding: 40px 30px 40px 30px;
    }
  }
  
  @media (min-width:1060px) {
  
    .footer {
        flex-direction: row;
        display: flex;
        align-items: flex-start;
        padding: 40px 30px 40px 30px;
        justify-content: space-around;
    }
  
    .footer-left {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        padding: 0px 25px 0px 25px;
        min-width: 400px;
    }
  
    .footer-right {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        padding: 0px 25px 0px 25px;
        min-width: 400px;
    }
  }
  
  @media (min-width:1300px) {
    .text-footer {
        margin: 0px 10px 0px 45px;
    }
  }
  
  @media screen and (max-width: 1025px) {
   
    }
  
  
 .footer-container {
  background-color: #f8f8f8; /* Adjust as needed */

}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Ensure the layout adapts for smaller screens */
}

.footer-left, .footer-right {
  flex: 1 1 50%; /* Divide space equally */
  padding: 10px; /* Add spacing inside each section */
  box-sizing: border-box; /* Ensure padding doesn’t break layout */
}

.text-footer {
  margin-bottom: 20px; /* Add space between sections */
}

.text-footer p {
  margin: 5px 0; /* Space between individual lines */
  line-height: 1.5; /* Adjust line spacing */
  font-size: 14px; /* Adjust font size */
}

.font-text-footer p {
  margin: 3px 0; /* Reduce spacing for tighter grouping */
}

a {
  text-decoration: none;
  color: #333; /* Adjust link color */
}

a:hover {
  color: #007BFF; /* Highlight links on hover */
}

.social-media a {
  margin-right: 10px; /* Space out social media icons */
}

.social-media i {
  font-size: 18px; /* Adjust icon size */
}

  
  