/*----------------------------------*
  ROOT COLORS
*----------------------------------*/
:root {
  --coffee-dark: #3e2723;
  --coffee-medium: #654e37;
  --coffee-light: #c4a484;
  --coffee-accent: #d2b48c;
  --coffee-cream: #f5f5dc;
  --coffee-gold: #d4af37;
  --text-dark: #2c2416;
  --text-light: #f3f3f3;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--coffee-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
header {
  background: var(--coffee-dark);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 58px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--coffee-light);
}

.logo-text span {
  color: var(--coffee-gold);
}

/* NAV */
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  text-decoration: none;
  color: var(--coffee-light);
  font-weight: 600;
  font-size: 16px;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coffee-gold);
  transition: width 0.3s;
}

nav a:hover {
  color: var(--coffee-gold);
}

nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 200px 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b0705 0%, #010000 50%);
  z-index: -1;
}

.hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 120px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--coffee-medium);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-light);
}

.hero-title span {
  color: var(--coffee-gold);
}

.hero-text {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--coffee-light);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  background: var(--coffee-medium);
  color: var(--coffee-light);
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--coffee-dark);
  transform: translateY(-3px);
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* MENU SECTION */
.menu {
  padding: 120px 0;
  position: relative;
  background-color: #161515;
  border-top: 4px solid var(--coffee-gold);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--coffee-gold);
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  color: var(--coffee-gold);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--coffee-gold);
}

.section-desc {
  font-size: 18px;
  color: var(--text-light);
}

/* MENU GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* MENU CARD */
.menu-card {
  background: var(--coffee-dark);
  color: var(--text-light);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.5);
}

.menu-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-info {
  padding: 20px;
}

.product-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--coffee-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.menu-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.menu-desc {
  font-size: 14px;
  margin-bottom: 15px;
}

.menu-price {
  font-weight: 700;
  margin-bottom: 10px;
}

.rating i {
  color: var(--coffee-gold);
}










