body {
    background-color: #E0E5EC; /* Our off-white background */
    min-height: 100vh;
    font-family: 'Merriweather', sans-serif;
}

/* Fontul pentru titluri */
@font-face {
  font-family: 'Grotesk';
  src: url('/assets/fonts/grotesk.ttf') format('truetype');
}

/* Fontul pentru textul de corp (paragrafe) */
@font-face {
  font-family: 'Merriweather';
  src: url('/assets/fonts/merriweather.ttf') format('truetype');
}

.navbar {
  width: 100%;
  position: fixed;
  top: 10px;
  z-index: 999;
}

.navbar-limit {
  max-width: 1920px;
  margin: 0 auto;
}

.navbar-margin {
  position: relative;
  height: 30px;
  margin-left: 50px;
  margin-right: 50px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px; /* Rounded corners are key */
    font-size: 16px;
    font-weight: bold;
    color: #363636;
    cursor: pointer;
    transition: all 0.2s ease-in-out;

    /* Here's the Neomorphism */
    background-color: #E0E5EC; /* Same as the body background */
    box-shadow: 
        /* Bottom-right dark shadow */
        9px 9px 16px rgba(163, 177, 198, 0.6),
        
        /* Top-left light shadow (highlight) */
        -9px -9px 16px rgba(255, 255, 255, 0.5);  
}

.navbar-p {
  position: absolute;
  left: 15px;
  top: 50%;
  font-size: 12px;
  transform: translateY(-50%);
}

.navbar-p.center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.navbar-p.right {
  left: auto;
  position: absolute;
  right: 15px;
  top: 50%;
  font-size: 12px;
  transform: translateY(-50%);
}



.section {
  width: 100%;
}

.section-limit {
  max-width: 1920px;
  margin: 0 auto;
}

.section-margin {
  margin-left: 50px;
  margin-right: 50px;
}

.button {
  padding: 10px 15px 10px 15px;
  background-color: #1c1c1c;
  color: white;
  border-radius: 5px;
}

.title {
  font-family: 'Grotesk';
}




/* section 1 */

#section-1 {
  margin-top: 100px;
}

.section-1-title-wrapper {
  max-width: 900px;
}

.underscore {
  text-decoration: underline;
}

.title.section-1.top {
  font-size: 55px;
  line-height: 63px;
}


.title.section-1.bottom {
  font-size: 55px;
  text-align: right;
  line-height: 63px;
}

.section-1-description {
  max-width: 400px;
  font-size: 14px;
  position: absolute;
  right: 0;
  bottom: 0;
}

#button-section-1 {
  margin-top: 20px;
}

.section-1-text {
  position: relative;
  width: 100%;
}


/* The container for the grid of LEDs */
#matrix-canvas {
    background-color: #000;
    width: 100%;
    height: 250px;
    margin-top: 20px;
    border-radius: 5px;
}








/*SECTION 2*/

#section-2 {
  margin-top: 50px;
}

.section-header {
  overflow: hidden;
}
.section-header-number {
  border: 1px solid #1c1c1c;
  border-radius: 5px;
  width: fit-content;
  float: left;
}

.section-header-number-p {
  margin: 0;
  font-family: 'Grotesk';
  text-transform: uppercase;
  margin: 0;
  padding: 5px 10px 5px 10px;
  font-size: 12px;
  width: fit-content;
}

.section-header-title {
  width: fit-content;
  float: right;
}

.section-header-title-p {
  font-size: 12px;
  line-height: 30px;
}

.section-header-lines {
  float: left;
  margin-left: 50px;
}

.section-header-line-p {
  font-size: 12px;
  font-family: 'Grotesk';
  line-height: 30px;
}

.section-2-title-p {
  text-align: right;
  font-size: 70px;
  text-transform: uppercase;
  margin-top: 50px;
}

#section-2-animation {
  width: 100%;
  height: 220px;
}
