@font-face {
    font-family: 'Batolah';
    src: url('../fonts/Batolah.woff2') format('woff2'),
         url('../fonts/Batolah.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h3 {
	font-size: 40px;
}

.coming-soon-template {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f8f5ef;
    padding: 80px 20px;
}

.coming-soon-card {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 56px 40px;
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}

.coming-soon-title {
  font-family: 'Batolah', Arial, sans-serif;
  font-size: 80px;
  line-height: 0.9;
  color: #E41E10;
  margin: 0 0 20px;
  padding: 17px;
  background: #fff;
  border-radius: 40px;
  border: 16px solid #1AA84C;
  max-width: 510px;
}

.coming-soon-text {
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    max-width: 520px;
    margin: 0 auto 32px;
}

.wpcf7 {
    max-width: 520px;
    margin: 0 auto 32px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 999px;
    padding: 14px 20px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #1e1e1e;
    background: #ffffff;
    outline: none;
}

.wpcf7 textarea {
    border-radius: 20px;
    min-height: 120px;
}

.wpcf7 input[type="submit"] {
    border: 0;
    border-radius: 999px;
    background: #1e1e1e;
    color: #ffffff;
    padding: 14px 32px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.coming-soon-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.coming-soon-socials a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1e1e1e;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.coming-soon-socials a:hover {
    color: #ffffff;
    opacity: 0.85;
    transform: translateY(-2px);
}

input#event-date {
  padding: 14px;
  border-radius: 30px;
}

.wpcf7 p {
  text-align: left;
}

@media (max-width: 767px) {
    .coming-soon-template {
        padding: 40px 20px;
    }

    .coming-soon-card {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .coming-soon-text {
        font-size: 16px;
    }
}