/* Global */
body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #000;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.logo img {
  height: 120px;
}

/* Header */
header {
  width: 100%;
  padding: 20px 0;
  background-color: #fff;
  text-align: center;
  border-bottom: 2px solid #a8d0e0;
}

/* Main Layout */
main {
  flex: 1;
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
}

.content-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.form-section {
  flex: 1;
  text-align: left;
}

.image-section {
  flex: 1;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Form container */
.form-container {
  background-color: #f9f9f9;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-title {
  color: #000;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
}

/* Mailchimp Overrides */
#mc_embed_signup {
  background: transparent;
  width: 100% !important;
  font-family: "Poppins", sans-serif !important;
  color: #000 !important;
}

#mc_embed_signup h2 {
  color: #000;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

#mc_embed_signup label {
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  display: block;
  text-align: left;
  font-size: 0.95rem;
}

#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"],
#mc_embed_signup input[type="tel"] {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  outline: none;
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background-color: #fff;
}

#mc_embed_signup input:focus {
  border-color: #a8d0e0;
  box-shadow: 0 0 0 2px rgba(168, 208, 224, 0.2);
}

#mc_embed_signup .button {
  background-color: #a8d0e0 !important;
  color: #000 !important;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 10px;
}

#mc_embed_signup .button:hover {
  background-color: #91c5d8 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#mc-embedded-subscribe.button{
height: 80px;}

#mce-success-response {
  color: #000;
  background-color: #a8d0e0;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

/* Image Section */
.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-container:hover .cover-image {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: white;
  padding: 40px 30px 30px;
}

.image-overlay h3 {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.image-overlay p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

/* Footer */
footer {
  padding: 25px 0;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
  background: #fff;
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .form-section, 
  .image-section {
    width: 100%;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  .image-container {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .form-container {
    padding: 25px;
  }
  
  h1 {
    font-size: 1.9rem;
  }
  
  .image-overlay h3 {
    font-size: 1.5rem;
  }
  
  .image-overlay p {
    font-size: 0.9rem;
  }
}