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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  overflow-x: hidden;
}

/* HEADER */
header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #7e22ce;
  font-weight: 700;
}

.navbar a {
  text-decoration: none;
  color: #333;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #7e22ce;
}

/* GALLERY SECTION */
.gallery {
  padding: 60px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease-out;
}

.gallery-item.show {
  opacity: 1;
  transform: scale(1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* FOOTER CONTACT SECTION */
footer {
  background: linear-gradient(135deg, #7e22ce, #a855f7);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

footer.show {
  opacity: 1;
  transform: translateY(0);
}

footer h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

footer p {
  margin-bottom: 20px;
  font-size: 1rem;
}

/* CONTACT SECTION FIX */
#contact {
  background: #fff;
  color: #333;
  padding: 80px 20px;
  text-align: center;
}

#contact h2 {
  color: #7e22ce;
}

/* Make labels and text dark enough to be visible */
label {
  color: #333;
}

/* Make input fields visible on white background */
input, textarea {
  background: #f9f9f9;
  color: #333;
  border: 1px solid #ccc;
}

input:focus, textarea:focus {
  border-color: #7e22ce;
  box-shadow: 0 0 5px rgba(126, 34, 206, 0.3);
}

/* FOOTER FIX */
footer {
  background: linear-gradient(135deg, #7e22ce, #b26ce7);
  color: #fff;
  padding: 40px 0;
  text-align: center;
  margin-top: 50px;
}

/* Social icons */
footer .social-icons a {
  color: #7e22ce;
  font-size: 1.5rem;
  margin: 0 12px;
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: #f0d7ff;
}

form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  font-size: 1rem;
}

input:focus, textarea:focus {
  border-color: #7e22ce;
  box-shadow: 0 0 5px rgba(126, 34, 206, 0.3);
}

.btn-submit {
  background: linear-gradient(135deg, #7e22ce, #b26ce7);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #6b21a8, #9d4edd);
}

#form-status {
  margin-top: 15px;
  font-weight: 500;
  color: #333;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox.active {
  display: flex;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
}