/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/

/* RESET */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  padding-top: 90px; /* space for sticky header */
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* header container */

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 20px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */

.logo img {
  height: 45px;
  width: auto;
}

/* navigation menu */

.main-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: opacity 0.3s ease;
}

.main-nav a:hover {
  opacity: 0.7;
}

/* active menu link styling */

.main-nav a.active {
  color: #000;
  font-weight: 700;
}


/* FOOTER */

.site-footer {
  background-color: #0b1530;
  color: #cfd9f6;
  padding: 50px 40px 20px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* About Section */

.footer-about h2 {
  color: #6a85ff;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-about p {
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Social Icons */

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #6a85ff;
}

/* Use FontAwesome colors for icons */

.social-icons a:nth-child(1) { background: #3b5998; } /* Facebook */
.social-icons a:nth-child(2) { background: #1DB954; } /* Spotify */
.social-icons a:nth-child(3) { background: #FF0000; } /* YouTube */
.social-icons a:nth-child(4) { background: #0084ff; } /* Messenger */

/* Quick Links Section */

.footer-links h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
  cursor: default;
}

.footer-links ul li a,
.footer-links ul li a:hover {
  color: #cfd9f6;
  text-decoration: none;
  cursor: pointer;
}

.footer-links ul li .highlight {
  color: #6a85ff;
  font-weight: bold;
}

/* Footer bottom bar */

.footer-bottom {
  border-top: 1px solid #1f2a53;
  margin-top: 35px;
  padding-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #7a89aa;
}

.footer-legal-links a {
  margin-left: 20px;
  color: #7a89aa;
  text-decoration: none;
  font-weight: 500;
}

.footer-legal-links a:hover {
  text-decoration: underline;
}

/* Responsive */

@media(max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-legal-links {
    margin-top: 10px;
  }
}