:root {
  --primary: #0B1525;
  --secondary: #B49D4F;
}

body {
  margin: 0;
  font-family: 'Figtree', sans-serif;
  background-color: var(--primary);
  color: white;
  background-image: url('images/background-test.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}

/* Add transparent color overlay using ::before */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0.85; /* Adjust for transparency level */
  z-index: -1; /* Behind all content */
  pointer-events: none; /* So it doesn't block links or clicks */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

.header {
  /* background-color: var(--primary); */
  text-align: center;
  padding: 4rem 0 2rem;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.header p {
  font-size: 1.25rem;
  color: #ccc;
}

.info h2,
.gallery h2,
.contact-section h2 {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ddd;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Air Bnb pop up Coming soon styling */
/* Overlay backdrop */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 21, 37, 0.85); /* dark transparent */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Content box */
.popup-content {
  background-color: #0B1525;
  color: #fff;
  font-family: 'Figtree', sans-serif;
  border: 2px solid #B49D4F;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: 90%;
  width: 300px;
  animation: fadeIn 0.3s ease-in-out;
}

/* Button */
.popup-content button {
  background-color: #B49D4F;
  color: #0B1525;
  font-weight: bold;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  margin-top: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Figtree', sans-serif;
}

.popup-content button:hover,
.popup-content button:focus {
  background-color: #f0e6b1;
  outline: none;
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hide utility */
.hidden {
  display: none;
}

