/* COMMON STYLES FOR ALL PAGES */

/* Font definition */
@font-face {
  font-family: 'your-type';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/your-type.otf);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: white;
  margin: 0;
  padding: 0;
  font-family: your-type, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header styles */
.site-header {
  background-color: #000;
  padding: 20px 40px;
  border-bottom: 1px solid #333;
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: block;
  width: 416px;
  height: 64px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navigation styles */
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

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

.nav-item {
  list-style: none;
}

.nav-link {
  color: #b48ead;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 7px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #5e3a5b;
}

.nav-link.active {
  color: #d8c6d7;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
}

.mobile-menu-btn img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav-list .nav-item {
  margin: 20px 0;
}

.mobile-nav-list .nav-link {
  font-size: 1.25rem;
  display: block;
  padding: 15px 30px;
}

/* Main content area */
main {
  flex: 1;
}

/* Footer styles */
.site-footer {
  background-color: #000;
  border-top: 1px solid #333;
  padding: 30px 20px;
  text-align: center;
  margin-top: auto;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-text {
  color: #999;
  font-size: 0.875rem;
}

/* Responsive styles */
@media (max-width: 939px) {
  .nav-list {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 15px 20px;
  }
  
  .header-container {
    padding: 0;
    gap: 15px;
    align-items: center;
  }
  
  .logo {
    width: 250px;
    height: auto;
    flex-shrink: 1;
  }
  
  .mobile-menu-btn {
    margin-left: auto;
  }
  
  .site-footer {
    padding: 20px 15px;
  }
}

@media (max-width: 575px) {
  .site-header {
    padding: 10px 15px;
  }
  
  .logo {
    width: 200px;
    max-width: calc(100% - 140px);
  }
  
  .mobile-menu-btn {
    padding: 8px;
  }
  
  .mobile-menu-btn img {
    width: 104px;
    height: 104px;
  }
}