/*
Theme Name: MXSI 
Theme URI: https://yourdomain.com/msx-elementor
Author: MXSI team
Author URI: https://yourdomain.com
Description: Custom MSX theme built for Elementor compatibility
Version: 1.0
Text Domain: msx-elementor
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: elementor, custom, responsive, msx
*/

/* Global Font */
body {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

/* Typography Levels */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

strong {
  font-weight: 500;
}

.light-text {
  font-weight: 300;
}
/* Global Styles */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Header Styles */
.site-header {
  background-color: #000;
  padding: 15px 0;
  color: #fff;
  position: relative;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 40px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #ccc;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #fff;
  color: #000;
}

/* Responsive Header */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-outline {
    margin-top: 20px;
  }
}

/* Main Content */
.site-main {
  padding: 40px 0;
}

/* Footer Styles */
.footer {
  background-color: #fff;
  border-top: 1px solid #ccc;
  padding: 40px 0;
}

.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.newsletter-text {
  max-width: 400px;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  min-width: 250px;
}

.newsletter-form button {
  padding: 10px 16px;
  margin-left: 8px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #333;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  min-width: 160px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #000;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom a {
  margin-right: 20px;
  text-decoration: none;
  color: #000;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  margin-left: 10px;
}

.footer-social img {
  width: 20px;
  vertical-align: middle;
  transition: opacity 0.3s ease;
}

.footer-social img:hover {
  opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-social {
    margin-top: 20px;
  }
}

/* Elementor Compatibility */
.elementor-page .site-header,
.elementor-page .footer {
  position: relative;
  z-index: 99;
}