/* =============================================================
   Elara Voss — Painting Portfolio
   style.css
   ============================================================= */


/* ── 1. RESET & CSS VARIABLES ────────────────────────────────── */

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

:root {
  --cream:   #F5F0E8;
  --sand:    #E8DFD0;
  --bark:    #B89A7C;
  --charcoal:#2C2A27;
  --ink:     #1A1917;
  --muted:   #8A8178;
  --accent:  #8B5E3C;
  --white:   #FDFCFA;
  --nav-h:   72px;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}


/* ── 2. SCROLLBAR ─────────────────────────────────────────────── */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--bark); border-radius: 3px; }


/* ── 3. NAVIGATION ────────────────────────────────────────────── */

nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  border-color: var(--sand);
  box-shadow: 0 2px 24px rgba(44,42,39,0.06);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { font-style: italic; color: var(--accent); }

.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.35s, opacity 0.35s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  padding: 2rem 5%;
  border-bottom: 1px solid var(--sand);
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.35s, opacity 0.35s;
}
.mobile-menu.visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  display: block; padding: 0.85rem 0;
  font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
}
.mobile-menu a:last-child { border-bottom: none; }


/* ── 4. HERO ──────────────────────────────────────────────────── */

#home {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8% 6% 8% 8%;
  position: relative; z-index: 2;
}

.hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--bark);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: background 0.3s, gap 0.3s;
}
.hero-cta:hover { background: var(--charcoal); gap: 1.1rem; }
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-right {
  position: relative;
  background: var(--sand);
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}

/* Painting-like hero image using CSS art */
.hero-canvas {
  width: 100%; height: 100%;
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, #D4A882 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 30% 70%, #8B6E5A 0%, transparent 55%),
    radial-gradient(ellipse 80% 40% at 80% 20%, #E8C9A0 0%, transparent 50%),
    linear-gradient(160deg, #C49A6C 0%, #8B5E3C 35%, #5C3D2E 70%, #2C1E16 100%);
}
.hero-canvas::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.hero-canvas::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--sand) 0%, transparent 20%);
}

/* Floating painting card */
.hero-card {
  position: absolute; bottom: 10%; left: -30px;
  width: 200px;
  background: var(--white);
  padding: 12px;
  box-shadow: 0 20px 60px rgba(44,42,39,0.2);
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}
.hero-card-img {
  width: 100%; aspect-ratio: 4/3;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 60%, #C8A87A, transparent 50%),
    radial-gradient(ellipse at 70% 30%, #7B9E87, transparent 50%),
    linear-gradient(135deg, #A8C4B0 0%, #6B8C78 100%);
}
.hero-card p {
  font-family: var(--serif);
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sand);
}
.stat-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ── 5. SHARED SECTION STYLES ─────────────────────────────────── */

section { padding: 7rem 8%; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bark);
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--bark);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--accent); }


/* ── 6. GALLERY ───────────────────────────────────────────────── */

#gallery { background: var(--white); }

.gallery-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap; gap: 1.5rem;
}
.gallery-header p {
  max-width: 380px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Filter tabs */
.filter-tabs {
  display: flex; gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--sand);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Gallery grid — 4 col → 2 col → 1 col */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Card */
.gallery-item {
  position: relative;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(44,42,39,0.06);
  cursor: pointer;
  transition: box-shadow 0.4s, transform 0.4s;
  overflow: hidden;
}
.gallery-item:hover {
  box-shadow: 0 12px 40px rgba(44,42,39,0.14);
  transform: translateY(-4px);
}
.gallery-item[data-hidden] { display: none; }

/* Thumbnail */
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CSS-painted canvas */
/* .painting {
  width: 100%; height: 100%;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
} */
.gallery-item:hover .painting { transform: scale(1.08); }

/* Hover overlay */
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,25,23,0.82) 0%, rgba(26,25,23,0.18) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end;
  padding: 1.2rem 1.4rem;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.overlay-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bark);
  background: rgba(26,25,23,0.55);
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.45rem;
}
.overlay-text h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

/* Card caption */
.gallery-caption {
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--sand);
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.5rem;
}
.caption-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.caption-meta {
  font-family: 'Jost', sans-serif; /* Clean font for numbers */
  font-size: 1.35rem;             /* Much larger for visibility */
  font-weight: 600;               /* Bold like a product price */
  color: #B12704;                 /* Amazon-style deep price red */
  letter-spacing: -0.02em;        /* Tighter spacing for a modern look */
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}


/* ── 7. ABOUT ─────────────────────────────────────────────────── */

#about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-portrait {
  width: 280px;          /* control size */
  height: 280px;         /* equal = circle */
  border-radius: 50%;    /* makes it circular */
  object-fit: cover;     /* fills circle, crops extra */
  object-position: top;  /* focus on face (top part) */
  display: block;
  margin: 0 auto;        /* center it */
}


/* .about-portrait {
  width: 100%; aspect-ratio: 3/4;
  background:
    radial-gradient(ellipse at 50% 30%, #C4A882 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, #8B7355 0%, transparent 50%),
    linear-gradient(170deg, #D4C4B0 0%, #9A7A5A 50%, #3C2814);
} */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80%; height: 80%;
  border: 1px solid var(--bark);
  z-index: -1;
}

.about-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.about-text strong { color: var(--charcoal); font-weight: 500; }

.skills-list {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin: 2rem 0;
}
.skill-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid var(--bark);
  color: var(--bark);
}

.about-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: gap 0.3s;
}
.about-link:hover { gap: 0.9rem; }


/* ── 8. CONTACT ───────────────────────────────────────────────── */

#contact {
  background: var(--ink);
  color: var(--cream);
}
#contact .section-label        { color: var(--bark); }
#contact .section-label::before{ background: var(--bark); }
#contact .section-title        { color: var(--cream); }
#contact .section-title em     { color: var(--bark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 3.5rem;
}

.contact-intro {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex; flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.c-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.7);
}
.c-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,240,232,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}
.form-group input,
.form-group textarea {
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.12);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.25); }
.form-group input:focus,
.form-group textarea:focus        { border-color: var(--bark); }

.form-submit {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bark);
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--cream); }

.success-msg {
  display: none;
  color: var(--bark);
  font-size: 0.88rem;
  font-style: italic;
  margin-top: 0.5rem;
}
.success-msg.show { display: block; }


/* ── 9. FOOTER ────────────────────────────────────────────────── */

footer {
  background: var(--ink);
  border-top: 1px solid rgba(245,240,232,0.07);
  padding: 3rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(245,240,232,0.6);
}
.footer-logo span { font-style: italic; color: var(--bark); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.05em;
}

.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(245,240,232,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.social-link:hover {
  border-color: var(--bark);
  color: var(--bark);
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }


/* ── 10. LIGHTBOX ─────────────────────────────────────────────── */

.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

/* Dark backdrop */
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 14, 13, 0.92);
  cursor: zoom-out;
}

/* Content panel */
.lb-panel {
  position: relative; z-index: 1;
  max-width: 820px; width: 100%;
  transform: scale(0.93) translateY(16px);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox.open .lb-panel {
  transform: scale(1) translateY(0);
}

/* Artwork */
.lb-artwork {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
}

/* Info footer */
.lb-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0 0;
}
.lb-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
}
.lb-meta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bark);
}

/* Close button */
.lb-close {
  position: absolute; top: -14px; right: -14px;
  width: 40px; height: 40px;
  background: var(--accent);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
  z-index: 2;
}
.lb-close:hover {
  background: var(--charcoal);
  transform: rotate(90deg);
}
.lb-close svg { width: 14px; height: 14px; stroke: var(--white); }

/* Prev / Next arrows */
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: rgba(26,25,23,0.7);
  border: 1px solid rgba(245,240,232,0.15);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s;
  z-index: 2;
}
.lb-arrow:hover { background: var(--accent); border-color: var(--accent); }
.lb-arrow svg   { width: 14px; height: 14px; stroke: var(--white); }
.lb-prev { left: -56px; }
.lb-next { right: -56px; }


/* ── 11. SCROLL REVEAL ANIMATIONS ────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }


/* ── 12. RESPONSIVE BREAKPOINTS ──────────────────────────────── */

@media (max-width: 1024px) {
  #home                { grid-template-columns: 1fr; }
  .hero-right          { display: none; }
  .hero-left           { padding: 6rem 8% 4rem; min-height: calc(100vh - var(--nav-h)); justify-content: center; }
  #about               { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap      { max-width: 420px; }
  .contact-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
}

@media (max-width: 768px) {
  .nav-links           { display: none; }
  .hamburger           { display: flex; }
  section              { padding: 5rem 6%; }
  .gallery-header      { flex-direction: column; align-items: flex-start; }
  .hero-stats          { gap: 1.5rem; }
  footer               { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .gallery-grid        { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; /* 🔥 MAGIC LINE */
  overflow: hidden;
  border-radius: 10px;
  background: #f5f5f5;
}

.carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.carousel img.active {
  display: block;
}


.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }



.lb-panel {
  max-width: 90%;
  max-height: 90%;
  width: 800px;
  margin: auto;
}

.lb-artwork {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.popup-carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.popup-carousel img.active {
  display: block;
}

.popup-prev, .popup-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.popup-prev { left: 10px; }
.popup-next { right: 10px; }

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba56;
  transform: scale(1.1);
}