* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
  flex-direction: row;
}

.left {
  flex: 1;
  background: url('img/bg%20image.jpeg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
    padding: 20px;
}

.countdown {
  display: flex;
  gap: 30px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

.countdown div span {
  font-size: 48px;
  display: block;
}

.right {
  flex: 1;
  background: #f3eadf;
  color: #5a3c21;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  align-items: center;
  text-align: center;
}

.logo-img {
  width: 400px;
  margin-bottom: 55px;
}

h2 {
  font-size: 24px; font-family: cursive;
  letter-spacing: 8px;
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtext {
  font-size: 18px;
  margin-bottom: 30px;
}

.email-box {
  display: flex;
  max-width: 400px;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.email-box input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
}

.email-box button {
  background: #b26a1c;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: bold;
}

.social-icons {
  font-size: 21px;
  margin-bottom: 20px;
}

.social-icons i {
  margin: 0 15px;
  cursor: pointer;
  transition: color 0.3s ease;
    color: #5a3c21;
}

.social-icons i:hover {
  color: #b26a1c;
}

.contact-info {
  font-size: 16px;
}

@media (max-width: 576px) {
  .email-box {
    flex-direction: column;
    border-radius: 10px;
    box-shadow: none;
  }

  .email-box input,
  .email-box button {
    width: 100%;
    border-radius: 0;
    padding: 10px;
  }

  .email-box button {
    border-top: 1px solid #ccc;
  }

  .countdown {
    flex-direction: column;
    gap: 10px;
  }

  .countdown div span {
    font-size: 28px;
  }

  .countdown div small {
    font-size: 12px;
  }
    .logo-img {
  width: 200px;
  margin-bottom: 25px;
}
    .social-icons {
        font-size: 14px;}
    .social-icons i {
        margin: 0 10px;}
    h2 {
  font-size: 14px;
}
    h1 {
  font-size: 18px;
}
    .subtext {
  font-size: 13px;
  margin-bottom: 10px;
}
}