/*
Theme Name: Syren
Version: 1.0
*/

/* Variables */
:root {
	--light: #ffffff;
	--whipped: #F8F4EF;
	--flare: #B6131B;
	--dark: #1A1A1A;
}

/* Backgrounds */
.light-bg {
	background-color: var(--light);
}
.whipped-bg {
	background-color: var(--whipped);
}
.flare-bg {
	background-color: var(--flare);
}
.dark-bg {
	background-color: var(--dark);
}

/* Lenis Scrolling */

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* Body */
body {
	font-size: 16px;
}

/* Typo */
h1 {
	font-size: 4rem;
}
h2 {
	font-size: 3rem;
}
h3 {
	font-size: 2.5rem;
}
h4 {
	font-size: 2rem;
}

/* Header */
.main-header {
  position: fixed;
  top: 20px;
  width: 100%;
  z-index: 999;
}
.main-logo {
  width: 100px;
  transition: all 0.3s ease;
  opacity: 1;
}
.main-logo.is-switching {
  opacity: 0;
}
.header-scrolled .main-logo {
  width: 60px;
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-toggle span {
  display: block;
  height: 2px;
  transition: all 0.3s ease;
}
.header-dark .menu-toggle span {
  background: var(--dark)
}
.header-light .menu-toggle span {
  background: var(--light)
}
.menu-toggle.active span {
  background: var(--dark) !important;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* --- Fullscreen Menu --- */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f9f3ed;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-menu.open {
  transform: translateY(0);
}
.menu-content {
  width: 90%;
  max-width: 800px;
  text-align: left;
}
.main-nav-links {
  list-style: none;
  padding: 0;
  margin-bottom: 80px;
}
.main-nav-links li {
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
}
.main-nav-links li a {
  text-decoration: none;
  font-size: 24px;
  display: block;
  padding: 10px 0;
  color: #000;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.menu-footer .left a,
.menu-footer .right a {
  text-decoration: underline;
  color: #000;
}

/* Content Blocks */
/* Home Banner */
.home-banner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: left;
  color: var(--dark);
  text-align: left;
  position: relative;
  z-index: 1;
}
.home-banner.is-sticky {
  position: sticky;
  top: 0;
}
.home-banner .highlight {
  color: var(--flare);
}
.banner-heading {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(30px);
  transition: all 0.3s ease;
}



/* Unity Feature */
.unity-feature-outer {
  position: relative;
  z-index: 2;
  background-color: var(--flare);
}
.unity-feature .unity-list p {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

