@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

body {
  font-family: "IBM Plex Sans", sans-serif;
}

/* Utilities */
.font-montserrat {
  font-family: "IBM Plex Sans", sans-serif;
}
.font-inter {
  font-family: "IBM Plex Sans", sans-serif;
}

/* LANDING PAGE STYLES */

/* Button */
.landing-btn {
  background-color: #111827;
  color: white;
  padding: 16px 48px;
  border-radius: 9999px; /* Full pill */
  font-weight: 500;
  font-size: 1.125rem; /* text-lg */
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
}

.landing-btn:hover {
  background-color: #000;
  /* Reduced hover visual shift, mostly color */
}

/* Gallery Grid - Replaced overlapping stack */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 Columns */
  gap: 16px; /* Space between cards */
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  height: auto;
}

.gallery-card {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  /* No default rotation */
  transform: none;
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom checkbox style for premium feel */
.checkbox-checked {
  background-color: #0f172a;
  border-color: #0f172a;
}
