/* Basic Styles */

h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 3em;
  color: #bfa64b; /* Golden title */
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background-color: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav a {
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  padding: 40px;
  text-align: center;
  background: #ddd;
}

footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 5px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

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

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.photo-grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid #3a5a40; /* Deep Gucci green */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid a:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Lightbox Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  border: 6px solid #3a5a40;
}

.close, .prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.close {
  top: 20px;
  right: 30px;
  font-size: 2em;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/* Dark Mode */
.dark-mode {
  background-color: #121212;
  color: #f1f1f1;
}

.dark-mode header,
.dark-mode footer {
  background-color: #1e1e1e;
  color: #f1f1f1;
}

.dark-mode a {
  color: #9ecbff;
}

#toggle-theme {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: white;
}

/* Contact Section */
.contact-container {
  text-align: center;
  padding: 40px 20px;
  background-color: #f1f1f1;
  border-radius: 10px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-icons a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
}

.social-icons a:hover {
  color: #0073e6;
}

/* Lightbox overlay animation */
#lightboxModal {
  transition: opacity 0.3s ease;
}

/* 📱 Mobile Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  #toggle-theme {
    top: 10px;
    right: 10px;
    font-size: 1rem;
  }
}

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

}

.camera {
  font-size: 4rem;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  transition: transform 0.2s ease;
}
.camera:active {
  transform: scale(0.95);
}

#flash {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0.8;
  z-index: 999;
}


@media (max-width: 768px) {
  .camera {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: 0px; /* adjust so it doesn't overlap footer */
  }
}


