

/* Initial hidden state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When active (in view) */
.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}


.parallax {
  position: relative;
  width: 100%;
  height: 300px;
  background-attachment: scroll;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

/* old above */


 /* Reset */
    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px; /* default is usually 16px */
      line-height: 1.5; /* keep text comfortable to read */
      color: #ffffff;
    }

    body {
  overflow-y: auto;
}


    /* Layout */
    .container {
      display: flex;
      flex-direction: row;
      height: 100vh;
    }

    .left {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      background: #000000;
      text-align: center;
    }

    .left img.logo {
      max-width: 200px;
      height: auto;
      margin-bottom: 1.5rem;
    }

    .left h1 {
      font-size: 2.5rem;
      font-weight: 700; /* Bold from Google Fonts */
      margin-bottom: 1rem;
    }

    .left p {
      max-width: 420px;
      font-size: 1.2rem;
      line-height: 1.6;
    }

    .right {
      flex: 1;
      display: flex;
    }

    .right img {
      width: auto;
      height: 100%;
      object-fit: contain; /* fills height, keeps proportions */
      display: block;
      margin: 0 auto;
    }

    /* Mobile stack */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }
      .right {
        height: 40vh;
      }
      .right img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* fallback for mobile */
      }
    }

    .title {
      text-align: center;
      margin-top: 0.1rem;   /* tighten space above title */
      margin-bottom: 0.5rem;  /* keep space before the paragraph */
    }


    .title .main {
      display: block;
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: 2px;
    }

    .title .sub {
      display: block;
      font-size: 1.4rem;
      font-weight: 400;
      letter-spacing: 4px;
    }

    .logo {
  display: inline-block;
  background-color: white;
  padding: 10px 50px;
  border-radius: 4px; /* optional */
}

.logo img {
  max-width: 100%;   /* make image shrink with container */
  height: auto;      /* keep proportions */
  display: block;    /* removes tiny gap below img */
}

.title {
  text-align: center;
  margin: 0 0 1rem;
}

.title .main {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.title .sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 4px;
}

.contact {
  margin-top: 1.5rem;    /* space above the email */
  font-size: 1.1rem;     /* slightly larger for readability */
}

.contact a {
  color: #fff;            /* white text if your body is dark */
  text-decoration: underline; /* optional: underline to indicate link */
}

.contact a:hover {
  color: #f0c040;         /* optional: hover color */
}


