/* GLOBAL STYLES */
body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: white;
  color: #333;
}

h1, h2, .brand {
  font-family: 'Dancing Script', cursive;
}

a {
  text-decoration: none;
  color: inherit;
}

.fuchsia-bold {
  font-size: 1.6rem;
  color: #c2185b;
  font-weight: bold;
}

/* HEADER */
.header-image {
  width: 50%;
  height: auto;
  object-fit: cover;
}

header {
  border: 5px solid #c2185b;
  border-radius: 15px;
}

.header-overlay {
  position: relative;
  text-align: center;
}

.hero-overlay-text {
  position: absolute;
  top: 60%; 
  left: 50%;
  transform: translate(-50%, -50%);
  color: #c2185b;
  font-size: clamp(1.5rem, 5vw, 1.5rem);
  font-weight: bold;
  
  z-index: 10;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-bar a {
  margin: 0.5rem;
  color: #d63384;
  font-weight: bold;
}

.btn-pink {
  background: #fc46aa;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  display: inline-block;
  margin-top: 1rem;
}

.btn-pink:hover {
  background: #c01c6c;
}

/* DELICACIES */
#delicacies {
  background: white;
  padding: 3rem 1rem;
  text-align: center;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.5s;
  position: relative;
  perspective: 1000px;
}

.slideshow {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.slideshow img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: none;
}

.slideshow img.active {
  display: block;
}

.card-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 1.3rem;
  color: #d63384;
  font-weight: bold;
  text-shadow: 1px 1px white;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
}

/* GALLERY */
#gallery {
  background: linear-gradient(135deg,#ffe3ed,#ffc0cb);
  padding: 3rem 1rem;
  text-align: center;
}

.insta-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 2rem;
}

.insta-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
  border: 3px solid #c2185b;
}

.insta-gallery img:hover {
  transform: scale(1.05);
}

.insta-icons small {
  display: none;
}

/* MODAL IMAGE BIGGER */
.modal-content li img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 400px;
  border-radius: 12px;
}

/* ABOUT */
#about {
  background: white;
  padding: 3rem 1rem;
  text-align: center;
}

#about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
}

/* ORDER */
#order {
  background: linear-gradient(135deg,#ffe3ed,#ffc0cb);
  padding: 3rem 1rem;
  text-align: center;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

input, select, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

select[multiple] {
  height: auto;
  min-height: 120px;
}

select.order-type option:checked {
  background-color: pink;
  color: white;
}

/* TESTIMONIALS */
#testimonials {
  background: white;
  padding: 3rem 1rem;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: #ffc0cb; 
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
}

.testimonial-card span {
  font-weight: bold;
  color: #d63384;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
}

.modal-content {
  background: #ffe0ec;
  border: 2px solid #c2185b;
  border-radius: 24px;
  padding: 3rem 2rem;
  border-radius: 24px;
  width: 95%;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: flipIn 0.4s ease forwards;
}

.modal-content ul li {
  margin: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #444;
}

.modal-content li img {
  display: block;
  margin: 0 auto;
}

.modal-content h2 {
  color: #d63384;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
}

@keyframes flipIn {
  from {
    transform: rotateY(90deg);
    opacity: 0;
  }
  to {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipOut {
  from {
    transform: rotateY(0deg);
    opacity: 1;
  }
  to {
    transform: rotateY(90deg);
    opacity: 0;
  }
}

/* FOOTER */
footer {
  background: pink;
  padding: 1rem;
  text-align: center;
  color: #000;
}

/* TOP BAR */
.top-bar {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 2000;
  border-bottom: 1px solid #eee;
}

.top-brand {
  color: #c2185b;
  font-weight: bold;
}

.hamburger {
  font-size: 1.5rem;
  cursor: pointer;
  color: #c2185b;
  font-weight: bold;
}

/* DROPDOWN MENU */
.dropdown-menu {
  display: none;
  flex-direction: column;
  background: white;
  position: fixed;
  top: 58px;
  left: 10px;
  z-index: 1999;
  padding: 0.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dropdown-menu a {
  padding: 0.5rem;
  color: #c2185b;
  font-weight: bold;
}

.dropdown-menu a:hover {
  background: #c2185b;
  color: white;
  border-radius: 4px;
}

/* HEADER TEXT COLOR */
header {
  display: flex;
  flex-direction: column;
}

/* ORDER CHECKBOX STYLES */
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #c2185b;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #c2185b;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: '✕';
  color: #fff;
  background-color: #c2185b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  position: absolute;
  inset: 0;
  border-radius: 4px;
}

/* FORM INPUT BORDER COLOR */
input[type="text"],
input[type="tel"],
input[type="date"],
select,
textarea {
  border: 2px solid #c2185b;
}

/* CALENDAR STYLING */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: hue-rotate(320deg);
}

input[type="date"] {
  background: white;
  color: #c2185b;
  cursor: pointer;
}

/* CONTACT BACKGROUND */
#contact {
  background: pink;
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact p, #contact a {
  font-size: 1.1rem;
  color: #c2185b;
  font-weight: bold;
  margin: 0.5rem 0;
}

#contact a {
  color: deeppink;
  font-weight: bold;
}

#contact a:focus,
#contact a:active {
  color: fuchsia;
}

.section-heading {
  color: #c2185b;
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

#thank-you-modal h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #c2185b;
}