:root {
  --pink-light:  #F9F6F0;
  --pink-mid:    #E89D9D;
  --pink-main:   #DDC5A2;
  --green:       #A9CDE5;
  --dark:        #3C2A21;
  --card-bg:     rgba(249, 246, 240, 0.9);
  --border:      rgba(60, 42, 33, 0.15);
  --pink-gradient:      #E89D9D;
  --pink-gradient-dark: #D68181;
  --box-shadow:  0 12px 30px rgba(60, 42, 33, 0.15);
  --round:       24px;
  --round-small: 14px;
  --main-font:   'Verdana', sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--main-font);
  background-color: var(--pink-light);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233C2A21' fill-opacity='0.04'%3E%3Cg transform='translate(15, 15) rotate(-15)'%3E%3Cpath d='M25 32 C32 32 36 26 25 25 C14 24 18 32 25 32 Z' /%3E%3Ccircle cx='16' cy='18' r='3.5'/%3E%3Ccircle cx='21' cy='13' r='3.5'/%3E%3Ccircle cx='28' cy='13' r='3.5'/%3E%3Ccircle cx='33' cy='18' r='3.5'/%3E%3C/g%3E%3Cg transform='translate(75, 75) rotate(20)'%3E%3Cpath d='M25 32 C32 32 36 26 25 25 C14 24 18 32 25 32 Z' /%3E%3Ccircle cx='16' cy='18' r='3.5'/%3E%3Ccircle cx='21' cy='13' r='3.5'/%3E%3Ccircle cx='28' cy='13' r='3.5'/%3E%3Ccircle cx='33' cy='18' r='3.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-attachment: fixed;
  color: var(--dark);
  line-height: 1.7;
  animation: fadeIn 0.8s ease-out forwards;
}
img {
  display: block;
  max-width: 100%;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-mid);
  filter: sepia(0.25) hue-rotate(-20deg) saturate(1.15);
}
.cafe-name {
  font-family: var(--main-font);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.and-sign {
  color: var(--pink-main);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.menu-icon {
  display: none;
  font-size: 1.5rem;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 50px;
  color: var(--dark);
  font-weight: 500;
}
.nav-links a:hover {
  background: var(--pink-light);
  color: var(--green);
}
.active-link {
  background: var(--pink-gradient) !important;
  color: #fff !important;
  padding: 8px 24px !important;
  box-shadow: 0 4px 12px rgba(60, 42, 33, 0.2);
  transition: all 0.3s ease;
}
.active-link:hover {
  background: var(--pink-gradient-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(60, 42, 33, 0.3);
}
.home-section {
  position: relative;
  min-height: 600px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(60, 42, 33, 0.55), rgba(60, 42, 33, 0.55)), url('images/cafe.jpeg') center / cover no-repeat;
  background-attachment: fixed;
}
.home-text {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
.top-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.home-section h1 {
  font-family: var(--main-font);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.15;
}
.home-section p {
  color: #fff;
  margin-bottom: 36px;
  font-weight: 700;
  font-size: 1.1rem;
}
.home-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.scroll-arrow {
  position: absolute;
  bottom: 24px;
}
.pink-btn,
.clear-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 30px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.pink-btn {
  background: var(--pink-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(60, 42, 33, 0.2);
}
.pink-btn:hover {
  background: var(--pink-gradient-dark);
  box-shadow: 0 6px 20px rgba(60, 42, 33, 0.3);
  transform: translateY(-3px) scale(1.03);
}
.clear-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid #fff;
}
.clear-btn:hover {
  background: #fff;
  color: var(--dark);
  transform: translateY(-3px) scale(1.03);
}
.about {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: clamp(60px, 10vw, 100px) 10%;
  background: transparent;
}
.about-img-box {
  flex: 0 0 45%;
  position: relative;
}
.about-img-note {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
}
.about-text h2 {
  font-family: var(--main-font);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}
.about-numbers {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.offerings {
  padding: clamp(60px, 10vw, 100px) 10%;
  background: transparent;
}
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(232, 157, 157, 0.4);
  color: var(--dark);
  font-weight: 600;
}
.cards {
  display: flex;
  gap: 24px;
}
.card {
  flex: 1;
  padding: 36px 28px;
  border-radius: var(--round);
  background: var(--card-bg);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 157, 157, 0.4);
  margin-bottom: 20px;
}
.card-special {
  background: var(--card-bg);
  color: var(--dark);
}
.card-label {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--pink-main);
  color: var(--dark);
  font-weight: 600;
}
.menu {
  padding: clamp(60px, 10vw, 100px) 10%;
  background: transparent;
}
.menu-row {
  display: flex;
  gap: 24px;
}
.menu-card {
  flex: 1;
  border-radius: var(--round);
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--box-shadow);
}
.menu-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 20px 16px;
}
.menu-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.menu-emoji {
  font-size: 28px;
}
.menu-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 16px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.menu-list li:hover { 
  background: rgba(232, 157, 157, 0.4); 
  transform: translateX(5px); 
}
.price {
  font-weight: 600;
  color: var(--pink-main);
}
.why {
  padding: clamp(60px, 10vw, 100px) 10%;
  background: transparent;
}
.why-row {
  display: flex;
  gap: 24px;
}
.why-box {
  flex: 1;
  padding: 36px 28px;
  border-radius: var(--round);
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--box-shadow);
  color: var(--dark);
}
.why-box-pink {
  background: var(--pink-main);
  color: #fff;
  box-shadow: none;
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(60, 42, 33, 0.08);
}
.contact {
  padding: clamp(60px, 10vw, 100px) 10%;
  background: transparent;
}
.contact-inner {
  display: flex;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--round-small);
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item:nth-child(1) .contact-icon { background-image: url('images/pin.jpeg');   background-repeat: no-repeat; background-position: center; background-size: 30px; }
.contact-item:nth-child(2) .contact-icon { background-image: url('images/phone.jpeg'); background-repeat: no-repeat; background-position: center; background-size: 30px; }
.contact-item:nth-child(3) .contact-icon { background-image: url('images/mail.jpeg');  background-repeat: no-repeat; background-position: center; background-size: 30px; }
.contact-item:nth-child(4) .contact-icon { background-image: url('images/clock.jpeg'); background-repeat: no-repeat; background-position: center; background-size: 30px; }

.contact-item strong {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(60, 42, 33, 0.5);
  margin-bottom: 2px;
}
.contact-item span {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--dark);
}
footer {
  background: var(--dark);
  padding: 32px 10%;
}
.footer-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
footer .cafe-name {
  color: #fff;
  font-weight: 700;
}
footer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .about { gap: 40px; }
  .cards, .menu-row, .why-row { gap: 16px; }
  .contact-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .menu-icon { display: flex; cursor: pointer; }
  .cafe-name { font-size: 2rem; }
  .nav-links {
    position: absolute;
    top: 72px;
    right: 0;
    width: 220px;
    background: var(--pink-light);
    flex-direction: column;
    padding: 12px 0;
    display: none;
    box-shadow: var(--box-shadow);
    border-radius: 0 0 var(--round) var(--round);
    border: 1px solid var(--border);
    z-index: 1000;
  }
  .nav-links.active {
    display: flex;
  }

  .nav-links li a { display: block; padding: 10px 24px; }

  .cards, .menu-row, .why-row,.about,.contact-inner { flex-direction: column; }

  .footer-middle { flex-direction: column; }
}
@media (max-width: 480px) {
  .navbar { padding: 0 5%; }
  .home-section h1 { font-size: 2.3rem; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}
