@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");

:root {
  --primary-color: #3a4052;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

h1 {
  font-weight: 300;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 15px;
}



.header {
  width: 100%;
  background-color: #ffeb3b;
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 10;
  justify-content: space-between;
  box-sizing: border-box;
  border-bottom: 5px solid #000;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 12px 12px;
}

.logo-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.home-logo {
  max-height: 130px;
  height: auto;
  width: auto;
  flex-shrink: 0;
}

.button-container {
  display: flex;
  gap: 10px;
}

.button {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.showcase {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-container video {
  pointer-events: none;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: blur(8px);
}

.video-container:after {
  content: "";
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}

.content {
  z-index: 2;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  border: solid #fff 1px;
  margin-top: 25px;
  opacity: 0.7;
}

.btn:hover {
  transform: scale(0.98);
}

#about {
  padding: 40px;
  text-align: center;
}

#about p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}

#about h2 {
  margin: 30px 0;
  color: var(--primary-color);
}

.social {
  z-index: 3;
  position: relative;
}

.social a i {
  color: #d11e30;
  font-size: 3rem;
  transition: color 0.3s;
  margin: 0 10px;
}

@media screen and (max-width: 1024px) {
  .home-logo {
    padding-left: 100px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 60px;
    padding: 10px 0;
    flex-direction: row;
  }

  .logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }

  .home-logo {
    padding-left: 100px;
  }

  .button-container {
    flex: none;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 480px) {
  .showcase {
    padding: 1 10px;
  }

  h1 {
    font-size: 40px;
  }

  .header {
    height: 60px;
    padding: 0px 0;
    flex-direction: row;
  }

  .home-logo {
    max-height: 150px;
    padding-left: 65px;
    justify-content: center;
    height: auto;
    width: auto;
  }
}

@media screen and (max-width: 430px) {
  .showcase {
    padding: 0 10px;
    height: 100vh;
    display: flex;
  }

  h1 {
    font-size: 40px;
  }

  .header {
    height: 60px;
    padding: 0px 0;
    flex-direction: row;
  }

  .home-logo {
    max-height: 140px;
    padding-left: 80px;
    justify-content: center;
    height: auto;
    width: auto;
  }
}

@media screen and (max-width: 390px) {
  .showcase {
    padding: 1 10px;
    height: 135vh;
    display: flex;
  }

  h1 {
    font-size: 40px;
  }

  .header {
    height: 60px;
    padding: 0px 0;
    flex-direction: row;
  }

  .home-logo {
    max-height: 150px;
    padding-left: 60px;
    justify-content: center;
    height: auto;
    width: auto;
  }
}

@media screen and (max-width: 360px) {
  .showcase {
    padding: 1 10px;
    height: 155vh;
    display: flex;
  }

  h1 {
    font-size: 40px;
  }

  .header {
    height: 60px;
    padding: 0px 0;
    flex-direction: row;
  }

  .home-logo {
    max-height: 150px;
    padding-left: 60px;
    justify-content: center;
    height: auto;
    width: auto;
  }
}

@media screen and (max-width: 375px) {
  .showcase {
    padding: 1 10px;
    height: 170vh;
    display: flex;
  }

  h1 {
    font-size: 40px;
  }

  .header {
    height: 60px;
    padding: 0px 0;
    flex-direction: row;
  }

  .home-logo {
    max-height: 150px;
    padding-left: 60px;
    justify-content: center;
    height: auto;
    width: auto;
  }
}

@media screen and (max-width: 414px) {
  .showcase {
    padding: 1 10px;
    height: 125vh;
    display: flex;
  }

  h1 {
    font-size: 40px;
  }

  .header {
    height: 60px;
    padding: 0px 0;
    flex-direction: row;
  }

  .home-logo {
    max-height: 150px;
    padding-left: 60px;
    justify-content: center;
    height: auto;
    width: auto;
  }
}

@media screen and (max-width: 428px) {
  .showcase {
    padding: 0 10px;
    height: 100vh;
    display: flex;
  }

  h1 {
    font-size: 40px;
  }

  .header {
    height: 60px;
    padding: 0px 0;
    flex-direction: row;
  }

  .home-logo {
    max-height: 120px;
    padding-left: 65px;
    justify-content: center;
    height: auto;
    width: auto;
  }
}
