body {
  font-family:Arial, Helvetica, sans-serif;
  text-align: center;
  background-color: #121212;
  margin: 0;
  padding: 0;
  color:white;
}

.hero{
    position: relative;
    overflow: hidden;
    height: 550px;
}

.hero-image{
    margin: -50px 0px 0px 0px;
    opacity: 60%;
    z-index: 1;
}

#interest-button {
  color:white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 15px 30px;
  font-size: 20px;
  cursor: pointer;
  background-color: #69359C;
  border: none;
  border-radius: 6px;
}

#interest-button:hover {
  background-color: #4A2571;
}

button {
    z-index: 2;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

.submit-button{
  width: 100%;
  padding: 10px;
  background-color: #69359C;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.submit-button:hover {
  background-color: #4A2571;
}

main {
    font-size: large;
    margin: 20px;
    padding: 20px;
}

/* Container */
.about-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 60px 20px;
  color: #f0f0f0;
}

.about-image-and-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.about-image-and-caption img{
  height: 600px !important;
}

.creator-note {
  margin-top: 10px;
  font-size: 1rem;
  color: #aaa;
  text-align: left;
  line-height: 1.5;
}

.bold-link {
  font-weight: bold;
  color: #aaa;

}

.bold-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Overview and Kaieu layout */
.about-overview,
.Kaieu-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  text-align: left;
}

/* Image styling */
.about-overview img,
.Kaieu-section img {
  width: 500px;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Kaieu section border and padding */
.Kaieu-section {
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Text content */
.about-text {
  flex: 1;
  min-width: 250px;
}

.about-text h1{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


.about-text p,
.about-overview p,
.Kaieu-section p {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
  text-align: justify;
}

/* Coming Soon tag */
.coming-soon-tag {
  background-color: #4CAF50;
  color: #fff;
  padding: 4px 10px;
  margin-left: 10px;
  font-size: 0.75em;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  font-family: Arial, Helvetica, sans-serif !important;
}

.toggle-button{
  color:white;
  z-index: 2;
  padding: 15px 30px;
  font-size: 15px;
  cursor: pointer;
  background-color: #69359C;
  border: none;
  border-radius: 6px;
}

.modal-container { 
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1f1f1f;
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  z-index: 1000;
  width: 600px;
  box-sizing: border-box;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
}

/* Use your existing contact form styles */
.contact-form {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.name-row {
  display: flex;
  gap: 10px;
}

.name-row .form-group {
  flex: 1;
}

.form-separator {
  text-align: center;
  font-style: italic;
  color: #666;
}

.contact-form label {
  display: block;
  font-size: 0.95em;
  text-align: left;
  color: #ccc;
  margin-top:10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form button[type="submit"] {
  background-color: #292929;
  color: #ccc;
  border: none;
  border-bottom: 1px solid #666;
  outline: none;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px 4px 0 0;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Placeholder styling */
.contact-form ::placeholder, .contact-form select {
  color: #777;
  font-size: 0.95rem;
}

.contact-form button[type="submit"]{
  border-radius: 4px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom: 2px solid #69359C;
  background-color: #242424;
}

form.contact-form button[type="submit"] {
  background-color: #4CAF50;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form button[type="submit"]:hover {
  background-color: #45a049;
}

.cancel-button {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background-color: #444;
  color: #ccc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: normal;
  transition: background-color 0.3s ease;
}

.cancel-button:hover {
  background-color: #555;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 999; /* below modal but above page */
  display: none;
}

.modal-overlay.show {
  display: block;
}

#header-placeholder, #footer-placeholder {
  width: 100%;
}

/* Donation - from SS.com*/
/* overrides style.cc aboutStyle.css */

.donation-link button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.banner{
  padding: 4px;
  width:100%;
  background-color: #69359C;
}

.donation-link {
  display: flex;
  justify-content: center; /* centers horizontally */
  margin-top: 20px;
}

.donation-link button {
  background-color: #4CAF50;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 1em;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.donation-link button:hover {
  background-color: #45a049;
}


/* Responsive Layout */
@media (max-width: 768px) {
  .about-overview,
  .Kaieu-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-overview img,
  .Kaieu-section img {
    width: 100%;
    max-width: 100%;
  }
}


/* modal */
@media (max-width: 600px) {
  .modal-container {
    width: 90%;
    padding: 20px;
  }

  .name-row {
    flex-direction: column;
    gap: 0;
  }

  .name-row .form-group {
    width: 100%;
  }

  .form-separator {
    margin: 10px 0;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 10px;
  }
}



