/*
Theme Name: M Media Audio
Theme URI: https://www.mmediaaudio.com
Author: M Media
Description: Custom high-end minimal WooCommerce theme for M Media Audio
Version: 1.0
*/

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
}

/* Header Styles - Apple Black */
.site-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 28px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo img:hover {
  opacity: 0.7;
}

/* Navigation - Apple Style */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu,
.footer-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-menu li,
.footer-menu li {
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #f5f5f7;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: opacity 0.3s ease;
  display: inline-block;
  padding: 8px 0;
}

.nav-menu a:hover {
  opacity: 0.7;
}

/* Main Content Area - White */
.site-content {
  background: #ffffff;
  min-height: calc(100vh - 44px - 300px);
}

.hero {
  background: url("assets/images/hero.jpg") center center no-repeat;
  background-size: 100% auto;
  padding: 140px 40px;
  text-align: center;
  color: #ffffff;
}

.hero h2 {
  font-size: 48px;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto 20px;
  letter-spacing: -0.003em;
}

.section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Footer Styles - Apple Black */
.site-footer {
  background: rgba(0, 0, 0, 0.92);
  color: #f5f5f7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo img {
  height: 32px;
  width: auto;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  align-items: center;
}

.footer-menu {
  gap: 24px;
}

.footer-menu a {
  color: #f5f5f7;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.footer-menu a:hover {
  opacity: 0.7;
}

.footer-info {
  text-align: center;
  color: #a1a1a6;
  font-size: 12px;
  line-height: 1.33337;
  margin-top: 8px;
}

.footer-info p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    height: 48px;
  }

  .nav-menu {
    gap: 16px;
  }

  .logo img {
    height: 24px;
  }

  .footer-menu {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
