/* VOREAS MEGA STORE — Static Reproduction */
/* Based on original Shopify theme layout */

:root {
  --color-bg-dark: #1b1b1b;
  --color-bg-white: #ffffff;
  --color-text: #1b1b1b;
  --color-text-light: #ffffff;
  --color-accent: #295FCC;
  --font-family: 'Work Sans', 'Helvetica Neue', 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
  --page-width: 1200px;
}

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

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== Header ========== */
.site-header {
  background-color: var(--color-bg-dark);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__logo img {
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 32px;
  list-style: none;
}

.site-nav__link {
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.site-nav__link:hover {
  opacity: 0.7;
}

.site-header__icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.site-header__icons svg {
  fill: var(--color-text-light);
}

/* Mobile header */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* ========== Hero Banner (First View) ========== */
.hero-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-banner__image {
  width: 100%;
  min-height: calc(100vh - 64px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero-banner__image {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* ========== Page Width Container ========== */
.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Feature Columns Section ========== */
.feature-columns {
  padding: 60px 0;
}

.feature-columns .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feature-column {
  text-align: left;
}

.feature-column__image {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.feature-column__image img {
  width: 100%;
  border-radius: 4px;
}

.feature-column h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.feature-column p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 32px;
  font-size: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  text-align: center;
  transition: opacity 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  opacity: 0.85;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  width: 247px;
  padding-top: 18px;
  padding-bottom: 18px;
  height: 64px;
  line-height: 32px;
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid #ccc;
  font-size: 14px;
  padding: 10px 24px;
}

.btn--secondary:hover {
  border-color: var(--color-text);
  opacity: 1;
}

/* ========== Hero Sections ========== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-text-light);
  padding: 60px 24px;
  max-width: var(--page-width);
}

.hero-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-section__subtitle {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-section__btn {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

/* ========== Blog/News Section ========== */
.news-section {
  background-color: #FAFAFA;
  border: 1px solid #F2F2F2;
  margin-bottom: 0;
  padding: 40px 0;
}

.news-section h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.news-list {
  list-style: none;
}

.news-item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.news-item__date {
  font-size: 14px;
  color: #888;
  margin-right: 16px;
}

.news-item__link {
  color: var(--color-text);
  font-size: 15px;
}

.news-item__link:hover {
  color: var(--color-accent);
}

/* ========== Footer ========== */
.site-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.site-footer__sns {
  background-color: var(--color-bg-white);
  text-align: center;
  padding: 24px 0;
}

.site-footer__sns-title {
  color: #000;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.site-footer__sns-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
}

.site-footer__sns-icons img {
  width: 48px;
  height: 48px;
  transition: opacity 0.2s;
}

.site-footer__sns-icons a:hover img {
  opacity: 0.7;
}

.site-footer__main {
  padding: 40px 24px;
  text-align: center;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 32px;
}

.site-footer__links a {
  color: var(--color-text-light);
  font-size: 13px;
  transition: opacity 0.2s;
}

.site-footer__links a:hover {
  opacity: 0.7;
}

.site-footer__copyright {
  font-size: 11px;
  color: #999;
  text-align: center;
  padding-bottom: 40px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav li {
    border-bottom: 1px solid #333;
  }

  .site-nav__link {
    display: block;
    padding: 16px 24px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .feature-columns .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-section {
    min-height: 350px;
  }

  .hero-section__title {
    font-size: 24px;
  }

  .hero-section__subtitle {
    font-size: 14px;
  }

  .btn--primary {
    width: 100%;
    max-width: 280px;
  }

  .site-footer__links {
    gap: 16px;
  }
}
