/* ------------------------------
   Global reset
---------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  background-color: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ------------------------------
   Header
---------------------------------*/
header {
  background: linear-gradient(to bottom, #d8cdd1, #f1c2c6);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}

header h1 {
  font-size: 26px;
  margin: 0;
}

header h2 {
  font-size: 16px;
  margin: 0;
  font-weight: 400;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav img {
  height: 24px;
  width: 24px;
}

/* Hide hamburger on desktop */
.menu-toggle,
.hamburger,
.nav-toggle {
  display: none !important;
}

@media (max-width: 768px) {
  .menu-toggle,
  .hamburger,
  .nav-toggle {
    display: block !important;
  }
}

/* ------------------------------
   Hero
---------------------------------*/
.hero {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  padding: 0 20px;
}

.hero-img {
  border-radius: 50%;
  object-fit: cover;
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto 20px auto;
}

.hero img:not(.hero-img) {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* ------------------------------
   Footer
---------------------------------*/
footer {
  background: linear-gradient(to bottom, #f1c2c6, #d8cdd1);
  padding: 10px;
  text-align: center;
  margin-top: auto;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.socials img {
  width: 40px;
  height: 40px;
}

/* ------------------------------
   WhatsApp Floater
---------------------------------*/
.floater {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
}

/* ------------------------------
   Gallery
---------------------------------*/
.gallery {
  text-align: center;
  padding: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 90%;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  justify-self: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* ------------------------------
   Work cards (index)
---------------------------------*/
.work-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.card h3,
.card p {
  text-align: center;
  margin-top: 12px;
}

.work-cards .card a,
.work-cards .card a:link,
.work-cards .card a:visited,
.work-cards .card a:hover,
.work-cards .card a:active,
.work-cards .card a:focus {
  color: #333 !important;
  text-decoration: none !important;
}

/* ------------------------------
   Buttons
---------------------------------*/
.cta-button {
  display: block;
  width: fit-content;
  margin: 30px auto 60px;
  padding: 12px 25px;
  background: #f1c2c6;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.15s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  text-align: center;
}

.cta-button:hover {
  background: #d8cdd1;
  transform: translateY(-1px);
}

/* ------------------------------
   Forms
---------------------------------*/
form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  text-align: left;
  font-weight: 500;
}

form input,
form textarea,
form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  padding: 12px;
  border: none;
  background: #f1c2c6;
  color: #333;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.15s ease;
}

form button:hover {
  background: #d8cdd1;
  transform: translateY(-1px);
}

/* ------------------------------
   Appointment pages
---------------------------------*/
.appointment {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.appointment h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.appointment p {
  margin-bottom: 20px;
}

.appointment .disclaimer {
  font-size: 0.95rem;
  color: #b33;
  margin-bottom: 30px;
}

.form-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.form-image img {
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  display: block;
}

.appointment form {
  flex: 1;
  text-align: left;
}

@media (max-width: 768px) {
  .form-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .appointment form {
    width: 100%;
    text-align: left;
  }
}
