/* Reset and base styles */

@import url('https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&display=swap');

html {
  font-size: 20px; /* sets 1rem = 16px */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Ancizar Serif", serif;
  line-height: 1.6;
  background-color: #0a0f2c; /* deep black-blue */
  color: #111;
  padding: 2rem;
}

header {
     background-color: #0a0f2c; /* deep black-blue */
  text-align: center;
  margin-bottom: 0.5rem;
  color: #fff;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
}

p {
    margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.5rem;
  color: #666;
  font-weight: 600;
  font-style: italic;
    color: #bbb; /* soft grey for subtitle */
}

.image-block {
  text-align: center;
  margin-bottom: 30px;
}

.image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

main { 
}

.text-block {
     max-width: 800px; 
    background-color: #f9f9f9;
    font-size: 1rem;
    margin: 2rem auto;
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 1rem 0 0 0; /* Rounded box */
}

.text-box-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.text-box {
  background-color: #f5f5f5;
  color: #222;
  padding: 2rem 2.5rem;
  border-radius: 12px 0 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (min-width: 800px) {
  .text-box-container {
    flex-direction: row;
    justify-content: center;
  }

  .text-box {
    flex: 1 1 300px;
    max-width: 600px;
  }
}



.button-container {
  text-align: center;
  margin-top: 2rem;
}

.register-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #0a0f2c;
  background-color: #f5f5f5; /* soft light to contrast */
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.register-button:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.map-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (9/16 = 0.5625) */
  overflow: hidden;
  max-width: 100%;
  background: #000; /* fallback background */
   border-radius: 12px; /* optional: adds rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* optional: adds shadow */
  margin-bottom:1rem;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}


footer {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
