/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f6f5; /* Fallback color */
  min-height: 100vh;
}

.page-wrapper {
  min-height: 100vh;
  width: 100%;
  /* Assuming bg-image.png is the background showing the house and wavy shapes */
  background-image: url("bg-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Container to handle the left-side content */
.content-overlay {
  max-width: 700px;
  width: 100%;
  padding: 0.3rem 4rem 2rem;
  border-radius: 12px;
}

/* Logo */
.logo-section {
  text-align: center;
}

.logo {
  max-width: 250px;
  height: auto;
}

/* Typography */
.text-section {
  text-align: center;
}

/* Logo Text Styles */
.logo-text {
  text-align: center;
  margin-top: -1rem;
}

.logo-title {
  font-size: 3rem;
  color: #033642; /* Dark Teal */
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 1.1;
}

.logo-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5d7a3c;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 4px;
  margin: 0.5rem 0;
}

.logo-subtitle .line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #5d7a3c;
  margin: 0 12px;
}

.logo-motto {
  font-size: 0.75rem;
  color: #033642;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.motto-part {
  text-align: center;
  display: inline-block;
  line-height: 1.3;
}

.mobile-break {
  display: none;
}

.text-leaf {
  color: #5d7a3c;
  font-size: 0.8rem;
}

.logo-location {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5d7a3c;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
}

.logo-location .line {
  display: inline-block;
  width: 150px;
  height: 1px;
  background-color: #5d7a3c;
  margin: 0 10px;
}

.title {
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  color: #033642; /* Dark Teal */
  font-weight: 700;
  margin-bottom: -0.5rem;
  margin-top: -1rem;
  letter-spacing: -1px;
}

.coming-soon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0.5rem 0 1rem; */
}

.coming-soon-divider .line {
  flex-grow: 1;
  height: 2px;
  background-color: #5d7a3c;
  max-width: 230px;
}

.coming-soon-divider .text-leaf-divider {
  color: #5d7a3c;
  font-size: 0.9rem;
  margin: 0 15px;
}

.subtitle {
  font-size: 1.8rem;
  color: #5d7a3c; /* Olive Green */
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.info-block {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.info-icon {
  width: 45px;
  height: 45px;
  border: 1px solid #5d7a3c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5d7a3c;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.info-text {
  font-size: 0.95rem;
  color: #444;
  padding-left: 1.5rem;
  border-left: 1px solid #ccc;
}

.strong-text {
  font-weight: 700;
  color: #000;
  margin-bottom: 0.2rem;
}

/* Contact Block */
.contact-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: #033642;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.1rem;
  margin-right: 1rem;
}

.contact-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #033642;
}

.contact-link {
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .page-wrapper {
    padding: 0rem;
    background-position: right center; /* Adjust if needed */
  }

  .content-overlay {
    padding: 2rem 1rem;
    background-color: rgba(
      255,
      255,
      255,
      0.9
    ); /* Add white background on small screens for readability */
  }

  .mobile-break {
    display: block;
  }

  .logo-motto {
    gap: 0.8rem;
  }

  .motto-part {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .title {
    font-size: 3.5rem;
  }

  .subtitle {
    font-size: 1.4rem;
  }

  .info-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: none;
    padding-left: 0;
  }

  .info-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* Badge Container */
.badge-container {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0.5rem 1rem;
}

.badge-text {
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 1px;
  margin-right: 0.5rem;
}

.badge-icon {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
}

.page-wrapper {
  position: relative; /* Make sure absolute badge positions correctly */
}
