@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

:root {
  --primary-green: rgb(36, 48, 36);
  --white: rgb(255, 255, 255);
  --overlay-dark: rgba(0, 0, 0, 0.4);
  --accent-green: rgb(75, 165, 75);
  --editorial-red: rgb(255, 255, 255);
}

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

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Minimalist video background with contrast overlay */
.videoHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
  
.videoHeader video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85);
}

.videoHeader::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

/* Editorial grid layout */
.natucoru {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 2;
  
  /* Bold asymmetrical grid */
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas: 
    "logo . ."
    "phrase phrase phrase"
    ". buttons buttons";
  padding: 2vw;
}

/* Minimalist logo positioning */
.logoContainer {
  grid-area: logo;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 3vh;
  margin-left: 3vw;
}

.logoContainer--logo {
  width: 120px;
  height: auto;
  border: none;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
  transition: filter 0.4s ease;
}

.logoContainer--logo:hover {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

/* Bold editorial typography */
.phraseContainer {
  grid-area: phrase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.editorial-marker {
  position: absolute;
  left: 8vw;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 40%;
  background-color: var(--editorial-red);
}

.phraseContainer h2 {
  color: var(--white);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 70%;
  text-align: left;
  line-height: 1;
  padding-left: 10vw;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Minimalist button layout */
.buttonsContainer {
  grid-area: buttons;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  padding-right: 8vw;
}

/* Bold editorial button design */
.siteButtons {
  display: flex;
  align-items: center;
}

.buttonlink {
  padding: 0 25px;
  height: 56px;
  text-decoration: none;
  background-color: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  
  border: 2px solid var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.button-text {
  position: relative;
  z-index: 2;
}

.buttonlink::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--white);
  z-index: 1;
  transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.buttonlink:hover {
  color: var(--primary-green);
}

.buttonlink:hover::before {
  width: 100%;
}

/* BOLD EDITORIAL MOBILE DESIGN */
@media (max-width: 768px) {
  /* Editorial split composition */
  .videoHeader::after {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.4) 100%
    );
  }
  
  .natucoru {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
    display: block;
    padding: 0;
  }
  
  /* Bold minimalist logo */
  .logoContainer {
    position: fixed;
    top: 25px;
    left: 25px;
    margin: 0;
    z-index: 10;
  }
  
  .logoContainer--logo {
    width: 75px;
    transform: rotate(0deg);
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .logoContainer--logo:hover {
    transform: rotate(-3deg);
  }
  
  /* Bold editorial typography */
  .phraseContainer {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }
  
  .editorial-marker {
    left: 0;
    width: 8px;
    height: 30vh;
  }
  
  .phraseContainer h2 {
    font-size: 2.2rem;
    line-height: 1.05;
    text-align: left;
    max-width: 85%;
    padding-left: 25px;
    margin-left: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    
    /* Editorial text treatment */
    color: var(--white);
    text-shadow: 0px 2px 20px rgba(0, 0, 0, 0.5);
  }
  
  /* Minimalist button container */
  .buttonsContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    z-index: 5;
  }
  
  .siteButtons {
    width: 100%;
  }
  
  .buttonlink {
    width: 100%;
    height: 52px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 3px solid var(--editorial-red);
    border-radius: 0;
    
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    justify-content: flex-start;
    padding-left: 20px;
    
    transition: all 0.3s ease;
  }
  
  .buttonlink:hover {
    border-color: var(--white);
    background-color: transparent;
    color: var(--white);
    transform: translateX(5px);
  }
  
  .buttonlink::before {
    display: none;
  }
}

/* Extra small device refinements */
@media (max-width: 480px) {
  .phraseContainer h2 {
    font-size: 1.8rem;
    padding-right: 20px;
  }
  
  .logoContainer--logo {
    width: 65px;
  }
  
  .editorial-marker {
    height: 25vh;
  }
  
  .buttonsContainer {
    padding: 20px;
  }
  
  .buttonlink {
    height: 48px;
    font-size: 0.85rem;
  }
}