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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

select, option, button, input, textarea {
  font-family: "Montserrat", sans-serif;
}

p {
  line-height: 150%;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
nav .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .nav-logo {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 300;
}
nav .nav-logo strong {
  color: #D4AF37;
}
@media screen and (max-width: 768px) {
  nav .nav-items {
    overflow-y: auto;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 768px) and (max-height: 500px) {
  nav .nav-items {
    justify-content: flex-start !important;
    align-items: center;
    gap: 1.5rem;
  }
}
nav .nav-items a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  padding: 0.5em;
  font-weight: 500;
}
nav .nav-items a:hover {
  color: #D4AF37;
}
nav .nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  filter: invert(100%);
  z-index: 1002;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
nav .nav-toggle:focus, nav .nav-toggle:active {
  outline: none;
}

.hero {
  position: relative;
  height: 75dvh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 2em;
}
.hero .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/header.webp");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.6);
  z-index: -2;
}
.hero .hero-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: -1;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  padding: 2rem;
}
.hero .logo-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 5rem;
}
@media screen and (min-width: 768px) {
  .hero .logo-anim {
    font-size: 10rem;
  }
}
.hero .logo-anim .logo-dj {
  display: inline-block;
  opacity: 0;
  animation: dj-entry 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
}
.hero .logo-anim .logo-name {
  display: inline-block;
  margin-left: 1.5rem;
  font-weight: 200;
  letter-spacing: 0.5rem;
  clip-path: inset(0 100% 0 0);
  animation: name-reveal 1.2s 0.6s ease-out forwards;
}
.hero .hero-heading {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
  opacity: 0;
  animation: fade-in 1s 1.8s forwards;
  white-space: normal;
  word-wrap: break-word;
  max-width: 90vw;
  margin: 0 auto;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .hero .hero-heading {
    font-size: 3.5rem;
    max-width: 800px;
  }
}
.hero .hero-heading span {
  color: #D4AF37;
  display: inline-block;
  white-space: nowrap;
}
.hero .hero-cta {
  display: inline-block;
  margin-top: 3rem;
  padding: 1.2rem 3.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fade-in 1s 2s forwards;
}
.hero .hero-cta:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 159, 0, 0.4);
  transform: translateY(-3px);
}
.hero .hero-cta:active {
  transform: translateY(-1px);
}

@keyframes dj-entry {
  0% {
    opacity: 0;
    transform: scale(3) rotate(-10deg);
  }
  70% {
    opacity: 1;
    transform: scale(0.9) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes name-reveal {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: translateX(-20px);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}
.about {
  background-color: #030407;
  background: linear-gradient(to bottom, #000000 0%, #030407 15%);
  padding: 8rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .about {
    padding: 12rem 0;
  }
}
.about__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .about__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8rem;
  }
}
.about__visuals {
  position: relative;
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  order: 2;
}
@media screen and (min-width: 992px) {
  .about__visuals {
    flex: 1;
    order: 1;
  }
}
.about__img-box {
  position: relative;
  width: 90%;
}
.about__main-img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.about__img-decoration {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  z-index: 1;
  transition: transform 0.3s ease;
}
.about__certificate {
  position: absolute;
  bottom: -35px;
  right: -15px;
  background: #fff;
  color: #000;
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 3;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .about__certificate {
    bottom: -45px;
    right: -30px;
    padding: 1.5rem 2.2rem;
  }
}
.about__certificate {
  transition: transform 0.3s ease;
}
.about__certificate .about__cert-icon {
  width: 25px;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .about__certificate .about__cert-icon {
    width: 32px;
    height: 32px;
  }
}
.about__certificate .about__cert-text p {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
}
.about__certificate .about__cert-text span {
  font-size: 1rem;
  color: #555;
  display: block;
}
.about__content {
  width: 100%;
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .about__content {
    flex: 1.2;
    order: 2;
    align-items: flex-start;
    text-align: left;
  }
}
.about__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  line-height: 1.1;
}
.about__title span {
  color: #D4AF37;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 4rem;
  }
}
.about__text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3rem;
  font-weight: 300;
}
.about__text strong {
  color: #fff;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 1.7rem;
  }
}
.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  justify-items: center;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .about__features {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .about__features {
    justify-items: start;
  }
}
.about__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .about__feature {
    flex-direction: row;
    text-align: left;
  }
}
.about__feature img {
  width: 20px;
  height: 20px;
  filter: invert(75%) sepia(80%) saturate(1000%) hue-rotate(5deg);
}
.about__feature p {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.about .btn--about-cert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
  padding: 1.2rem 3rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  background: transparent;
}
.about .btn--about-cert img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
.about .btn--about-cert:hover {
  background-color: #D4AF37 !important;
  border-color: #D4AF37;
  color: #000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}
.about .btn--about-cert:hover img {
  filter: brightness(0);
  transform: rotate(5deg);
}
.about .btn--about-cert:active {
  transform: translateY(-1px);
}

.events {
  background-color: #ffffff;
  padding: 10rem 0;
  color: #000;
}
.events__header {
  text-align: center;
  margin-bottom: 6rem;
}
.events__header .section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1rem;
}
.events__header .section-title span {
  color: #D4AF37;
}
.events__header .section-subtitle {
  font-size: 1.6rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.event-card {
  background: #f9f9f9;
  padding: 4rem 3rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #eee;
  cursor: default;
}
.event-card:hover {
  background: #000;
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #000;
}
.event-card:hover .event-card__icon {
  filter: brightness(0) invert(62%) sepia(94%) saturate(3000%) hue-rotate(15deg) brightness(103%) contrast(101%);
}
.event-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}
.event-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 2rem;
  filter: grayscale(1) brightness(0);
  transition: all 0.3s ease;
}
.event-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.event-card p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  transition: color 0.3s;
}

.offers {
  background-color: #030407;
  padding: 10rem 0;
  color: #fff;
}
.offers__header {
  text-align: center;
  margin-bottom: 6rem;
}
.offers__header .section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1rem;
}
.offers__header .section-title span {
  color: #D4AF37;
}
.offers__header .section-subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}
.offers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .offers__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 4rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.offer-card:hover {
  transform: translateY(-5px);
}
.offer-card__head {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.offer-card__head h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.offer-card__head .price {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.offer-card__list {
  list-style: none;
  margin-bottom: 4rem;
  flex-grow: 1;
}
.offer-card__list li {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
.offer-card__list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #D4AF37;
  margin-top: 2px;
}
.offer-card__list li.highlight {
  color: #D4AF37;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(255, 159, 0, 0.3);
}
.offer-card--premium {
  border-color: #D4AF37;
  box-shadow: 0 0 30px rgba(255, 159, 0, 0.05);
  background: linear-gradient(180deg, rgba(255, 159, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}
.offer-card--premium .offer-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #D4AF37;
  color: #000;
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.offer-card--premium .offer-card__head h3 {
  color: #D4AF37;
}

.btn {
  display: block;
  text-align: center;
  padding: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn--outline:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}
.btn--solid {
  background: #D4AF37;
  color: #000;
  border: 1px solid #D4AF37;
}
.btn--solid:hover {
  background: transparent;
  color: #D4AF37;
}

.reviews {
  background-color: #030407;
  padding: 10rem 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.reviews__header {
  text-align: center;
  margin-bottom: 6rem;
}
.reviews__header .section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.reviews__header .section-title span {
  color: #D4AF37;
}
.reviews__header .section-subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.reviews__container {
  max-width: 1200px;
  margin: 0 auto;
}

.equipment {
  background-color: #ffffff;
  color: #000;
  padding: 10rem 0;
  overflow: hidden;
}
.equipment__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .equipment__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8rem;
  }
}
.equipment__content {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .equipment__content {
    flex: 1.1;
    text-align: left;
  }
}
.equipment__content .section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 800;
}
.equipment__content .section-title span {
  color: #D4AF37;
}
@media screen and (min-width: 768px) {
  .equipment__content .section-title {
    font-size: 3.5rem;
  }
}
.equipment__text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}
.equipment__text:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .equipment__text {
    font-size: 1.6rem;
  }
}
.equipment__visuals {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .equipment__visuals {
    flex: 1;
    margin-top: 0;
  }
}
.equipment__img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.equipment__img:hover {
  filter: grayscale(0%);
}
.equipment__decoration {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid #D4AF37;
  z-index: 1;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .equipment__decoration {
    top: 15px;
    right: -15px;
  }
}

.gallery {
  background-color: #030407;
  padding: 10rem 0;
  color: #fff;
}
.gallery__header {
  text-align: center;
  margin-bottom: 6rem;
}
.gallery__header .section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.gallery__header .section-title span {
  color: #D4AF37;
}
.gallery__header .section-subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: 1rem;
  grid-auto-flow: dense;
}
@media screen and (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
  }
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #111;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery__item:nth-child(4) {
    grid-column: span 2;
  }
  .gallery__item:nth-child(7) {
    grid-row: span 2;
  }
  .gallery__item:nth-child(10) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery__item:nth-child(14) {
    grid-column: span 2;
  }
  .gallery__item:nth-child(18) {
    grid-row: span 2;
  }
}
.gallery__item:hover .gallery__img {
  transform: scale(1.08);
}
.gallery__item:hover::after {
  opacity: 1;
}
.gallery__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #D4AF37;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  box-sizing: border-box;
}
.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  border: 2px solid #D4AF37;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.active .lightbox__img {
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 5rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1001;
}
.lightbox__close:hover {
  color: #D4AF37;
}

.contact {
  background-color: #ffffff;
  padding: 10rem 0;
  color: #000;
}
.contact__header {
  text-align: center;
  margin-bottom: 6rem;
}
.contact__header .section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1rem;
}
.contact__header .section-title span {
  color: #D4AF37;
}
.contact__header .section-subtitle {
  font-size: 1.6rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.contact-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.contact-card:hover {
  background: #000;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #000;
}
.contact-card:hover .contact-card__icon {
  filter: brightness(0) invert(62%) sepia(94%) saturate(3000%) hue-rotate(15deg) brightness(103%) contrast(101%);
}
.contact-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}
.contact-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 2rem;
  filter: grayscale(1) brightness(0);
  transition: all 0.3s ease;
}
.contact-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.contact-card p {
  font-size: 1.4rem;
  color: #666;
  transition: color 0.3s;
  font-weight: 500;
}

.footer {
  background-color: #030407;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  letter-spacing: 0.5px;
}
.footer__credits {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer__credits span {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.footer__credits span:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .nav-items {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }
  .nav-items.active {
    right: 0;
  }
  .nav-items a {
    font-size: 2.4rem;
    color: white;
  }
}
@media screen and (min-width: 768px) {
  nav .nav-toggle {
    display: none;
  }
  nav .nav-items {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    background: transparent;
  }
}/*# sourceMappingURL=style.css.map */