#hero {

  height: 100vh;
  width: 100%;
  background: rgb(0, 0, 0);
  display: flex;
  align-items: last baseline;
  justify-content: center;OOOOOOOOOOOOO

}

#hero video {

  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  object-fit: cover;
}


#hero .caption {
  position: relative;
  z-index: 20;
  text-align: center;
  color: white;

}

#hero .button {
  background-color: #00000000;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 26px;
  margin: 4px 2px;
  cursor: pointer;

  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

#hero .button:hover {

  background-color: #ffffff;
  color: black;
}

.hero-title {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.btn {
  background: #e91e63;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  display: inline-block;
  margin: 2rem auto 0;
  left: auto;
  transform: none;
}

.btn:hover {

  background: black;
  color: white;

}



/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Segoe UI', sans-serif;
  color: #eee;
  background-color: #0e0e0e;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
.header {
  background: rgba(0, 0, 0, 0.399);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.header:hover {
  background: black;

}



.nav {
  float: center;
  align-self: center;

}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: rgba(106, 106, 106, 0.421);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffffff;
}

/* Burger Menu (Mobile) */
.burger {
  display: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px;
}

/*sections*/

.section {
  padding: 25rem 0;
  background: #000000;
}

.section p{
  font-size: 1.2rem;
  line-height: 1.6;
  color: #cccccc;
  max-width: 1200px;
  margin: 2rem auto;
  text-align: center;
}

.section2 {
  padding: 6rem 0;
  background: #000000;
}

.section.dark {
  font-size: 6rem;
  padding: 6rem 0;
  margin-bottom: 3rem;
  background: #181818;
  white-space: nowrap;

}



.section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}

.services li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  background: #111;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav.active {
    display: block;
    position: absolute;
    top: 70px;
    right: 0;
    background: #111;
    width: 100%;
    text-align: right;
    padding: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#p5-background canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.contact-info {
  list-style: none;
  font-size: 1.1rem;
  line-height: 2;
  padding-left: 0;
}

.contact-info li {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #ffffffac;
  text-decoration: underline;
}

.contact-info a:hover {
  color: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 0 15px rgba(233, 30, 99, 0.2);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #ffffffc3;
  box-shadow: 0 0 25px rgba(233, 30, 99, 0.4);
}

.contact-column h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-column p {
  font-size: 1rem;
  color: #ccc;
}

.contact-column a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-column a:hover {
  color: #fff;
}


#services {
  position: relative;
  overflow: hidden;
}

.p5-wrapper canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.content-overlay {
  position: relative;
  z-index: 1;
}


/* image gallery */

div.scroll-container {
  background-color: #000000;
  overflow: auto;
  white-space: nowrap;
  padding: 20px;
}

div.scroll-container img {
  padding: 10px;
  border: 10px;
}

* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;
  min-height: 450px;
  background-color: #262626;
  border: 3px solid rgb(30, 30, 30);
  text-align: center;

}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }


}


.elfsight-app-74c1d204-df6a-462e-97ea-f4f814f2e0a8 {
  margin-top: 4rem;
}



/* social media stuff */

.fa {

  padding: 20px;
  font-size: 12px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 12px;
  size: 130px;





}

.fa:hover {
  color: white;
  opacity: 1;
}


.fa-linkedin {
  background: #00000000;
  color: rgb(255, 255, 255);
  opacity: 0.3;
}

.fa-youtube {
  background: #00000000;
  color: rgb(255, 255, 255);
  opacity: 0.3;
}

.fa-instagram {
  background: #00000000;
  color: rgb(255, 255, 255);
  opacity: 0.3;
}

.fa-pinterest {
  background: #00000000;
  color: rgb(255, 255, 255);
  opacity: 0.3;
}