/* styles.css */

/* Variabile pentru temă */
:root {
  --primary-color: #b30d0d;        /* Blue Coral – profund și calm */
  --secondary-color: #F5F5F5;      /* Alb-crem luminos pentru fundal */
  --hover-color: #1E3A50;          /* Albastru coral închis – pentru hover */
  --accent-color: #E3725F;         /* Coral cald pentru butoane/accent */
  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
}



/* Reset și stiluri de bază */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
      scroll-behavior: smooth;
    }
body {
  font-family: var(--font-body);
  background-color: var(--secondary-color);
  color: var(--accent-color);
  line-height: 1.5;
  width: 100%;
  
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* fundal negru, sau ce culoare vrei */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#preloader img {
  width: 150px; /* ajustează la nevoie */
}
#preloader img {
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}
header {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-family: var(--font-title);
  height: 130px;
  border-radius:  0px 0 50px 0;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 100px;
  cursor: pointer;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  position: relative;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  text-transform: uppercase;
  
}

.nav-links li a i {
  margin-right: 8px;
  color: var(--secondary-color); /* sau alt accent din paleta site-ului */
  transition: transform 0.3s ease;
  
}

.nav-links li a:hover i {
  transform: scale(1.2);
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}
.burger.toggle .line1 {
  transform: rotate(45deg) translateY(7px);
}

.burger.toggle .line2 {
  opacity: 0;
}

.burger.toggle .line3 {
  transform: rotate(-45deg) translateY(-7px);
}
.nav-links {
  position: relative;
  top: 100%;
  left: 0;
  width: 100%;
  align-items: center;
  z-index: 999;
}


.nav-links.active {
  display: flex;
  animation: dropDownBounce 0.5s ease forwards;
}

@keyframes dropDownBounce {
  0%   { transform: translateY(-100%); opacity: 0; }
  80%  { transform: translateY(20px); opacity: 1; }
  90%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

nav ul {
  display: flex;
  justify-content:space-around;
  list-style: none;
  gap: 1rem;
  width: 100%;
  justify-content: end;
  text-align: center;
  align-items: center;
  margin-right: 50px;
}

nav a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  font-size: 1.2rem;
}

nav a:hover {
  color: var(--font-body);
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #fff;
  

}

#hero {
  position: relative;
  overflow: hidden;
  min-width: 100%;
  height: 60vh;
  color: var(--secondary-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* încearcă și center 60% dacă vrei mai jos */
  z-index: -2;
}
#hero::after {
  content: "";
  position: absolute;
  top: 0; /* schimbat din bottom */
  left: 0;
  width: 100%;
  height: 40px; /* înălțimea umbrei */
  background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.536)); /* schimbat sensul gradientului */
  z-index: -1;
  pointer-events: none;
}



.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.164); /* poți ajusta opacitatea */
  z-index: -1;
}


.hero-content {
  z-index: 1;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-family: var(--font-title);
}
.btn {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
  top: 300px;
  position: absolute;

}
.btn:hover {
  background-color: #a07e4a;
}

section {
  padding: 3rem 2rem;
}
section h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 1rem;
}
/* Stilizare generală pentru Contact */
section {
  padding: 60px 20px;
  max-width: 95%;
  margin: auto;
}
#contact {
  padding: 4rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
  position: relative;
  z-index: 2;
  margin-top: -110px;
}

#contact.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-card {
  text-decoration: none;
  color: inherit;
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  box-shadow: 0 14px 12px rgba(0, 0, 0, 0.555);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgb(255, 255, 255);
  cursor: pointer;
}

.contact-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color); /* sau altă culoare tematică */
}


.contact-card h3 {
  margin-bottom: 0.5rem;
  color: #222;
}

#servicii {
  padding: 1rem 1rem;
  background: #f5f5f5;
  text-align: center;
}

#servicii h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.servicii-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.serviciu-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serviciu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.serviciu-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.serviciu-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.serviciu-card p {
  font-size: 0.95rem;
  color: #333;
}

.meniuri {
  padding: 4rem 2rem;
  text-align: center;
  

}
.meniuri h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: var(--font-title);
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Optional: un accent decorativ sub titlu */
.meniuri h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--hover-color);
  margin-top: 0.5rem;
  border-radius: 2px;
}


.meniuri-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.meniu-card {
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.377);
  padding: 1.5rem;
  text-align: left;
  transition: transform 0.3s;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.meniu-card:hover {
  transform: scale(1.02);
}
.meniuri ul li{
  list-style: none;

}
.meniu-card img {
  width: 100%;
  height: 200px; /* sau altă valoare fixă, înălțime standard */
  object-fit: cover; /* taie surplusul păstrând aspectul plăcut */
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.meniu-card h4 {
  margin-bottom: 0.5rem;
  color: var(--hover-color); /* culoare elegantă */
}
.section-animated h4{
  color: var(--hover-color);
  text-shadow: 2px 0 2px  rgba(255, 255, 255, 0.418);
  font-family:'Times New Roman', Times, serif;
}
.meniu-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.pret {
  font-weight: bold;
  color: var(--hover-color);
}

/* ======= RESET ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}

/* ======= DESPRE SECTION ======= */
#despre {
  background: linear-gradient(135deg, #e0f7fa, #ffe0b2);
  padding: 80px 20px;
  min-width: 100%;
  margin-top: -200px;
}

.despre-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
  background: #ffffff5d;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.despre-header {
  text-align: center;
  margin-bottom: 40px;
}

.logo-img {
  max-width: 150px;
  margin-bottom: 20px;
}

.despre-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.despre-header .intro {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
}

.despre-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sali-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
}

.sala-card {
  background-color: #fafafa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
  padding: 20px;
}

.sala-card:hover {
  transform: translateY(-5px);
}

.sala-card img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.sala-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.sala-card p {
  font-size: 1rem;
  color: #444;
}

@media(min-width: 768px) {
  .sali-gallery {
    flex-direction: row;
    justify-content: space-between;
  }

  .sala-card {
    flex: 0 0 48%;
  }
}


.album-meniu {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.album-meniu img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  
}

.album-meniu img.active {
  opacity: 1;
  z-index: 1;
}


/* ======= SALI EVENIMENTE ======= */
.sali-evenimente {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.sala-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  flex: 1 1 300px;
}

.sala-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.sala-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px;
  font-size: 1.1rem;
  text-align: center;
  font-weight: bold;
}

/* ======= ANIMAȚII SCROLL ======= */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ======= RESPONSIVE ======= */
@media screen and (max-width: 768px) {

  .sali-evenimente {
    flex-direction: column;
    align-items: center;
  }

  .sala-box img {
    height: 220px;
  }
}



#galerie {
  text-align: center;
  min-width: 85% ;
  
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-image {
  min-width: 100%;
  height: 400px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
}

/* Butoane navigare */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.7);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 50%;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background-color: rgba(255,255,255,0.9);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
.carousel-thumbnails {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 6px;
  transition: border 0.3s, transform 0.2s;
}

.thumbnail:hover,
.thumbnail.active {
  border: 2px solid #ff7043;
  transform: scale(1.05);
}


/* Efect de fade-up la apariție */
.section-animated {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-visible {
  opacity: 1;
  transform: translateY(0);
}

ul li i {
  margin-right: 8px;
  color: var(--primary-color); /* sau alt accent din paleta site-ului */
}
.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px; /* Dimensiune fixă */
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* Aici e magia */
  object-position: center;
  display: block;
  border-radius: 10px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.5);
  transition: background 0.3s ease;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.fade {
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Stil pentru titlu */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  font-weight: 700;
}

/* Grid layout */

#bufet-suedez {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #e0f7fa, #ffe0b2);
  text-align: center;
}

.bufet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 2rem;
}

/* Stil individual pentru fiecare item */
.bufet-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--hover-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bufet-item i {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.bufet-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.bufet-item:hover i {
  transform: scale(1.2);
  color: #c0392b;
}

.price-description {
  background: linear-gradient(135deg, #fbeee0, #f9d6c1);
  color: #2c3e50;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  
}

.price-description:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

.price-description h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  font-weight: 700;
}

.price-description p {
  font-size: 1rem;
  margin: 0;
  color: #555;
}

.price-description i {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 0.5rem;
}



footer {
  background-color: var(--primary-color); /* sau #003366 */
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  text-align: left;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-column h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-column li i {
  color: var(--secondary-color);
  min-width: 20px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--secondary-color);
}

.social-icons a {
  font-size: 1.6rem;
  margin-right: 1rem;
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #07c5ff;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.contact-float {
  display: none;
}

.phone-float, .whatsapp-float {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #fff;
  color: #333;
  padding: 0.5rem 0.8rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.phone-float:hover {
  background-color: #e0e0e0;
}

.whatsapp-float {
  background-color: #25D366;
  color: white;
  padding: 0.6rem 0.8rem;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
}
.swipe-indicator {
  position: absolute;
  z-index: 1000;
  top: 120px;
  right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.1rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary-color);
  font-weight: bold;
  margin: 1rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  padding: 3px 5px;
  border-radius: 30px;
  text-align: center;
}

.swipe-indicator i {
  animation: swipeArrow 1s infinite alternate;
}

@keyframes swipeArrow {
  0% { transform: translateX(0); opacity: 0.5; }
  100% { transform: translateX(10px); opacity: 1; }
}

@media (min-width: 768px) {
  .swipe-indicator {
    display: none !important;
  }
}

.swipe-indicator.active {
  opacity: 1;
  pointer-events: auto;
}

.sali-evenimente {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.sala-box {
  position: relative;
  width: 100%;
  max-width: 40%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.sala-box:hover {
  transform: scale(1.02);
}

.sala-box img {
  width: 100%;
  height: auto;
  display: block;
}

.sala-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* negru transparent */
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 1.2rem;
  font-weight: 500;
}
.fa-star{
  color:rgb(255, 197, 6);
  text-shadow: 0 1px rgb(252, 164, 0);
}
.takeaway-section {
  padding: 4rem 2rem;
  background: #f5f5f5;
  text-align: center;
  margin-bottom: 50px;
  
}


.takeaway-card {
  background: linear-gradient(135deg, #e0f7fa, #ffe0b2);
  color: #2c3e50;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.takeaway-card:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 36px rgba(0,0,0,0.15);
}

.takeaway-card i {
  font-size: 2.5rem;
  color: #ff7043;
  margin-bottom: 1rem;
}

.takeaway-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.takeaway-card p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.takeaway-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #ff7043;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.takeaway-button:hover {
  background-color: #e64a19;
}
.takeaway-warning {
  font-size: 1rem;
  color: #d84315;
  font-weight: 600;
  background-color: #fff3e0;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  display: inline-block;
  margin-top: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: #2222223e; /* sau orice altă culoare de fundal */
  color: #fff;
  font-size: 14px;
}

.footer-bottom a.autor-link {
  color: #fff; /* păstrează aceeași culoare ca textul sau modifică după gust */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-bottom a.autor-link:hover {
  color: #e74c3c; /* sau orice accent – roșu, aur, etc. */
  text-decoration: underline;
}


  @media (max-width: 768px) {
    .sali-evenimente {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.sala-box {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.sala-box:hover {
  transform: scale(1.22);
}

.sala-box img {
  width: 100%;
  height: auto;
  display: block;
}

.sala-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
}

    nav {
      flex-direction: column;
      align-items: flex-start;
    }
    header{
      min-height:100px;
      height: auto;
    }


    .burger {
      display: flex;
      align-self: flex-end;
      margin-top: 1rem;
      position: absolute;
      top: 50px;
    }

  .burger.toggle .line1 {
    transform: rotate(45deg) translateY(7px);
  }

  .burger.toggle .line2 {
    opacity: 0;
  }

  .burger.toggle .line3 {
    transform: rotate(-45deg) translateY(-7px);
  }
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      padding: 1rem 0;
      gap: 1rem;
    }
.nav-links {
  position: relative;
  top: 100%;
  left: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}
    .nav-links.active {
      display: flex;
    }

    nav a {
      font-size: 1.2rem;
      color: white;
      padding: 0.5rem 1rem;
    }
    .contact-container{
      display: flex;
      flex-wrap: nowrap;
    }
  .contact-card {
    width: 100px;
  }

  .contact-card:hover {
    transform: translateY(-5px);
  }

  .contact-card i {
    font-size: 1.7rem;
  }

  .contact-card h3 {
    display: none;
  }
  .contact-card p{
    display: none;
  }
  .meniuri-container {
      display: flex;
      overflow-x: auto;
      gap: 1rem;
      scroll-snap-type: x mandatory;
      scroll-padding: 0 10%;
      margin-bottom: 80px;
      scroll-behavior: smooth;
    }

  .meniu-card {
    flex: 0 0 98%;
    scroll-snap-align: center;
    border-radius: 0.75rem;
    padding: 1rem;
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 0.6s forwards;
  }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }


  .servicii-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .serviciu-card {
    padding: 1rem;
  }

  .serviciu-card i {
    font-size: 1.5rem;
  }

  .serviciu-card h4 {
    font-size: 1rem;
  }

  .serviciu-card p {
    font-size: 0.85rem;
  }
  #hero {
  height: 40vh;
  }
 .btn {
  top: 200px;
}


.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  position: relative;
}


.contact-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 0.5rem;
  z-index: 999;
}
 .btn {
  top: 250px;
}

 .bufet-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
  }

  .bufet-item {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .bufet-item i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .section-title {
    font-size: 2rem;
  }
    .price-description {
    padding: 1.5rem;
  }

  .price-description h1 {
    font-size: 1.5rem;
  }
  .takeaway-section {
  padding: 0rem 0rem;
  
}
#bufet-suedez {
  padding: 0rem 0rem;
}
  
.meniuri {
  padding: 0rem 0rem;
}
}


@media (min-width: 768px) and (max-width: 1024px) {
  /* stiluri pentru ecrane între 768px și 1024px */
  nav a {
  font-size: 1rem;
}

}



@media (max-width: 480px) {
  #contact {
    padding: 4rem 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease;
    position: relative;
    z-index: 2;
    margin-top: -80px;
  }
#hero {
  height: 50vh;

}
.bufet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .bufet-item {
    font-size: 0.85rem;
    padding: 0.75rem;
  }

  .bufet-item i {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

}