body {
  font-family: 'Playfair Display', serif;
  background: #f8f8f8;
  color: #333;
  margin: 0;
  padding: 0;
}

.navbar {
  position: sticky;
  top: 0;
  background: #5B2C91;
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  transition: all 0.4s ease;
  z-index: 1000;
}

.navbar.shrink {
  padding: 0.7rem 2rem;
}

.site-title {
  font-family: 'Monoton', cursive;
  color: #fff;
  font-size: 3rem;
}

.navbar.shrink .site-title {
  font-size: 2rem;
}

.navbar nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.navbar a {
  color: white;
  margin: 0 1rem;
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Dancing Script', cursive;
}

.navbar a:hover {
  color: #FFD700;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

.social-desktop a,
.social-footer a {
  color: white;
  font-size: 2rem;
  margin-left: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-desktop a:hover,
.social-footer a:hover {
  color: #FFD700;
  transform: scale(1.2);
}

header {
  background: linear-gradient(135deg, #5B2C91 0%, #7e48c1 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

header p,
.phone-number {
  font-size: 2rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: 'Dancing Script', cursive;
  color: #5B2C91;
  font-size: 3rem;
}

section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  scroll-margin-top: 80px;
}

.grid {
  column-count: 3;
  column-gap: 1rem;
}

.grid img {
  width: 100%;
  margin-bottom: 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
}

.grid img:hover {
  transform: scale(1.03);
}

.location-section {
  background-color: #5E17EB;
  color: #fff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.location-section h2,
.location-section p,
.location-section a {
  color: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.location-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
  cursor: pointer;
}

.location-grid img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

form input,
form textarea {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #333;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

form button {
  background-color: #5B2C91;
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

form button:hover {
  background-color: #4a1f74;
  transform: scale(1.05);
}

footer {
  background: #333;
  color: white;
  padding: 1rem;
  text-align: center;
  position: relative;
}

/* Hide social-mobile-bar by default on desktop */
.social-mobile-bar {
  display: none;
}

@media (max-width: 768px) {
  .grid {
    column-count: 2;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .site-title {
    text-align: center;
    margin-bottom: 1rem;
  }

  .menu-toggle {
    display: block;
    font-size: 2.5rem;
    margin: 0 auto 1rem auto;
  }

  .navbar nav {
    display: none;
    flex-direction: column;
    background: #5B2C91;
    padding: 2rem 0;
    width: 100%;
    text-align: center;
  }

  .navbar.show-mobile nav.show {
    display: flex;
  }

  .navbar nav.show a {
    margin: 1rem 0;
  }

  .social-desktop {
    display: none;
  }

  /* Show social-mobile-bar ONLY on mobile */
  .social-mobile-bar {
    display: flex;
    background-color: #5B2C91;
    padding: 1rem 0;
    justify-content: center;
    gap: 2rem;
  }

  .social-mobile-bar a {
    color: white;
    font-size: 2rem;
    transition: color 0.3s ease;
  }

  .social-mobile-bar a:hover {
    color: #FFD700;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid {
    column-count: 1;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}
