@charset "utf-8";
/* CSS Document */
@charset "utf-8";

/* ================= RESET ================= */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Poppins", sans-serif;
  line-height:1.6;
  background:#111827;
  color:#f8fafc;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
  margin:0;
  padding:0;
}

h1,h2,h3,p{
  margin:0;
}

html,body{
  overflow-x:hidden;
}

/* ================= VARIABILE ================= */
:root{
  --bg:#111827;
  --bg-soft:#1f2937;
  --card:#1f2937;
  --text:#f8fafc;
  --muted:#d1d5db;
  --line:rgba(255,255,255,0.08);
  --brand:#b45309;
  --brand-dark:#92400e;
  --white:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* ================= UTILITARE ================= */
.container{
  width:min(1120px, 92%);
  margin:0 auto;
}
.section{
  padding:64px 0;
}
.section-heading{
  text-align:center;
  margin-bottom:32px;
}
.section-heading h2{
  font-size:1.9rem;
  line-height:1.2;
  margin-bottom:12px;
  color:var(--white);
}
.section-heading p{
  color:var(--muted);
  max-width:700px;
  margin:0 auto;
}
.section-action{
  text-align:center;
  margin-top:28px;
}
.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:#fdba74;
  font-weight:700;
  font-size:.95rem;
}

/* ================= HEADER ================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(17,24,39,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-wrap{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo{
  font-size:1.35rem;
  font-weight:800;
  color:var(--white);
}
.logo span{
  color:var(--brand);
}

.nav-toggle{
  background:transparent;
  border:1px solid var(--line);
  color:var(--white);
  padding:10px 12px;
  border-radius:10px;
  font-size:1.2rem;
  cursor:pointer;
}
.site-nav{
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: #111827;
	 text-align: center;
  padding: 20px 4%;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.site-nav.is-open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav ul{
  display:flex;
  flex-direction:column;
  gap:10px;
	 
}
.site-nav a{
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-weight: 500;
  transition: color .25s ease, transform .25s ease, padding-left .25s ease;
}
.site-nav a:hover,
.site-nav a.active{
  color: #fdba74;
  padding-left: 6px;
}


.site-nav.is-open{
  display:block;
  position:absolute;
  top:72px;
  left:0;
  width:100%;
  background:#111827;
  padding:20px 4%;
  border-bottom:1px solid var(--line);
}

/* ================= HERO ================= */
.hero{
  padding:48px 0 64px;
  background:linear-gradient(180deg, #111827 0%, #1f2937 100%);
}
.hero-content{
  display:grid;
  gap:32px;
  align-items:center;
}
.hero-text h1{
  font-size:2.3rem;
  line-height:1.12;
  margin-bottom:16px;
  color:var(--white);
}
.hero-text p{
  color:var(--muted);
  max-width:620px;
}
.hero-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:24px;
}
.hero-image img{
  border-radius:22px;
  box-shadow:var(--shadow);
  object-fit:cover;
}

/* ================= BUTOANE ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
  border:1px solid transparent;
}
.btn-primary{
  background:var(--brand);
  color:#fff;
}
.btn-primary:hover{
  background:var(--brand-dark);
}
.btn-secondary{
  background:transparent;
  color:var(--white);
  border-color:var(--line);
}
.btn-secondary:hover{
  border-color:var(--brand);
  color:#fdba74;
}

/* ================= CARDURI ================= */
.cards{
  display:grid;
  gap:20px;
}
.card,
.menu-preview-item,
.cta-box{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover,
.menu-preview-item:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.35);
  border-color:var(--brand);
}
.card-image{
  overflow:hidden;
  border-radius:14px;
  margin-bottom:16px;
}
.card-image img{
  width:100%;
  transition:transform .4s ease;
}
.card:hover .card-image img{
  transform:scale(1.08);
}
.card h3,
.menu-preview-item h3{
  font-size:1.2rem;
  margin-bottom:10px;
  color:var(--white);
}
.card p,
.menu-preview-item p{
  color:var(--muted);
}

/* ================= ABOUT PREVIEW ================= */
.about-preview-grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.about-preview-image img{
  width:100%;
  border-radius:22px;
  box-shadow:var(--shadow);
}
.about-preview-text h2{
  font-size:2rem;
  line-height:1.2;
  margin-bottom:16px;
  color:var(--white);
}
.about-preview-text p{
  color:var(--muted);
  margin-bottom:16px;
}
.about-preview-text p:last-of-type{
  margin-bottom:24px;
}

/* ================= MENU PREVIEW ================= */
.menu-preview-grid{
  display:grid;
  gap:20px;
}

/* ================= GALERIE ================= */
.gallery-grid{
  display:grid;
  gap:16px;
}
.gallery-grid img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow);
  transition:transform .3s ease, opacity .3s ease;
}
.gallery-grid img:hover{
  transform:translateY(-4px);
  opacity:.92;
}

/* ================= CTA ================= */
.cta-box{
  text-align:center;
}
.cta-box h2{
  font-size:2rem;
  margin-bottom:12px;
  color:var(--white);
}
.cta-box p{
  color:var(--muted);
  max-width:700px;
  margin:0 auto 20px;
}

/* ================= FOOTER ================= */
.site-footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  background:#0f172a;
}
.footer-wrap{
  display:flex;
  flex-direction:column;
  gap:16px;
  text-align:center;
}
.footer-wrap p{
  color:var(--muted);
}
.footer-wrap ul{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.footer-wrap a{
  color:var(--muted);
}

.footer-wrap a:hover{
  color:#fdba74;
}



/* ================= meniu.html ================= */
.page-hero{
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
  text-align: center;
}
.page-hero-content{
  max-width: 820px;
}
.page-hero h1{
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.page-hero p:last-child{
  color: var(--muted);
}
/* ================= sectiunea menu-categories ================= */
.menu-category{
  margin-bottom: 56px;
}
.menu-category:last-child{
  margin-bottom: 0;
}
.menu-list{
  display: grid;
  gap: 18px;
}
.menu-item{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition:
transform .25s ease,
box-shadow .25s ease,
border-color .25s ease;
}
.menu-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  border-color: var(--brand);
}
.menu-item-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.menu-item-top h3{
  font-size: 1.1rem;
  color: var(--white);
}
.menu-item-top span{
color:#fdba74;
font-weight:700;
font-size:1.05rem;
}
.menu-item p{
  color: var(--muted);
}

/* ================= despre.html ================= */
.about-grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.about-image img{
  width:100%;
  border-radius:22px;
  box-shadow:var(--shadow);
  object-fit:cover;
}
.about-text h2{
  font-size:2rem;
  line-height:1.2;
  margin-bottom:16px;
  color:var(--white);
}
.about-text p{
  color:var(--muted);
  margin-bottom:16px;
}
.about-text p:last-child{
  margin-bottom:0;
}

/* ================= EXPERIENCE-despre.html ================= */
.experience-grid{
  display:grid;
  gap:20px;
}
.experience-box{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.experience-box:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.35);
  border-color:var(--brand);
}
.experience-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:50%;
  background:rgba(180,83,9,0.14);
  color:#fdba74;
  font-weight:800;
  margin-bottom:16px;
}
.experience-box h3{
  font-size:1.2rem;
  margin-bottom:10px;
  color:var(--white);
}
.experience-box p{
  color:var(--muted);
}

/* ================= QUOTE-despre.html ================= */
.quote-box{
  background:linear-gradient(135deg, rgba(180,83,9,0.18), rgba(255,255,255,0.04));
  border:1px solid var(--line);
  border-radius:24px;
  padding:32px 24px;
  text-align:center;
  box-shadow:var(--shadow);
}
.quote-box p{
  font-size:1.2rem;
  line-height:1.8;
  color:var(--white);
  max-width:850px;
  margin:0 auto;
}

/* ================= CONTACT PAGE-contact.php- ================= */
.contact-grid{
  display:grid;
  gap:28px;
}
.contact-info h2{
  font-size:2rem;
  line-height:1.2;
  margin-bottom:14px;
  color:var(--white);
}
.contact-info > p{
  color:var(--muted);
  margin-bottom:24px;
}
.contact-cards{
  display:grid;
  gap:18px;
}
.contact-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.35);
  border-color:var(--brand);
}
.contact-card h3{
  font-size:1.1rem;
  margin-bottom:8px;
  color:var(--white);
}
.contact-card p,
.contact-card a{
  color:var(--muted);
}
.contact-card a:hover{
  color:#fdba74;
}
.contact-form-wrap{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.contact-form{
  display:grid;
  gap:18px;
}
.form-group{
  display:grid;
  gap:8px;
}
.form-group label{
  font-weight:600;
  color:var(--white);
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.10);
  background:#111827;
  color:var(--white);
  font:inherit;
  outline:none;
  transition:border-color .3s ease, box-shadow .3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(180,83,9,0.15);
}
.form-group textarea{
  resize:vertical;
  min-height:150px;
}
.form-note{
  margin-top:16px;
  color:var(--muted);
}
.honey-field{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}


















/* ================= TABLETA ================= */
@media (min-width:768px){
  .nav-toggle{
    display:none;
  }
 .site-nav{
    opacity: 1;
    visibility: visible;
    transform: none;
    position: static;
    width: auto;
    background: transparent;
    padding: 0;
    border: 0;
  }
 .site-nav ul{
    flex-direction:row;
    align-items:center;
    gap:22px;
  }
.hero-content{
    grid-template-columns:1.05fr .95fr;
  }
.hero-text h1{
    font-size:3rem;
  }
.hero-actions{
    flex-direction:row;
    flex-wrap:wrap;
  }
.cards{
    grid-template-columns:repeat(2, 1fr);
  }
 .menu-preview-grid{
    grid-template-columns:repeat(2, 1fr);
  }
	
.gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }
.footer-wrap{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    text-align:left;
  }
	
/*---meniu.html---*/
.page-hero h1{
    font-size: 3rem;
  }	
 .page-hero h1{
    font-size: 3.5rem;
  }
	.menu-list{
    grid-template-columns: repeat(2, 1fr);
  }
	
	/*---despre.html---*/
	 .about-text h2{
    font-size:2.3rem;
  }
.experience-grid{
    grid-template-columns:repeat(2, 1fr);
  }
	
	
.contact-cards{
    grid-template-columns:repeat(2, 1fr);
  }
	
	
	
	
	
}














/* ================= DESKTOP ================= */
@media (min-width:1024px){
  .hero{
    padding:72px 0 90px;
  }
.hero-text h1{
    font-size:3.7rem;
  }
.section-heading h2{
    font-size:2.4rem;
  }
 .cards{
    grid-template-columns:repeat(3, 1fr);
  }
.about-preview-grid{
    grid-template-columns:.95fr 1.05fr;
    gap:40px;
  }
 .menu-preview-grid{
    grid-template-columns:repeat(4, 1fr);
  }
 .gallery-grid{
    grid-template-columns:repeat(4, 1fr);
  }

	
	
	.menu-list{
    grid-template-columns: repeat(3, 1fr);
  }
	
/*---despre.html---*/
.about-grid{
    grid-template-columns:.95fr 1.05fr;
    gap:40px;
  }
.quote-box{
    padding:44px 36px;
  }

  .quote-box p{
    font-size:1.35rem;
  }
.experience-grid{
    grid-template-columns:repeat(3, 1fr);
  }	
.experience-box:last-child{
    grid-column:2;
  }	
	
	
.contact-grid{
    grid-template-columns:.9fr 1.1fr;
    gap:36px;
    align-items:start;
  }
.contact-form-wrap{
    padding:30px;
  }
	
	
	
}





.success-message,
.error-message{
  padding:14px 16px;
  border-radius:14px;
  margin-bottom:18px;
  font-weight:600;
}

.success-message{
  background:rgba(34,197,94,0.14);
  border:1px solid rgba(34,197,94,0.35);
  color:#86efac;
}

.error-message{
  background:rgba(239,68,68,0.14);
  border:1px solid rgba(239,68,68,0.35);
  color:#fca5a5;
}

















































































































































