:root {
  --primary-color: #6e56cf;
  --secondary-color: #2e2e48;
  --accent-color: #9f7aea;
  --background-color: #f8f7fc;
  --text-color: #333;
  --scroll: 0;
  --image-transition: 500ms ease-in-out;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.scroll-watcher {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  transform: scaleX(var(--scroll));
  transform-origin: left;
  z-index: 1000;
  transition: transform 200ms ease-out;
}

.full-screen-section {
  min-height: 100vh;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.top-section {
  grid-column: 1;
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  max-width: 50%;
  margin: 0;
  z-index: 20;
  margin-top: 6rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-section {
  grid-column: 1;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  max-width: 50%;
  margin: 0;
  z-index: 20;
}

.imgs {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
}

.imgs img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--image-transition);
}

.imgs .show {
  opacity: 1;
}

/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.navbar.hide {
  transform: translateY(-100%);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

.dropdown, .dropdown-menu {
  display: none;
} */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .full-screen-section {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .top-section,
  .timeline-section {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .imgs {
    width: 100vw;
    height: 50vh;
    top: auto;
    bottom: 0;
  }

  .navbar {
    padding: 1rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
  
  .top-section {
    margin-top: 5rem;
  }
}
