/*
Theme Name: Arpotech AGV
Theme URI: https://arpotech.com.tr
Author: Arpotech
Author URI: https://arpotech.com.tr
Description: Hikrobot AGV/AMR Çözümleri - Endüstriyel Otomasyon WordPress Teması. Modern, responsive ve SEO dostu tasarım.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arpotech
Tags: industrial, automation, agv, amr, robotics, business, corporate, responsive, custom-menu, custom-logo

Arpotech - Hikrobot Yetkili Satıcısı
Endüstriyel AGV ve AMR Çözümleri
*/

/* ============================================
   CUSTOM CSS VARIABLES
   ============================================ */
:root {
  /* Primary - Electric Blue for technology and precision */
  --primary: oklch(0.55 0.18 250);
  --primary-foreground: oklch(0.98 0.01 250);

  /* Background - Clean white */
  --background: oklch(0.99 0 0);
  --foreground: oklch(0.2 0.01 250);

  /* Card - Subtle off-white */
  --card: oklch(0.98 0.005 250);
  --card-foreground: oklch(0.2 0.01 250);

  /* Secondary - Cool gray */
  --secondary: oklch(0.92 0.01 250);
  --secondary-foreground: oklch(0.3 0.01 250);

  /* Muted - Light slate gray */
  --muted: oklch(0.94 0.01 250);
  --muted-foreground: oklch(0.5 0.02 250);

  /* Accent */
  --accent: oklch(0.9 0.015 250);
  --accent-foreground: oklch(0.25 0.01 250);

  /* Border - Subtle slate */
  --border: oklch(0.88 0.01 250);
  --ring: oklch(0.55 0.18 250);

  /* Minimal rounded corners for industrial feel */
  --radius: 0.25rem;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
  box-sizing: border-box;
  border-color: var(--border);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  letter-spacing: -0.03em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--accent);
}

.btn-ghost {
  background-color: transparent;
  color: var(--muted-foreground);
}

.btn-ghost:hover {
  background-color: var(--accent);
  color: var(--foreground);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-logo img {
  height: 2.5rem;
  width: auto;
}

.main-navigation {
  display: none;
}

@media (min-width: 1024px) {
  .main-navigation {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.main-navigation a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
  border-radius: var(--radius);
}

.main-navigation a:hover,
.main-navigation a.active {
  color: var(--foreground);
  background-color: var(--accent);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--muted-foreground);
  border-radius: var(--radius);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--foreground);
  background-color: var(--accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: 700px;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.70));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
}

.hero-subtitle {
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 42rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-buttons .btn-primary {
  background-color: var(--primary);
}

.hero-buttons .btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.hero-buttons .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Tech Line Accent */
.tech-line {
  position: relative;
  padding-left: 1.5rem;
}

.tech-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

/* Grid Overlay */
.grid-overlay {
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.section-light {
  background-color: #f8fafc;
}

.section-dark {
  background-color: #0f172a;
  color: white;
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-subtitle {
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 1.875rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 102, 204, 0.1);
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  padding: 2rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.product-features li svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   SOLUTION CARDS
   ============================================ */
.solution-card {
  overflow: hidden;
}

.solution-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-image img {
  transform: scale(1.05);
}

.solution-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.solution-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
}

.solution-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.solution-content {
  padding: 1.5rem;
}

.solution-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.solution-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  padding: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #f59e0b;
  fill: #f59e0b;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--muted-foreground);
}

.testimonial-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

.testimonial-info p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 4rem 0;
  background-color: #0f172a;
  color: white;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 6rem 0;
  }
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  color: #cbd5e1;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-buttons .btn-primary {
  background-color: white;
  color: #0f172a;
}

.cta-buttons .btn-primary:hover {
  background-color: #f1f5f9;
}

.cta-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.cta-buttons .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: #0f172a;
  color: #cbd5e1;
  border-top: 1px solid #1e293b;
}

.footer-content {
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 2rem;
  width: auto;
}

.footer-brand span {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 1.125rem;
  color: white;
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact a {
  font-family: 'JetBrains Mono', monospace;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid #1e293b;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: #64748b;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: #64748b;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.accordion-trigger:hover {
  background-color: var(--accent);
}

.accordion-trigger svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.accordion-item.active .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 1.5rem 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  max-width: 32rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-textarea {
  min-height: 8rem;
  resize: vertical;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-slide-in-left {
  animation: slideInLeft 0.4s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.animate-slide-in-up {
  animation: slideInUp 0.4s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.animate-fade-in {
  animation: fadeIn 0.4s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

.font-mono {
  font-family: 'IBM Plex Mono', monospace;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wider {
  letter-spacing: 0.1em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   POST CONTENT STYLES
   ============================================ */
.post-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.post-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

.post-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.post-content p {
  margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: var(--muted-foreground);
  font-style: italic;
}

.post-content img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.post-content a {
  color: var(--primary);
  text-decoration: underline;
}

.post-content a:hover {
  text-decoration: none;
}

.post-content pre {
  background: var(--accent);
  padding: 1rem;
  border-radius: 0.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.post-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875em;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}

.post-content th,
.post-content td {
  border: 1px solid var(--border);
  padding: 0.75rem;
  text-align: left;
}

.post-content th {
  background: var(--accent);
  font-weight: 600;
}

/* ============================================
   REFERENCE SITE UTILITIES (Added for Visual Parity)
   ============================================ */
.tech-line {
  position: relative;
  border-left: 2px solid var(--primary);
}

.font-display {
  font-family: 'IBM Plex Mono', monospace;
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.bg-card {
  background-color: var(--card);
}

.bg-slate-50 {
  background-color: #f8fafc;
}

.text-slate-300 {
  color: #cbd5e1;
}

.text-primary {
  color: var(--primary);
}

.bg-primary {
  background-color: var(--primary);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

/* Backdrop Blur & Opacity Utilities */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Grid & Flex Utilities (If Tailwind is weak) */
.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

/* Hero Specifics */
.hero-title {
  line-height: 1.1;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

/* Feature Icons */
.bg-primary\/10 {
  background-color: oklch(0.55 0.18 250 / 0.1);
}

/* Animations */
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}