/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@300;400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background: #fdf9f7;
  margin: 0;
  color: #4b2c20;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 2px solid #f1e3d3;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #4b2c20;
  text-decoration: none;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #4b2c20;
  font-weight: 500;
}
nav a:hover {
  color: #c49a6c;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(75,44,32,0.7), rgba(75,44,32,0.7)),
              url('/assets/images/hero-choco.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 15px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}
.btn {
  background: #c49a6c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.btn:hover {
  background: #e88da0;
}
.btn.outline {
  background: transparent;
  border: 2px solid #c49a6c;
  color: #c49a6c;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn.outline:hover {
  background: #c49a6c;
  color: #fff;
}

/* Grid + Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  margin: 15px;
}
.card p {
  margin: 0 15px 15px;
}

/* Footer */
.site-footer {
  background: #4b2c20;
  color: #fdf9f7;
  padding: 30px 20px;
  text-align: center;
}
.site-footer a {
  color: #c49a6c;
  text-decoration: none;
}
.site-footer a:hover {
  color: #e88da0;
}

/* Hero Swiper */
.hero { padding:0; border-radius:0; }
.hero-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(75,44,32,0.6);
}
.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
}
.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
  animation: fadeInUp 1.2s ease;
}
.hero-content .btn {
  animation: zoomIn 1.5s ease;
}

/* Swiper Controls */
.swiper-button-next, .swiper-button-prev {
  color: #fff;
}
.swiper-pagination-bullet-active {
  background: #c49a6c !important;
}

/* Animations */
@keyframes fadeInDown {
  from {opacity:0; transform: translateY(-40px);}
  to {opacity:1; transform: translateY(0);}
}
@keyframes fadeInUp {
  from {opacity:0; transform: translateY(40px);}
  to {opacity:1; transform: translateY(0);}
}
@keyframes zoomIn {
  from {opacity:0; transform: scale(0.8);}
  to {opacity:1; transform: scale(1);}
}


/* Contact Form Styling */
.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fdf9f7;
  font-size: 16px;
  outline: none;
}
.form-group label {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 14px;
  color: #888;
  pointer-events: none;
  transition: 0.3s ease;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 12px;
  color: #c49a6c;
  background: #fff;
  padding: 0 6px;
}
.error-msg {
  color: #d9534f;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
.alert.success {
  background: #e6f8ed;
  color: #256029;
  padding: 10px;
  border-radius: 6px;
  margin-top: 15px;
}
.alert.error {
  background: #fdecea;
  color: #b71c1c;
  padding: 10px;
  border-radius: 6px;
  margin-top: 15px;
}
