/*
Theme Name: Moust Boost Theme
Author: Moust Camara
Description: Simple theme for Moust Boost website
Version: 1.0
*/

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

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #111827;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease;
}

.site-header.scrolled {
  background: #111827;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
  display: block;
  height: 70px;
  width: auto;
}

.header-logo .custom-logo-link {
  display: block;
  line-height: 0;
}

.header-logo a {
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-content {
  flex: 0 0 35%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  max-height: 100vh;
  background: #111827;
  position: relative;
  z-index: 2;
}

.hero-text-wrapper {
  max-width: 100%;
}

.hero-heading {
  font-size: 100px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: 180%;
  max-width: 180%;
}

.hero-subheading {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 16px;
}

.hero-meta {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.5px;
}

.hero-founder {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.hero-founder a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.hero-founder a:hover {
  opacity: 0.8;
}

.hero-image {
  flex: 0 0 65%;
  height: 100vh;
  max-height: 100vh;
  position: relative;
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #111827 0%, rgba(17, 24, 39, 0.8) 15%, rgba(17, 24, 39, 0.3) 30%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Page Content */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.page-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 32px;
}

.page-body {
  font-size: 18px;
  line-height: 1.8;
}

/* Tablet / Small Desktop */
@media (max-width: 1200px) and (min-width: 969px) {
  .hero-image {
    background-position: center right;
  }
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .site-header {
    position: relative;
  }
  
  .header-inner {
    justify-content: center;
  }
  
  .header-logo img {
    height: 56px;
  }
  
  .hero-section {
    flex-direction: column;
    height: calc(100vh - 102px);
    min-height: calc(100vh - 102px);
    max-height: calc(100vh - 102px);
  }
  
  .hero-content {
    padding: 0px 40px 60px 40px;
    min-height: auto;
    max-height: none;
    height: auto;
    text-align: center;
    flex: none;
    width: 100%;
  }
  
  .hero-text-wrapper {
    width: 100%;
    max-width: 100%;
  }
  
  .hero-heading {
    font-size: 48px;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-subheading {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-image {
    flex: 1;
    width: 100%;
    background-position: center center !important;
    background-size: cover !important;
    min-height: 0;
  }
  
  .hero-image::before {
    display: block;
    background: linear-gradient(to bottom, #111827 0%, rgba(17, 24, 39, 0.8) 15%, rgba(17, 24, 39, 0.3) 30%, transparent 50%);
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 0px 24px 24px 24px;
  }
  
  .hero-heading {
    font-size: 36px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }
  

  
  .page-content {
    padding: 40px 24px;
  }
}
