/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

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

body {
  font-family: "Inter", Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* HEADER */
.header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.5px;
    width: 100%;
    background: linear-gradient(
        90deg,
        white,
        #223BC9,
        #3545A1,
        #0025F5,
        #3B4375,
        #0000,
        #0000,
        white
    );
    background-size: 300% 100%;
    animation: cobraRainbow 15s linear infinite;
    filter: blur(0.6px);
}

@keyframes cobraRainbow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

.logo img {
  display: block;
  height: 100px;
  max-height: 100px;
  width: auto;
}


.logo-sub {
  display: block;
  font-size: 12px;
  color: #00ff88;
  margin-top: 2px;
}

.menu {
  display: flex;
  gap: 32px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

.menu a:hover {
  opacity: 1;
}

.btn-header {
  background: linear-gradient(135deg, #223BC9 , #3545A1);
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

.menu-mobile{
  display: none;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}

/* HERO */
.hero {
  max-width: 900px;
  margin: 120px auto 0;
  padding: 0 24px;
  text-align: center;
}

.alert {
  display: inline-block;
  background: #0a113c;  
  color: #223BC9;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #223BC9;
}

.hero p {
  font-size: 18px;
  color: #bfbfbf;
  max-width: 700px;
  margin: 0 auto 48px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, #223BC9, #3545A1);
  color: #000;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #444;
  padding: 16px 32px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
}

/* TABLET */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 44px;
  }

  .menu {
    gap: 20px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .header {
    flex-direction: row;
    gap: 16px;
    padding-top: 0;
  }

  .logo img {
  display: block;
  height: 150px;
  max-height: 150px;
  width: auto;
}

.btn-header{
  display: none;
}

  .menu {
    display: none;
  }

  .menu-mobile{
    display: block;
  }

  .alert {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #223BC9;
    color: #223BC9;
  }

  .hero {
    margin-top: 5px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}
