/* Modern CSS for Coming Soon template */

/* Reset and base styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.2;
  background-color: #000000;
  color: #ffffff;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

a {
  color: #29ABE2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.White a {
  color: #8E8E8E;
}

.White a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.page-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background */
.background-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.feather-image {
  opacity: 0.17;
  max-width: 663px;
  margin-top: -61px;
}

/* Header */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 31px;
}

.logo-container {
  margin-bottom: 10px;
}

.logo {
  width: 388px;
  max-width: 100%;
}

.tagline {
  font-size: 12px;
  letter-spacing: 2px;
  text-align: center;
  color: #FFFFFF;
  font-weight: normal;
}

/* Main content */
main {
  flex: 1;
  margin-top: 40px;
}

.content-wrapper {
  background-color: #29ABE2;
  padding: 30px 0;
  margin-top: 125px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.content-wrapper::before,
.content-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #FFFFFF;
}

.content-wrapper::before {
  top: -10px;
}

.content-wrapper::after {
  bottom: -10px;
}

.heading-container {
  width: 380px;
  margin-left: 70px;
}

.main-heading {
  font-size: 75px;
  line-height: 0.9;
  text-align: right;
  font-weight: normal;
  margin-bottom: 30px;
}

.sub-heading {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.8;
  text-align: right;
  padding-right: 10px;
}

/* Countdown */
.countdown-container {
  width: 350px;
  height: 174px;
  margin-right: 70px;
  border: 2px solid #FFFFFF;
  background-color: #000;
  color: #fff;
}

.countdown {
  display: flex;
  justify-content: space-around;
  padding: 30px 10px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-size: 40px;
  margin-bottom: 10px;
}

.countdown-label {
  font-size: 14px;
  text-transform: uppercase;
}

.countdown-credit {
  display: block;
  font-size: 8px;
  font-weight: bold;
  color: #444;
  text-align: left;
  padding-left: 19px;
  margin-top: 10px;
}

/* Form */
.form-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

#subscription-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  justify-content: center;
}

.form-field {
  margin: 0 10px 20px;
  position: relative;
  width: 290px;
}

.form-field label {
  display: block;
  color: #29ABE2;
  margin-bottom: 5px;
}

.form-field input {
  width: 100%;
  padding: 6px;
  border: 1px solid #C4C4C4;
  background-color: #F2F2F2;
  font-family: Georgia, Times, serif;
  font-style: italic;
  color: #4F4F4F;
}

.form-field input:hover,
.form-field input:focus {
  border-color: #6B6B6B;
  background-color: #FFFFFF;
}

.form-messages {
  width: 100%;
  text-align: center;
  height: 20px;
  margin-bottom: 10px;
}

.form-message {
  display: none;
  font-size: 14px;
}

#sending-message {
  color: #29ABE2;
}

#error-message {
  color: #D7244C;
}

#success-message {
  color: #999999;
}

.submit-button {
  background-color: #29ABE2;
  color: #FFFFFF;
  border: 1px solid #6B6B6B;
  border-radius: 2px;
  padding: 7px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  border: 3px solid #FFFFFF;
}

.submit-button:active {
  background-color: #404040;
}

/* Footer */
footer {
  margin-top: 60px;
  text-align: center;
}

.footer-separator {
  width: 920px;
  max-width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  margin: 0 auto;
  margin-bottom: 10px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
  width: 920px;
  max-width: 100%;
}

.footer-text {
  color: #FFFFFF;
  font-size: 13px;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
}

.social-icon {
  width: 32px;
  height: 32px;
  margin-left: 10px;
}

.footer-pricing {
  color: #8E8E8E;
  font-size: 10px;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 20px;
}

.footer-credit {
  color: #8E8E8E;
  font-size: 10px;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 25px;
}

/* Responsive design */
@media (max-width: 960px) {
  .page-container {
    padding: 20px;
  }
  
  .heading-container,
  .countdown-container {
    margin: 0 auto;
  }
  
  .content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    flex-direction: column;
    width: 100%;
  }
  
  .social-links {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 50px;
  }
  
  .form-field {
    width: 100%;
  }
}