/* =========================================================
   SZIVERI DEV PORTFOLIO - style.css
   Dark / Red Premium Portfolio Design
========================================================= */

:root {
  --bg: #050505;
  --bg-2: #090909;
  --card: #111111;
  --card-2: #151515;
  --text: #ffffff;
  --muted: #b7b7b7;
  --muted-2: #777777;
  --red: #e50914;
  --red-2: #ff1f2d;
  --red-dark: #7e050b;
  --border: rgba(255, 255, 255, 0.09);
  --border-red: rgba(229, 9, 20, 0.45);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 10px;
  --container: 1160px;
  --header-height: 72px;
}

/* =========================================================
   Reset
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.16), transparent 34%),
    linear-gradient(180deg, #050505 0%, #080808 42%, #050505 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* =========================================================
   Base Layout
========================================================= */

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title::before {
  content: "/";
  color: var(--red);
  font-size: 26px;
  font-weight: 900;
}

.section-subtitle {
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 30px;
}

/* =========================================================
   Header / Navigation
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.navbar {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span {
  color: var(--red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  position: relative;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #f2f2f2;
  transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 0;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 8px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   Buttons
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(229, 9, 20, 0.42);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 12px;
}

/* =========================================================
   Hero
========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 45%, rgba(5, 5, 5, 0.35) 100%),
    radial-gradient(circle at 78% 45%, rgba(229, 9, 20, 0.26), transparent 32%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  right: 46%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--red), transparent);
  transform: skewX(-24deg);
  opacity: 0.75;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("../img/hero-bg.jpg") center right / cover no-repeat,
    #050505;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 80px 0;
}

.hero-kicker {
  color: var(--red);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero-title span {
  color: var(--red);
}

.hero-text {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-tech {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eeeeee;
  font-weight: 700;
}

.hero-tech-item i,
.hero-tech-item svg {
  color: var(--red);
  font-size: 24px;
}

.hero-logo-box {
  justify-self: end;
  width: min(440px, 100%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  position: relative;
}

.hero-logo-box::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 82%;
  border: 2px solid rgba(229, 9, 20, 0.55);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  box-shadow: 0 0 70px rgba(229, 9, 20, 0.28);
}

.hero-logo-mark {
  font-size: 160px;
  font-weight: 900;
  color: var(--red);
  text-shadow: 0 0 35px rgba(229, 9, 20, 0.55);
}

.hero-logo-title {
  position: absolute;
  bottom: 64px;
  text-align: center;
  font-size: 44px;
  letter-spacing: 12px;
  font-weight: 300;
}

.hero-logo-title span {
  display: block;
  color: var(--red);
  font-size: 13px;
  letter-spacing: 7px;
  margin-top: 4px;
}

/* =========================================================
   About
========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 34px;
  align-items: stretch;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 570px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.about-card,
.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-card::before,
.stat-card::before,
.service-card::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(229, 9, 20, 0.18), transparent 32%);
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.about-card:hover::before,
.stat-card:hover::before,
.service-card:hover::before,
.project-card:hover::before {
  opacity: 1;
}

.about-card-icon,
.stat-card-icon {
  color: var(--red);
  font-size: 38px;
  margin-bottom: 18px;
}

.about-card-number,
.stat-card-number {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.about-card-label,
.stat-card-label {
  color: #eeeeee;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

/* =========================================================
   Technologies
========================================================= */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 70px;
}

.tech-item {
  width: 100%;
}

.tech-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.tech-name {
  font-weight: 800;
}

.tech-percent {
  color: #eeeeee;
  font-size: 14px;
}

.skill-line {
  width: 100%;
  height: 7px;
  background: #181818;
  border-radius: 999px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  border-radius: 999px;
  transition: width 1.2s ease;
}

/* =========================================================
   Services
========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 22px;
  text-align: center;
  min-height: 230px;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  box-shadow: 0 22px 60px rgba(229, 9, 20, 0.12);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 42px;
}

.service-title {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 900;
}

.service-text {
  color: var(--muted);
  font-size: 14px;
}

/* =========================================================
   Projects
========================================================= */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  box-shadow: 0 22px 60px rgba(229, 9, 20, 0.12);
}

.project-image {
  height: 185px;
  background: #0b0b0b;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.06);
}

.project-body {
  padding: 18px;
}

.project-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 12px;
}

.project-text {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tag {
  color: var(--red);
  border: 1px solid rgba(229, 9, 20, 0.55);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  background: rgba(229, 9, 20, 0.06);
}

.projects-more {
  text-align: center;
  margin-top: 28px;
}

/* =========================================================
   Counter Strip
========================================================= */

.counter-strip {
  padding: 30px 0;
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.18), transparent 20%, transparent 80%, rgba(229, 9, 20, 0.18)),
    #080808;
  border-top: 1px solid rgba(229, 9, 20, 0.35);
  border-bottom: 1px solid rgba(229, 9, 20, 0.35);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.counter-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.counter-icon {
  color: var(--red);
  font-size: 34px;
}

.counter-number {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.counter-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =========================================================
   Contact
========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-control {
  width: 100%;
  min-height: 46px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 5px;
  padding: 13px 15px;
  outline: none;
  transition: 0.25s ease;
}

.form-control::placeholder {
  color: #777777;
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-message {
  display: none;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
}

.form-message.success {
  display: block;
  background: rgba(0, 180, 90, 0.12);
  color: #59ffad;
  border: 1px solid rgba(0, 180, 90, 0.35);
}

.form-message.error {
  display: block;
  background: rgba(229, 9, 20, 0.12);
  color: #ff6570;
  border: 1px solid rgba(229, 9, 20, 0.4);
}

.contact-info {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  padding-left: 34px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  color: var(--muted);
}

.contact-info-item i,
.contact-info-item svg {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1px solid rgba(229, 9, 20, 0.45);
  border-radius: 50%;
  padding: 10px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1px solid rgba(229, 9, 20, 0.45);
  border-radius: 50%;
  transition: 0.25s ease;
}

.socials a:hover {
  background: var(--red);
  color: #ffffff;
  transform: translateY(-3px);
}

/* =========================================================
   Footer
========================================================= */

.site-footer {
  padding: 26px 0;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--red);
}

.footer-copy {
  color: var(--muted-2);
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  transition: 0.25s ease;
}

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

/* =========================================================
   Back To Top
========================================================= */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(229, 9, 20, 0.6);
  background: rgba(5, 5, 5, 0.9);
  color: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.25s ease;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red);
  color: #ffffff;
}

/* =========================================================
   Reveal Animation
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Admin Basic Styles
========================================================= */

.admin-body {
  background: #070707;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.admin-sidebar {
  background: #0d0d0d;
  border-right: 1px solid var(--border);
  padding: 24px;
}

.admin-logo {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.admin-logo span {
  color: var(--red);
}

.admin-menu {
  display: grid;
  gap: 8px;
}

.admin-menu a {
  padding: 12px 14px;
  border-radius: 7px;
  color: var(--muted);
  transition: 0.25s ease;
}

.admin-menu a:hover,
.admin-menu a.active {
  background: rgba(229, 9, 20, 0.12);
  color: #ffffff;
}

.admin-main {
  padding: 32px;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.admin-title {
  font-size: 30px;
  font-weight: 900;
}

.admin-card {
  background: #101010;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 22px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.admin-stat {
  background: #111111;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.admin-stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.admin-stat span {
  color: var(--muted);
  font-size: 13px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.admin-table th {
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--muted);
}

.admin-actions {
  display: flex;
  gap: 8px;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-form label {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  background: #080808;
  border: 1px solid var(--border);
  color: #ffffff;
  border-radius: 6px;
  padding: 13px 14px;
  outline: none;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  border-color: var(--red);
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(229, 9, 20, 0.22), transparent 38%),
    #050505;
}

.login-box {
  width: min(420px, calc(100% - 32px));
  background: #101010;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.login-box h1 {
  margin-bottom: 22px;
  text-align: center;
  text-transform: uppercase;
}

.login-box h1 span {
  color: var(--red);
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: min(340px, 100%);
    height: calc(100vh - var(--header-height));
    background: rgba(8, 8, 8, 0.98);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    transition: 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 70px 0;
  }

  .hero-logo-box {
    justify-self: start;
    max-width: 320px;
  }

  .hero-logo-mark {
    font-size: 110px;
  }

  .hero-logo-title {
    font-size: 30px;
    bottom: 44px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    border-left: 0;
    padding-left: 0;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 52px 0;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-tech {
    gap: 18px;
  }

  .about-stats,
  .tech-grid,
  .services-grid,
  .projects-grid,
  .counter-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .counter-item {
    justify-content: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .admin-main {
    padding: 20px;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 23px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-logo-box {
    display: none;
  }
}