/* WEDDING DESSERT DEMO #15 - SWEET PINK PALETTE */
:root {
  --color-primary: #faf6f3;
  --color-secondary: #d946a6;
  --color-accent: #ec4899;
  --color-dark: #6b4c5c;
  --color-light: #fff9f5;
  --color-border: #f5d5e8;
  --color-success: #f472b6;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background: linear-gradient(135deg, #fff9f5 0%, #ffe8f6 100%);
  line-height: 1.6;
  min-height: 100vh;
}

.demo-bar {
  background: rgba(107, 76, 92, 0.95);
  color: var(--color-light);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 2px solid var(--color-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.demo-bar a {
  color: var(--color-success);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.demo-bar a:hover { color: var(--color-light); text-decoration: underline; }

header {
  background: var(--color-primary);
  border-bottom: 2px solid var(--color-border);
  position: sticky;
  top: 60px;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(217, 70, 166, 0.08);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
}

.nav-menu a:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

.menu-toggle { display: none; }
.menu-label { display: none; cursor: pointer; color: var(--color-dark); font-size: 1.5rem; }

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; color: var(--color-secondary); text-align: center; }
h2 { font-size: 2rem; border-bottom: 3px solid var(--color-success); padding-bottom: 0.75rem; color: var(--color-dark); }
h3 { font-size: 1.5rem; color: var(--color-secondary); }
h4 { font-size: 1.1rem; color: var(--color-accent); }

p { margin-bottom: 1rem; line-height: 1.7; }

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover { color: var(--color-accent); text-decoration: underline; }

.hero {
  background: linear-gradient(135deg, rgba(217, 70, 166, 0.1) 0%, rgba(244, 114, 182, 0.08) 100%);
  color: var(--color-dark);
  padding: 4rem 2rem;
  text-align: center;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 3rem;
}

.hero h1 { color: var(--color-secondary); font-size: 3rem; margin-bottom: 1rem; text-shadow: none; }
.hero h2 { border: none; padding-bottom: 0; color: var(--color-dark); }
.hero p { font-size: 1.2rem; color: var(--color-accent); margin-bottom: 2rem; font-style: italic; }

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(217, 70, 166, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 70, 166, 0.4);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--color-border);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s;
  text-align: center;
}

.card:hover {
  background: white;
  border-color: var(--color-secondary);
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(217, 70, 166, 0.15);
}

.card h3 { margin-top: 1rem; margin-bottom: 0.5rem; }
.card-icon {
  color: var(--color-secondary);
  width: 48px;
  height: 48px;
  margin: 0 auto 0.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-card {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.08) 0%, rgba(236, 72, 153, 0.05) 100%);
  border-left: 4px solid var(--color-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.service-card:hover {
  border-left-color: var(--color-accent);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(217, 70, 166, 0.1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.service-card h4 { margin-top: 0; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.menu-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.menu-item:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 6px 16px rgba(217, 70, 166, 0.2);
  transform: translateY(-4px);
}

.menu-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 2px solid var(--color-border);
}

.menu-item h4 {
  padding: 1rem 1rem 0.5rem;
  margin: 0;
}

.menu-item p {
  padding: 0 1rem 1rem;
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.price-table {
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(217, 70, 166, 0.08);
}

thead {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: white;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

tbody tr:hover {
  background: rgba(217, 70, 166, 0.05);
}

tbody tr:last-child td {
  border-bottom: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #ffc0e5 0%, #ff6b9d 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  border: 2px solid var(--color-border);
  transition: all 0.3s;
}

.gallery-item:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 8px 24px rgba(217, 70, 166, 0.2);
  transform: scale(1.05);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.testimonial {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.08) 0%, rgba(255, 209, 232, 0.1) 100%);
  border-left: 4px solid var(--color-success);
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.testimonial:hover {
  border-left-color: var(--color-secondary);
  box-shadow: 0 4px 12px rgba(217, 70, 166, 0.1);
}

.testimonial p:first-child {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial p:last-child {
  color: #999;
  font-size: 0.85rem;
  margin: 0;
}

form {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem auto;
}

.form-group { margin-bottom: 1.5rem; }

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

input, textarea, select {
  width: 100%;
  padding: 0.85rem;
  border: 2px solid var(--color-border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-dark);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.3s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: white;
  box-shadow: 0 0 0 3px rgba(217, 70, 166, 0.1);
}

textarea { resize: vertical; min-height: 120px; }

button {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: white;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  width: 100%;
  font-size: 0.95rem;
}

button:hover {
  box-shadow: 0 4px 12px rgba(217, 70, 166, 0.3);
  transform: translateY(-2px);
}

ul, ol { margin-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; line-height: 1.6; }

footer {
  background: var(--color-dark);
  border-top: 3px solid var(--color-secondary);
  color: var(--color-light);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

footer p { margin-bottom: 0.5rem; font-size: 0.9rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.footer-links a { color: var(--color-success); }

.text-center { text-align: center; }
.text-light { color: var(--color-light); }
.text-accent { color: var(--color-secondary); }
.text-small { font-size: 0.85rem; opacity: 0.9; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .menu-label { display: block; }
  .menu-toggle:checked ~ nav .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-primary);
    padding: 1rem 0;
    z-index: 98;
  }
  .menu-toggle:checked ~ nav .nav-menu li { border-bottom: 1px solid var(--color-border); }
  .menu-toggle:checked ~ nav .nav-menu a { padding: 0.75rem 1rem; display: block; }
  nav .nav-menu { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  main { padding: 1rem 0.5rem; }
  section { padding: 1.5rem 1rem; margin-bottom: 2rem; }
}

@media (max-width: 480px) {
  :root { font-size: 14px; }
  .hero { padding: 2rem 1rem; }
  .hero h1 { font-size: 1.5rem; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  .logo { font-size: 1.1rem; }
  .cta-button { padding: 0.7rem 1.5rem; font-size: 0.8rem; }
  .demo-bar { font-size: 0.75rem; gap: 0.75rem; }
  table { font-size: 0.85rem; }
  th, td { padding: 0.75rem 0.5rem; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

section { animation: fadeIn 0.6s ease-out; }
