/* -----------------------------------------------------
   GLOBAL STYLES
----------------------------------------------------- */

:root {
  --pink: #ff4fa3;
  --yellow: #ffd84d;
  --teal: #2ecfcf;
  --red: #ff4d4d;
  --purple: #b57aff;
  --orange: #ff9a3c;
  --green: #4ccf7f;
  --blue: #4da8ff;

  --dark: #333;
  --light: #fff;
  --gray: #f5f5f5;

  --radius: 12px;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --transition: 0.25s ease;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--gray);
  color: var(--dark);
  line-height: 1.6;
}

/* -----------------------------------------------------
   HEADER + NAVIGATION
----------------------------------------------------- */

.site-header {
  background: var(--light);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-circle {
  width: 55px;
  height: 55px;
  background: var(--pink);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
}

.logo-text h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.logo-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.main-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--pink);
}

/* -----------------------------------------------------
   HERO SECTIONS
----------------------------------------------------- */

.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(0,0,0,0.45);
  padding: 20px 30px;
  border-radius: var(--radius);
  color: var(--light);
}

.hero-title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
}

.hero-button {
  background: var(--pink);
  color: var(--light);
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.hero-button:hover {
  background: var(--yellow);
  color: var(--dark);
}

/* -----------------------------------------------------
   SECTIONS
----------------------------------------------------- */

.section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--pink);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

/* -----------------------------------------------------
   FEATURED GRID (Home Page)
----------------------------------------------------- */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.featured-card {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--dark);
  overflow: hidden;
  transition: var(--transition);
}

.featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.featured-card h3 {
  margin: 15px;
  font-size: 20px;
  color: var(--pink);
}

.featured-card p {
  margin: 0 15px 20px;
  color: #555;
}

.featured-card:hover {
  transform: translateY(-5px);
}

/* -----------------------------------------------------
   GALLERY
----------------------------------------------------- */

.gallery-hero {
  margin: 50px 0 20px;
}

.gallery-hero img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.gallery-item {
  background: var(--light);
  border-radius: var(--radius);
  padding: 15px;
  box-shadow: var(--shadow);
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: var(--radius);
  height: 220px;
  object-fit: cover;
}

.gallery-item h4 {
  margin-top: 12px;
  color: var(--pink);
}

/* -----------------------------------------------------
   MENU PAGE
----------------------------------------------------- */

.menu-section {
  margin-bottom: 60px;
}

.menu-heading {
  font-size: 26px;
  color: var(--pink);
  margin-bottom: 15px;
}

.menu-photo {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  background: var(--light);
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* -----------------------------------------------------
   FORMS (Quote + Contact)
----------------------------------------------------- */

form {
  max-width: 600px;
  margin: auto;
}

label {
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid #ccc;
  margin-top: 8px;
  font-size: 16px;
}

.button,
button {
  background: var(--pink);
  color: var(--light);
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.button:hover,
button:hover {
  background: var(--yellow);
  color: var(--dark);
}

.upload-note {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* -----------------------------------------------------
   ABOUT PAGE
----------------------------------------------------- */

.about-photo-wrap {
  text-align: center;
  margin: 30px 0;
}

.about-photo {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-subheading {
  font-size: 22px;
  color: var(--pink);
  margin-top: 30px;
}

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */

.site-footer {
  text-align: center;
  padding: 30px;
  background: var(--light);
  margin-top: 40px;
  box-shadow: var(--shadow);
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */

@media (max-width: 700px) {
  .hero-title {
    font-size: 22px;
  }

  .hero {
    height: 320px;
  }
}