body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-image: url(../dist/lawn.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Makes the background static */
  margin: 0 0 8vh;
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}
.card .card-body {
  padding: 2rem;
}
.card .card-title {
  color: #FA824C;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.text-white .card {
  color: #FFFFFF;
}

.guest-rsvp {
  background-color: white;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}
.guest-rsvp:hover {
  border-color: #004E98;
}
.guest-rsvp h5 {
  color: #FA824C;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-control {
  border-radius: 6px;
  border: 1px solid #dee2e6;
  padding: 0.75rem;
}
.form-control:focus {
  border-color: #FA824C;
  box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

.form-check-input:checked {
  background-color: #FA824C;
  border-color: #FA824C;
}

.btn {
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn.btn-primary {
  background-color: #FA824C;
  border-color: #FA824C;
}
.btn.btn-primary:hover {
  background-color: rgb(248.6141304348, 95.3532608696, 26.3858695652);
  border-color: rgb(248.6141304348, 95.3532608696, 26.3858695652);
  transform: translateY(-1px);
}
.btn.btn-outline-secondary {
  border-color: #dee2e6;
  color: #6c757d;
}
.btn.btn-outline-secondary:hover {
  background-color: #f8f9fa;
  border-color: #FA824C;
  color: #FA824C;
}

.alert {
  border-radius: 8px;
  border: none;
}
.alert.alert-danger {
  background-color: hsl(11.5714285714, 70%, 100.7843137255%);
  color: rgb(248.6141304348, 95.3532608696, 26.3858695652);
}

.field-error {
  display: block;
  margin-top: 0.25rem;
}

.footer {
  position: fixed;
  background-color: white;
  border-top: 1px solid #dee2e6;
  margin-top: 3rem;
  padding: 1rem 0;
  width: 100%;
  height: 8vh;
  bottom: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .card .card-body {
    padding: 1.5rem;
  }
  .guest-rsvp {
    margin-bottom: 1rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card {
  animation: fadeIn 0.5s ease-out;
}

.btn.loading {
  position: relative;
  color: transparent;
}
.btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.gallery-controls {
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (max-width: 576px) {
  .gallery-controls {
    border-radius: 0 !important;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-shadow: none !important;
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .gallery-controls .card-body {
    padding: 0.5rem 1rem;
  }
}

#photoGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
#photoGrid::after {
  content: "";
  flex-grow: 999;
}

.gallery-card {
  height: 220px;
  min-width: 120px;
  max-width: 380px;
  flex-grow: 1;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
}
.gallery-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.gallery-card.selected {
  outline: 3px solid #FA824C;
  outline-offset: -3px;
}
.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-card .photo-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0.4rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-card .photo-checkbox .form-check-input {
  width: 1.4rem;
  height: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.gallery-card .photo-checkbox .form-check-input:checked {
  background-color: #FA824C;
  border-color: #FA824C;
}
.gallery-card:hover .photo-checkbox, .gallery-card.selected .photo-checkbox {
  opacity: 1;
}
.gallery-card .approve-btn {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.4rem 2.4rem 0.4rem 0.4rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 0.2rem 0.4rem;
  line-height: 1;
  border-radius: 4px;
}
.gallery-card .delete-btn {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.4rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 0.2rem 0.4rem;
  line-height: 1;
  border-radius: 4px;
}
.gallery-card:hover .approve-btn, .gallery-card:hover .delete-btn {
  opacity: 1;
}
.gallery-card .thumbnail-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}
@media (hover: none) {
  .gallery-card .photo-checkbox {
    opacity: 1;
  }
  .gallery-card .approve-btn,
  .gallery-card .delete-btn {
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .gallery-card {
    height: 150px;
    min-width: 90px;
  }
}

#slideshowModal .modal-content {
  background-color: rgba(0, 0, 0, 0.95);
}
#slideshowModal .slideshow-nav {
  opacity: 0.7;
  transition: opacity 0.2s ease;
  padding: 1rem;
}
#slideshowModal .slideshow-nav:hover {
  opacity: 1;
}
#slideshowModal .slideshow-nav.invisible {
  visibility: hidden;
}
#slideshowModal .modal-header,
#slideshowModal .modal-footer {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}
#slideshowModal .modal-footer {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

#selectionCount {
  transition: transform 0.2s ease;
}
#selectionCount:not(.d-none) {
  animation: popIn 0.2s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/*# sourceMappingURL=wedding.css.map */
