@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --color-mother: #d4a5a5;
  --color-father: #a5b5d4;
  --bg-color: #fcfcfc;
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  overflow: hidden; /* Prevent scrolling on landing page */
  height: 100vh;
  width: 100vw;
}

.landing-container {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.split {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.split:hover {
  flex: 1.2;
}

.split-mother {
  background-color: var(--color-mother);
}

.split-father {
  background-color: var(--color-father);
}

.split::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.split:hover::before {
  opacity: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  transform: translateY(20px);
  opacity: 0.8;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.split:hover .content {
  transform: translateY(0);
  opacity: 1;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

p {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.decorator {
  width: 40px;
  height: 2px;
  background-color: var(--text-light);
  margin: 15px auto;
  transition: width 0.4s ease;
}

.split:hover .decorator {
  width: 80px;
}

.split-mother::after, .split-father::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  z-index: 0;
  transition: transform 10s linear;
}

.split:hover::after {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .landing-container {
    flex-direction: column;
  }
  
  .split {
    width: 100%;
  }

  h1 {
    font-size: 3rem;
  }
}
