/* style.css - Abu Artist Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* Design Tokens & Variables */
:root {
  --background: 0 0% 100%;       /* #ffffff */
  --foreground: 20 14.3% 4.1%;   /* #0c0a09 */
  --card: 0 0% 100%;
  --card-foreground: 20 14.3% 4.1%;
  --popover: 0 0% 100%;
  --popover-foreground: 20 14.3% 4.1%;
  --primary: 24 95% 53%;         /* #f97316 - vibrant orange */
  --primary-foreground: 0 0% 100%;
  --secondary: 142 76% 36%;      /* #15803d - green */
  --secondary-foreground: 0 0% 100%;
  --muted: 60 4.8% 95.9%;        /* #f4f4f5 */
  --muted-foreground: 25 5.3% 44.7%; /* #78716c */
  --accent: 60 4.8% 95.9%;
  --accent-foreground: 24 9.8% 10%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 20 5.9% 90%;         /* #e7e5e4 */
  --input: 20 5.9% 90%;
  --ring: 24 95% 53%;
  --radius: 0.75rem;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.dark {
  --background: 20 14.3% 4.1%;   /* #0c0a09 */
  --foreground: 60 9.1% 97.8%;   /* #f4f4f5 */
  --card: 24 9.8% 10%;           /* #1c1917 */
  --card-foreground: 60 9.1% 97.8%;
  --popover: 20 14.3% 4.1%;
  --popover-foreground: 60 9.1% 97.8%;
  --primary: 24 95% 53%;         /* same vibrant orange */
  --primary-foreground: 0 0% 100%;
  --secondary: 142 76% 36%;      /* same green */
  --secondary-foreground: 0 0% 100%;
  --muted: 24 9.8% 10%;          /* dark gray */
  --muted-foreground: 24 5.4% 63.9%;
  --accent: 12 6.5% 15.1%;
  --accent-foreground: 60 9.1% 97.8%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  --border: 240 5.9% 15%;        /* dark border */
  --input: 240 5.9% 15%;
  --ring: 24 95% 53%;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "DM Sans", sans-serif;
  overflow-x: clip;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  font-weight: 700;
}

p {
  color: hsl(var(--muted-foreground));
}

a {
  color: inherit;
  text-decoration: inherit;
  transition: opacity 0.2s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

.grid {
  display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Spacing */
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

/* Sticky Header styling */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
  height: 4rem;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  nav.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

nav.desktop-nav a, nav.desktop-nav button {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav.desktop-nav a:hover, nav.desktop-nav button:hover {
  color: hsl(var(--primary));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  background-color: transparent;
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.theme-toggle-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* Button UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-align: center;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
  background-color: hsl(var(--secondary) / 0.9);
}

.btn-outline {
  border-color: hsl(var(--border));
  background-color: transparent;
}

.btn-outline:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-white {
  background-color: white;
  color: hsl(var(--secondary));
  border-color: white;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: hsl(var(--secondary));
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

/* Mobile Nav Styles */
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  transition: background-color 0.2s ease;
}

.mobile-nav-toggle:hover {
  background-color: hsl(var(--accent));
}

@media (min-width: 768px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-menu {
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  background-color: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 49;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a, .mobile-menu button {
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: white;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.25rem;
  }
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.25rem;
  }
}

/* Section Common Styling */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
  font-size: 1.125rem;
}

/* Services section & card image-backed layout */
.services-section {
  background-color: hsl(var(--muted));
  transition: background-color 0.3s ease;
}

.services-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: white;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}

.service-card-content {
  position: relative;
  z-index: 2;
}

.service-card-icon-wrapper {
  background-color: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.4);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card-icon-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(var(--primary));
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
}

.service-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card li {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-card .bullet-dot {
  width: 6px;
  height: 6px;
  background-color: hsl(var(--primary));
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* Hover effects for services */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 60%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.service-card:hover .service-card-icon-wrapper {
  background-color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.service-card:hover .service-card-icon-wrapper svg {
  color: white;
  transform: scale(1.1);
}

/* Quote Form styling */
.quote-section {
  background-color: hsl(var(--background));
  transition: background-color 0.3s ease;
}

.quote-form {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  font-size: 0.95rem;
  transition: all 0.2s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2378716c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.dark .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a8a29e' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}

.form-textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  font-size: 1rem;
  padding: 0.875rem;
}

/* Contact Section */
.contact-section {
  background-color: hsl(var(--secondary));
  color: white;
  text-align: center;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .contact-actions {
    flex-direction: row;
  }
}

.dark .btn-white {
  background-color: hsl(var(--card));
  color: white;
  border-color: hsl(var(--border));
}

.dark .btn-white:hover {
  background-color: hsl(var(--accent));
  color: white;
}

/* Footer Section */
footer {
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid hsl(var(--border));
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand h4 {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a, .footer-col li {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-col a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: hsl(var(--primary));
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background-color: hsl(var(--secondary));
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 1.5rem;
  height: 1.5rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
  background-color: hsl(var(--secondary) / 0.9);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

/* Custom Toast notification styles */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background-color: #1D1E20;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 250px;
  animation: slideIn 0.3s ease-out forwards;
}

.toast.toast-error {
  border-left: 4px solid #ef4444;
}

.toast.toast-success {
  border-left: 4px solid #22c55e;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Subpage Styles */
.subpage-hero {
  background-color: hsl(var(--muted));
  padding: 5rem 0 3rem 0;
  border-bottom: 1px solid hsl(var(--border));
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.subpage-hero h1 {
  font-size: 2.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .subpage-hero h1 {
    font-size: 3rem;
  }
}

.subpage-nav-crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.subpage-nav-crumbs a {
  color: hsl(var(--primary));
  font-weight: 500;
}

.subpage-content {
  padding: 5rem 0;
}

.subpage-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .subpage-layout {
    grid-template-columns: 1.5fr 1fr;
  }
}

.service-details h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}

.service-details p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.5;
}

.service-features-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  margin-right: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.service-features-list strong {
  color: hsl(var(--foreground));
  display: block;
}

/* Service Page Sidebar */
.service-sidebar {
  background-color: hsl(var(--muted));
  border-radius: 1.25rem;
  padding: 2rem;
  align-self: flex-start;
  border: 1px solid hsl(var(--border));
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.sidebar-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.sidebar-card .btn {
  width: 100%;
}

/* Gallery Section */
.gallery-section {
  padding-top: 2rem;
}

.gallery-section h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--muted));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: hsl(var(--muted-foreground));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 1;
}

.gallery-item-placeholder {
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.gallery-item-placeholder svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke-width: 1.5;
  opacity: 0.5;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: hsl(var(--primary) / 0.5);
}

.gallery-item:hover img {
  transform: scale(1.05);
}
