/* Theme 7: Modern, premium equipment rental — Header + Hero */

/* Use when body or parent has .theme-version-7 or header has .site-header--theme7 */
.site-header--theme7 {
  --header-bg: #ffffff;
  --header-border: rgba(0, 0, 0, 0.06);
  --header-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --radius-sm: 8px;
  --radius-md: 10px;
  --space-md: 16px;
  --space-lg: 24px;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.site-header--theme7 {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
}

.site-header--theme7 .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  min-height: 72px;
}

.site-header--theme7 .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.site-header--theme7 .logo-img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-md);
}

.site-header--theme7 .logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent) 0%, #14b8a6 100%);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25);
}

.site-header--theme7 .logo-text { letter-spacing: -0.02em; }

.site-header--theme7 .nav-desktop { display: none; }
@media (min-width: 900px) {
  .site-header--theme7 .nav-desktop { display: block; }
}

.site-header--theme7 .nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header--theme7 .nav-link {
  display: block;
  padding: 8px var(--space-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header--theme7 .nav-link:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

.site-header--theme7 .nav-link--active {
  color: var(--accent);
  font-weight: 600;
}

.site-header--theme7 .header-actions { flex-shrink: 0; }

.site-header--theme7 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header--theme7 .btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.site-header--theme7 .btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.site-header--theme7 .btn--full { width: 100%; }

.site-header--theme7 .nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
@media (min-width: 900px) {
  .site-header--theme7 .nav-toggle { display: none; }
}

.site-header--theme7 .nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header--theme7 .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header--theme7 .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }

.site-header--theme7 .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header--theme7 .nav-mobile {
  display: block;
  padding: var(--space-md) var(--space-lg);
  padding-top: 0;
  background: var(--header-bg);
  border-top: 1px solid var(--header-border);
}

.site-header--theme7 .nav-mobile[hidden] { display: none !important; }
@media (min-width: 900px) {
  .site-header--theme7 .nav-mobile { display: none !important; }
}

.site-header--theme7 .nav-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-header--theme7 .nav-mobile-link {
  display: block;
  padding: var(--space-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.site-header--theme7 .nav-mobile-link:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-primary);
}

.site-header--theme7 .nav-mobile-list .btn { margin-top: 8px; }

/* Dropdown (optional) */
.site-header--theme7 .nav-item--dropdown { position: relative; }
.site-header--theme7 .nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  min-width: 180px;
}
.site-header--theme7 .nav-item--dropdown:hover .nav-dropdown { display: block; }
.site-header--theme7 .nav-dropdown .nav-link { padding: 8px 16px; }

/* ========== Hero Theme 7 ========== */
.hero--theme7 {
  --hero-bg: #f8fafb;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero--theme7 {
  background: var(--hero-bg);
  padding: 48px 24px 64px;
}

.hero--theme7 .hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero--theme7 .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    min-height: 480px;
  }
  .hero--theme7 { padding: 64px 24px; }
}

.hero--theme7 .hero-content { max-width: 560px; }

.hero--theme7 .hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: #fff;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero--theme7 .hero-title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  font-family: var(--font-sans);
}

.hero--theme7 .hero-title-accent { color: var(--accent); }

.hero--theme7 .hero-lead {
  margin: 0 0 32px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.hero--theme7 .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero--theme7 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero--theme7 .btn--primary {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.3);
}

.hero--theme7 .btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}

.hero--theme7 .btn--secondary {
  background: #fff;
  color: var(--text-primary);
  border: 2px solid rgba(0, 0, 0, 0.12);
}

.hero--theme7 .btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(13, 148, 136, 0.04);
}

.hero--theme7 .hero-media { position: relative; }

.hero--theme7 .hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 400px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 50%, #94a3b8 100%);
  box-shadow: var(--shadow-md);
}

.hero--theme7 .hero-image-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

@media (min-width: 900px) {
  .hero--theme7 .hero-image-placeholder { aspect-ratio: 16/10; max-height: 420px; }
  .hero--theme7 .hero-image-img { max-height: 420px; object-fit: cover; }
}
