body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-y: auto;
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
   color: #F9E9CC; 
}
body, html {
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../Assets/Images/background.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* no dark overlay */
    z-index: -1;
}

.container {
  width: 100%;
  max-width: 900px;
  padding: 40px 20px 100px;
  box-sizing: border-box;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 2s forwards;
  color: #ffffff;
}

.logo {
  width: 75%;
  max-width: 450px;
  margin: 0 auto 20px;
  display: block;
  opacity: 0;
  animation: fadeIn 3s forwards ease-in-out; /* 3s = slower fade for logo */
}

/* Existing keyframes for logo/container */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Navigation */
.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* adjust spacing between items */
}

.nav-link {
  background: rgba(0, 0, 0, 0.4);
  color: #F9E9CC;
  font-weight: 700;
  text-shadow: 1px 1px 0 #6B4A2B; /* sharp, offset brown shadow */
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.3s ease, transform 0.1s ease;
  text-decoration: none;
}

.nav-link:hover {
  background: rgba(0, 255, 200, 0.649);
  color: #F9E9CC;
  transform: translateY(-1px);
  box-shadow: 0 0 8px rgba(0, 255, 200, 0.30);
  text-shadow: 2px 2px 0 #6B4A2B;
}

h1, h2, h3 {
  font-weight: 700;
  color: #F9E9CC;              /* same light-cream tone as logo */
  text-shadow: 2px 2px 0 #6B4A2B; /* sharp, zero-blur brown shadow */
  margin-bottom: 20px;
  letter-spacing: 0.5px;       /* optional: helps clarity with hard shadow */
}

/* Page content */
.page-wrapper {
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.35);
    color: #F9E9CC; 
  border-radius: 16px;
  padding: 25px 20px;
  box-sizing: border-box;
  border: none;
  opacity: 0;
  /* Faster fade-out */
  transition: opacity 0.6s ease-in-out;
}

/* When visible, override transition for slower fade-in */
.page-wrapper.visible {
  opacity: 1;
  transition: opacity 1.8s ease-in-out;
}

.page-wrapper h1 {
  text-shadow: 2px 2px 0 #6B4A2B;
}

.page-wrapper p {
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 0 16px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 2s forwards 1.5s;
  z-index: 1;
    color: #F9E9CC;
}

.instagram-icon, .youtube-icon {
  width: 40px;
  height: 40px;
  margin: 0 8px;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* Responsive */
@media (max-width: 600px) {
  .nav-link {
    font-size: 0.95rem;
    padding: 8px 12px;
  }

  .page-wrapper {
    padding: 20px;
  }
  .page-wrapper h1 {
    font-size: 1.5rem;
  }

  .page-wrapper p {
  margin-bottom: 2em; /* adds extra space between paragraphs */
  line-height: 1.6;     /* improves readability */
}
}


.inline-link {
  color: #F9E9CC;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.inline-link:hover {
  color: #cccccc;
}

.logo-link {
  display: inline-block;
}

/* Contact form layout */

.contact-form {
  max-width: 720px;
  margin: 0 auto 10px;
  text-align: left;           /* controls field layout */
}

.contact-row {
  margin-bottom: 1.4em;
}

.contact-row--two {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-row--two .contact-field {
  flex: 1 1 0;
}

.contact-field {
  width: 100%;
}

.contact-label {
  display: block;
  margin-bottom: 0.35em;
  font-size: 0.95rem;
  font-weight: 600;
  color: #F9E9CC;
  text-shadow: 2px 2px 0 #6B4A2B;
}

/* Inputs */

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(249, 233, 204, 0.7);
  background: transparent;
  color: #F9E9CC;
  font-size: 0.95rem;
  box-sizing: border-box;
  outline: none;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: #F9E9CC;
  box-shadow: 0 0 0 2px rgba(0, 255, 200, 0.35);
}

/* Dropdown select */

.contact-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}

/* Message box */

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Helper text */

.contact-help {
  margin-top: 0.4em;
  font-size: 0.85rem;
  color: rgba(249, 233, 204, 0.8);
}

.contact-help-inline {
  display: block;
  font-size: 0.8rem;
  color: rgba(249, 233, 204, 0.85);
}

/* Checkbox */

.contact-row--checkbox {
  text-align: left;
}

.contact-checkbox-label {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.contact-checkbox-input {
  margin-top: 3px;
}

.contact-checkbox-text {
  font-size: 0.95rem;
  color: #F9E9CC;
}

/* Submit button */

.contact-submit {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #F9E9CC;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-shadow: 2px 2px 0 #6B4A2B;
  box-shadow: 0 0 8px rgba(0, 255, 200, 0.3);
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
  background: rgba(0, 255, 200, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.45);
}

/* Note at the bottom */

.contact-note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(249, 233, 204, 0.85);
}

/* Make form centre nicely on small screens */

@media (max-width: 600px) {
  .contact-form {
    text-align: left;
  }

  .contact-row--two {
    flex-direction: column;
  }
}

.form-status {
  opacity: 0;
  animation: fadeIn 1s forwards ease-in-out;
  font-size: 1rem;
  text-shadow: 2px 2px 0 #6B4A2B;
}