body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.12);
}

.hero-slide:nth-child(1){background-image:url('./assets/coffee.webp');}
.hero-slide:nth-child(2){background-image:url('./assets/burger.webp');}
.hero-slide:nth-child(3){background-image:url('./assets/chicken.webp');}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* NAV */
.nav {
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  z-index: 10;
}

/* LOGO */
.logo {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.logo span {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  display: block;
}

/* HERO TEXT */
.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
}

.hero-sub {
  margin-top: 12px;
  opacity: 0.9;
}

/* SECTIONS */
.section {
  padding: 90px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.section-sub {
  color: #666;
}

/* BUTTON */
.btn-gold {
  background: #FFC000;
  color: #1A1A1A;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s;
  display: inline-block;
font-size:1rem;
}

.btn-gold:hover {
  transform: scale(1.05);
}

/* MENU */
.menu-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* EXPERIENCE */
.experience-bg {
  position: relative;
  background: url('./assets/beans.webp') center/cover;
  border-radius: 40px;
  overflow: hidden;
  padding: 80px 20px;
}

.experience-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 60px;
  color: white;
}

.exp-box {
  background: rgba(17, 17, 17, 0.75); 
  padding: 40px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.exp-box:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 192, 0, 0.4);
}

.active-card {
  border: 1px solid #FFC000;
  background: rgba(255, 192, 0, 0.18);
  transform: scale(1.03);
}

.exp-icon {
  font-size: 2.5rem;
  color: #FFC000;
  margin-bottom: 15px;
}

.price {
  color: #FFC000;
  font-weight: 800;
}

.hint {
  opacity: 0.8;
  margin-top: 5px;
}

/* PROMISE FULL WIDTH */
.promise-section {
  width: 100%;
  background: #111;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.promise-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.promise-card {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  transition: 0.3s;
}

.promise-card i {
  font-size: 2.5rem;
  color: #FFC000;
  margin-bottom: 15px;
}

.promise-card h3 {
	font-weight: 700;
font-size: 1rem
}

.promise-card:hover {
  transform: translateY(-8px);
  background: rgba(255,192,0,0.08);
}

/* ICONS */
.icon {
  color: #1A1A1A;
  margin-right: 8px;
}

/* FOOTER */
.footer {
  background: #1A1A1A;
  color: white;
  text-align: center;
  padding: 30px;
}

.socials p {
	font-size: 1rem; 
}

.socials {
	margin: 10px 0;

}

.socials a {
  margin: 0 10px;
  color: #FFC000;
  font-size: 1.4rem;
}

/* FADE */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
  .experience-grid {
    grid-template-columns: 1fr;
  }
}