/* General Page Styles */
body {
  background: #030118;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.top-imageD {
  margin: 20px auto;
  width: 70%;
  aspect-ratio: 1344 / 400;
}

.top-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  object-fit: cover;
  object-position: center;
}
.map {
  position: relative;
  width: 100%;
  height: 500px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map .SVGB {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  transform: rotate(180deg); 
}

.SVGA .Wave1\.1 {
  fill: #0f001aa8;
}

.SVGA .Wave1\.2 {
  fill: #0f001aa8;
}

.SVGA .Wave1\.3 {
  fill: #0F001A;
}

/* Bottom wave (below map) */
.SVGA {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100px;
}

.SVGB .Wave2\.1 {
  fill: #1A2E2CDE;
}

.SVGB .Wave2\.2 {
  fill: #2E1A23DE;
}

.SVGB .Wave2\.3 {
  fill: #1a1a2e;
}
.FlowerLeft {
  float: left;
}

.FlowerRight {
  float: right;
}
h1 {
  color: #444;
  margin-bottom: 15px;
  text-align: center;
  font-family: 'KASTROO', sans-serif;
  font-size: 40px;
  color: #939C9D;
}
h2 {
  color: #f7e0f6;
  margin-bottom: 15px;
  text-align: center;
  font-family: 'KG Primary Italics', sans-serif;
}
h3 {
  color: #444;
  margin-bottom: 15px;
  text-align: center;
}

/* Intro text */
.intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #555;
  font-family: 'KG Primary Italics', sans-serif;
}

/* Contact Form */
.contact-form {
  margin-bottom: 40px;
  border: 4px solid #0F0C37;
  border-radius: 12px;
  background: #081320;
  box-shadow: 0px 4px 14px #dcbdee;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #23DCF6;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Ethnocentric', sans-serif;
}

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

.contact-form button {
  padding: 12px;
  background: #015a86;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 20px;
  font-family: 'Vampire Wars', sans-serif;
  font-size: 20px;
}

.contact-form button:hover {
  background: #5ac1b5;
}
/* Base style for the response message */
.response-message {
  margin-top: 12px;
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: opacity 0.5s ease;
}

/* Success state */
.response-message.success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

/* Error state */
.response-message.error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

/* Info / loading state */
.response-message.info {
  color: #0c5460;
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
}

/* Hidden state for fade-out */
.response-message.hidden {
  opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }
.map {
    height: 300px; /* shorter height on mobile */
  }
  .contact-form form, {
    width: 100%;
  }
}
