.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 20, 20, 0.98);
  display: flex;
  flex-direction: row;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.fullscreen-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.fullscreen-modal .close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}
.fullscreen-modal .modal-content {
  display: flex;
  flex: 1 1 0;
  height: 100vh;
}
.fullscreen-modal .modal-nav {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 3vw;
  padding-bottom: 3vw;
}
.fullscreen-modal .modal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}
.fullscreen-modal .modal-nav a {
  color: #fff;
  font-size: 2.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  line-height: 1.1;
}
.fullscreen-modal .modal-nav a.active,
.fullscreen-modal .modal-nav a:hover {
  color: var(--primary, #ff3c00);
}
.fullscreen-modal .modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 3vw;
  color: #fff;
  gap: 2.5rem;
  padding-bottom: 3vw;
}
.fullscreen-modal .modal-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fullscreen-modal .modal-info p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.85;
}
.fullscreen-modal .modal-info a {
  color: #fff;
  font-size: 2rem;
  margin-right: 1rem;
  vertical-align: middle;
  transition: color 0.2s;
}
.fullscreen-modal .modal-info a:hover {
  color: var(--primary, #ff3c00);
}
@media (max-width: 900px) {
  .fullscreen-modal .modal-content {
    flex-direction: column;
  }
  .fullscreen-modal .modal-nav,
  .fullscreen-modal .modal-info {
    align-items: center;
    padding-left: 0;
    text-align: center;
  }
  .fullscreen-modal .modal-nav ul {
    align-items: center;
  }
}


@media (max-width: 300px) {
  .nav-links {
    display: none;
  }

  .nav{
    padding-right: 0px !important;
  }
  
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.social-modal-links .social-icon {
  text-decoration: none;
}

/*a {
  text-decoration: none;
  color: inherit;
}*/

/*.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(242,237,230,0.85);[
  
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px 0 rgba(24,24,24,0.07);
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
*/

.header.scrolled {
  background: rgba(242,237,230,0.97);
  box-shadow: 0 4px 24px 0 rgba(24,24,24,0.13);
}

