/* ========= Root / Colors ========= */
:root {
  --pink: #ff8ec7;
  --pink-2: #ffd1e8;
  --ink: #222;
  --bg: #fff7fb;
  --card: #fff;
  --ring: rgba(255, 142, 199, 0.35);
}

/* ========= Global Styles ========= */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========= Fonts / Titles ========= */
strong,
h1,
h2,
h3,
.brand strong {
  font-family: "Birthstone", cursive;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.brand strong {
  font-size: 1.6rem;
  color: var(--pink);
  text-shadow: 1px 1px 2px rgba(255, 142, 199, 0.3);
}

/* ========= Header / Navigation ========= */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 107px;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffe6f1;
  border-radius: 50%;
}

.logo img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

.subtitle {
  font-size: 0.85rem;
  font-weight: 400;
  color: #666;
}

.links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.links a {
  padding: 8px 10px;
  border-radius: 999px;
}

.links a:hover {
  background: var(--pink-2);
}

/* ========= Hero Section ========= */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 50px 0;
}

.hero-text h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 0.3em;
  color: var(--pink);
}

.hero-text p {
  line-height: 1.6;
}

.badge {
  background: var(--pink-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.quote {
  margin-top: 14px;
  font-style: italic;
  color: #444;
}

.hero-img img {
  border-radius: 16px;
  border: 3px solid var(--pink-2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ========= Buttons ========= */
.btn {
  border: none;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 20px var(--ring);
  transition: 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn.secondary {
  background: var(--pink-2);
  color: #222;
  box-shadow: none;
}

/* ========= Menu Section ========= */
.menu h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--pink);
  margin-bottom: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid #eee;
  padding: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.card img {
  border-radius: 12px;
  margin-bottom: 10px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card .price {
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 8px;
}

/* ========= About Section ========= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 60px;
  background: #fff;
  padding: 40px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.about-text h2 {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 12px;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-photo img {
  width: 100%;
  border-radius: 16px;
  border: 3px solid var(--pink-2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo img {
    max-width: 80%;
    margin: 0 auto;
  }
}

/* ========= Contact Section ========= */
.contact {
  text-align: center;
  margin-top: 60px;
}

.contact h2 {
  color: var(--pink);
  margin-bottom: 10px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e7e7e7;
  background: #fff;
}

/* ========= Footer ========= */
footer {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 60px;
  padding: 20px;
}

