/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1773702655
Updated: 2026-03-16 23:10:55

*/

:root {
  --hvml-bg: #f6f7fb;
  --hvml-surface: rgba(255, 255, 255, 0.78);
  --hvml-surface-strong: #ffffff;
  --hvml-border: rgba(15, 23, 42, 0.08);
  --hvml-text: #0f172a;
  --hvml-text-soft: #64748b;
  --hvml-primary: #0f172a;
  --hvml-primary-hover: #1e293b;
  --hvml-accent: #c8a96b;
  --hvml-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --hvml-radius: 18px;
  --hvml-radius-sm: 12px;
  --hvml-max: 1240px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f6f7fb 100%);
  color: var(--hvml-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hvml-container {
  width: 100%;
  max-width: var(--hvml-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.hvml-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(246, 247, 251, 0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.hvml-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hvml-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.hvml-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--hvml-primary) 0%, #1f2937 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  box-shadow: var(--hvml-shadow);
}

.hvml-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hvml-brand-title {
  color: var(--hvml-text);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hvml-brand-subtitle {
  margin-top: 5px;
  color: var(--hvml-text-soft);
  font-size: 13px;
  font-weight: 500;
}

.hvml-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hvml-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.hvml-btn-primary {
  background: linear-gradient(135deg, var(--hvml-primary) 0%, #1f2937 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.hvml-btn-primary:hover {
  background: linear-gradient(135deg, var(--hvml-primary-hover) 0%, #111827 100%);
  transform: translateY(-1px);
}

.hvml-btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--hvml-text);
  border-color: var(--hvml-border);
}

.hvml-btn-ghost:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* FOOTER */
.hvml-footer {
  margin-top: 60px;
  padding: 32px 0 26px;
}

.hvml-footer-inner {
  background: var(--hvml-surface);
  border: 1px solid var(--hvml-border);
  border-radius: 28px;
  box-shadow: var(--hvml-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 30px;
}

.hvml-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hvml-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 420px;
}

.hvml-footer-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--hvml-primary) 0%, #1f2937 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: var(--hvml-shadow);
}

.hvml-footer-brand h3 {
  margin: 2px 0 8px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--hvml-text);
}

.hvml-footer-brand p {
  margin: 0;
  color: var(--hvml-text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.hvml-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

.hvml-footer-links a {
  color: var(--hvml-text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.hvml-footer-links a:hover {
  color: var(--hvml-text);
}

.hvml-footer-bottom {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hvml-footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--hvml-text-soft);
}

.hvml-footer-note {
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hvml-header-inner,
  .hvml-footer-top,
  .hvml-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hvml-header-actions,
  .hvml-footer-links {
    width: 100%;
  }

  .hvml-footer-links {
    justify-content: flex-start;
  }

  .hvml-footer-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hvml-container {
    padding: 0 18px;
  }

  .hvml-header {
    padding: 14px 0;
  }

  .hvml-brand-title {
    font-size: 15px;
  }

  .hvml-brand-subtitle {
    font-size: 12px;
  }

  .hvml-btn {
    min-height: 42px;
    padding: 0 15px;
    font-size: 13px;
  }

  .hvml-footer-inner {
    padding: 22px;
    border-radius: 22px;
  }
}

.entry-title {
  display: none !important;
}
