/* ------------------ Base Styles ------------------ */

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background: linear-gradient(-45deg, #1b2b1f, #2e4b2f, #153b2a, #0f2418);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  min-height: 100vh;
}




/* ------------------ Header & Logo ------------------ */

.site-header {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo-link {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo-img {
  height: 200px;
  width: auto;
}

/* ------------------ Desktop Navigation ------------------ */

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}


.gallery-container {
  display: flex;
  flex-direction: column; /* 👈 stacks your image links vertically */
  align-items: center;
  padding: 40px 20px;
  gap: 40px; /* spacing between portal links */
}



.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  position: relative;
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

}

.project-card:hover img {
  transform: scale(1.02);
}

.project-title {
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* ------------------ See More Card ------------------ */

.see-more-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  color: #111;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.see-more-card:hover {
  background-color: #ddd;
}

.see-more-content {
  text-align: center;
  padding: 40px;
}

/* ------------------ Background Animation ------------------ */

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }

}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.form-wrapper {
  border: 2px solid #ffffff55; /* soft white with a little transparency */
  padding: 40px 30px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #e0e0e0; /* light gray */
  color: #111; /* dark text */
  font-size: 1rem;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form button {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #45a049;
}

}
.section-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #ffffff22, #ffffff88, #ffffff22);
  margin: 60px auto;
  width: 80%;
}

.rabbit-hole-promo {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.rabbit-hole-promo a {
  display: block;
  max-width: 1000px;
  width: 100%;
  transition: transform 0.3s ease;
}

.rabbit-hole-promo a:hover {
  transform: scale(1.02);
}

.rabbit-hole-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.section-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #ffffff22, #ffffff88, #ffffff22);
  margin: 60px auto;
  width: 80%;
}
.landing-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
}

.landing-links a {
  display: block;
  max-width: 800px;
  width: 100%;
  transition: transform 0.3s ease;
}

.portal-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.landing-links a:hover {
  transform: scale(1.02);
}
.landing-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.landing-subtitle {
  font-size: 1.2rem;
  color: #ccc;
}
.back-button-wrapper {
  text-align: left;
  padding: 20px;
}

.back-button {
  background-color: transparent;
  color: #fff;
  border: 1px solid #ffffff44;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff88;
  transform: translateX(-4px);
}
.buy-button {
  background-color: #4caf50;
  color: #fff;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  display: inline-block;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #45a049;
}
.static-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.static-gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
}
