@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Maven Pro", cursive;
  background-color: #222;
  color: #c4c6cc;
  overflow-x: hidden;
}

header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 940px;
  padding: 20px 10px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 40;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 75px;
  width: 300px;
  z-index: 32;
}

.logo img {
  max-width: 100%;
  height: auto;
  display: block;
}

.contact-container {
  display: flex;
  align-items: center;
}

.email-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #444;
  font-family: "Maven Pro", cursive;
  transition: opacity 0.2s;
}

.email-link span {
  font-size: 16px;
  font-weight: 300;
}

.email-link:hover {
  opacity: 0.7;
}

.icon-svg {
  width: 20px;
  height: 20px;
  stroke: #444;
  stroke-width: 2;
  display: block;
}

.hero {
  background-image: url("images/bg-main.jpg");
  background-position: center bottom;
  min-height: 510px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  background-color: #5dade2;
  overflow: visible;
}

.phone-container {
  position: relative;
  height: 340px;
  width: auto;
  margin-bottom: -15px;
  z-index: 20;
  display: flex;
  justify-content: center;
  transition:
    transform 0.3s ease,
    margin 0.3s ease;
  transform-origin: center center;
}

.phone-frame {
  height: 100%;
  width: auto;
  display: block;
  position: relative;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.4));
}

.video-wrapper {
  position: absolute;
  top: 3%;
  left: 2%;
  width: 96%;
  height: 94%;
  z-index: 5;
  background: #000;
  overflow: hidden;
  border-radius: 40px;
  transform: translateZ(0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  transform: scale(0.95);
}

.content {
  background-image: url("images/bg-2.jpg");
  background-repeat: repeat;
  background-color: #1a1a1a;
  padding: 60px 20px 60px;
  position: relative;
  z-index: 10;
}

.container {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.column {
  flex: 1;
  min-width: 300px;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #e0e0e0;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
}

p,
li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c4c6cc;
  margin-bottom: 15px;
}

ul {
  list-style-position: outside;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.app-store-btn {
  display: inline-block;
  margin-top: 15px;
}

.app-store-btn img {
  width: 200px;
  transition: transform 0.2s;
}

.app-store-btn img:hover {
  transform: scale(1.05);
}

footer {
  background-color: #111;
  text-align: center;
  padding: 25px;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #222;
}

@media (max-width: 768px) {
  header {
    max-width: 100%;
    padding: 20px;
  }

  .logo {
    top: 60px;
    width: 240px;
  }

  .hero {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 700px;
    align-items: center;
    overflow: visible;
  }

  .phone-container {
    transform: rotate(90deg) scale(0.95);
    margin-bottom: 0;
    margin-top: 250px;
    z-index: 50;
  }

  .video-wrapper video {
    transform: rotate(-90deg) scale(0.5);
    width: 177%;
    height: 100%;
    object-fit: contain;
  }

  .content {
    padding-top: 150px;
    padding-bottom: 40px;
  }

  .container {
    gap: 40px;
    flex-direction: column;
  }

  .column {
    min-width: 100%;
    text-align: center;
  }

  .column h2 {
    font-size: 1.8rem;
    border-bottom: none;
    margin-bottom: 25px;
    color: #fff;
    text-align: left;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px auto;
  }

  .column.highlights ul,
  .about-box {
    display: inline-block;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 30px;
    border-radius: 15px;
    border: 1px solid #333;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px auto;
  }

  .column.highlights li,
  .about-box p {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .about-box p:last-child {
    margin-bottom: 0;
  }

  .about-box .app-store-btn {
    margin-top: 25px;
    display: block;
  }
}
