/* =========================
   RESET
   ========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================
   PALETĂ
   ========================= */
:root {
    --bg-main: #F4F2ED;
    --bg-white: #ffffff;

    --text-main: #241B19;
    --text-light: #ffffff;

    --accent-primary: #b05f28;
    --accent-secondary: #BC8E40;

    --green: #345544;
}

/* =========================
   GLOBAL
   ========================= */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    background: var(--bg-main);
    color: var(--text-main);
}

section {
    padding: 120px 20px;
}

.accent-text {
    font-family: 'Calligraffitti', cursive;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 32px 10%;
    z-index: 1000;

    background: transparent;
}


.nav-left,
.nav-right {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}


.nav-left a,
.nav-right a {
    text-decoration: none;
    color: #ffffff;

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.18em;

    white-space: nowrap;
    position: relative;
}


.nav-left a::after,
.nav-right a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

.nav-center .logo {
    height: 140px;     /* MARE */
    max-height: 18vh;
    filter: brightness(0) invert(1);
}

.nav-center .logo {
    height: 140px;
    filter: brightness(0) invert(1);
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 18px 10%;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled .nav-left a,
.navbar.scrolled .nav-right a {
    color: var(--text-main);
}

.navbar.scrolled .nav-left a::after,
.navbar.scrolled .nav-right a::after {
    background: var(--text-main);
}

.navbar.scrolled .logo {
    height: 100px;
    filter: none;
}



/* =========================
   HERO
   ========================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    padding: 0 8% 12%;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(36,27,25,0.55),
        rgba(36,27,25,0.25)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--accent-secondary);
}

/* =========================
   BUTON
   ========================= */
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 34px;
  border-radius: 28px;

  background-color: var(--accent-primary);
  color: #ffffff;

  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;

  text-decoration: none;
  border: none;
  cursor: pointer;

  box-shadow: 0 6px 18px rgba(0,0,0,0.18);

  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-button:hover {
  background-color: #9c5322;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}


/* =========================
   TITLURI EDITORIALE
   ========================= */
.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 100px;
}

/* text mare, transparent */
.section-title-bg {
    display: block;
    font-weight: 700;
    font-size: clamp(4rem, 10vw, 9rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(202, 143, 91, 0.18);
    line-height: 1;
    user-select: none;
}

/* titlu principal */
.section-title h2 {
    margin-top: -40px;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.04em;

    color: #241B19;
}

/* descriere */
.section-title p {
    margin-top: 20px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #CA8F5B;
    opacity: 0.8;
}

/* titluri pe fundal închis */
.dark-section .section-title-bg {
    color: rgba(255,255,255,0.12);
}

.dark-section .section-title h2 {
    color: #CA8F5B;
}
.dark-section .section-title p {
    color: #ffffff;
}

}

/* =========================
   ABOUT IMAGES
   ========================= */
.about-images-overlap {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: -20px;
    margin-bottom: -160px;
    z-index: 10;
    position: relative;
}

.about-images-overlap img {
    width: 220px;
}

/* =========================
   QUOTE BAND
   ========================= */
.quote-band {
    background: var(--accent-primary);
    padding: 180px 10% 80px;
    text-align: center;
}

.quote-band p {
    font-family: 'Calligraffitti', cursive;
    font-size: 1.6rem;
    color: #fff;
}

/* =========================
   ACCORDION SERVICII
   ========================= */
.accordion {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion.active + .panel {
    max-height: 300px;
}

/* =========================
   EVENIMENTE
   ========================= */
#evenimente ul {
    max-width: 520px;
    margin: 40px auto;
    line-height: 1.8;
}

/* =========================
   ONG
   ========================= */
#ong {
    background: var(--green);
    color: #fff;
}

#ong img {
    width: 100%;
}

/* =========================
   BLOG
   ========================= */
.blog-carousel {
    overflow: hidden;
    cursor: grab;
}

.blog-track {
    display: flex;
    gap: 40px;
    padding: 0 10%;
}

.blog-card {
    min-width: 320px;
    background: #fff;
    padding: 32px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card.active {
    transform: scale(1.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =========================
   CONTACT
   ========================= */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 32px;
}

.contact-card {
    background: #fff;
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.15);
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    margin-bottom: 16px;
    padding: 6px 0;
    background: transparent;
}

/* =========================
   HARTĂ MICĂ
   ========================= */
.map-container {
    margin-top: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

/* =========================
   REVIEWS
   ========================= */
#recenzii p {
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-center .logo {
        height: 72px;
    }

    .about-images-overlap img {
        width: 140px;
    }

    .quote-band {
        padding-top: 140px;
    }
}

@media (max-width: 768px) {
  .hero-content {
    padding-bottom: 40px;
  }
}


/* =====================================================
   SERVICII – EDITORIAL, FĂRĂ ICONURI
   ===================================================== */

.services-section {
    padding-top: 160px;
}

/* mutăm titlul mic mai jos și îl suprapunem */
.services-title {
    position: relative;
    margin-bottom: 120px;
}

/* GRID SERVICII */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;
}

/* CARD SERVICIU */
.service-item {
    border-top: 1px solid rgba(0,0,0,0.15);
    padding-top: 24px;
}

/* BUTON CLICK */
/* BUTON SERVICIU – VARIANTA ELEGANTA */
.service-toggle {
    all: unset;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    padding: 16px 12px;

    border-radius: 6px;

    transition: background-color 0.3s ease;
}

/* hover discret */
.service-item:hover .service-toggle {
    background-color: rgba(202, 143, 91, 0.06);
}



/* TEXT SCURT */
.service-intro {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.75;
}

/* CONTINUT ASCUNS */
.service-content {
    max-height: 0;
    overflow: hidden;

    opacity: 0;
    transform: translateY(-8px);

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
}

.service-item.active .service-content {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   SERVICII – IMAGINI EDITORIALE STABILE
   ========================= */

.service-image {
    width: 100%;
    height: 200px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    margin-bottom: 24px;

    transition: transform 0.6s ease, filter 0.6s ease;
}

/* micro-animatie hover */


/* =====================================================
   SERVICII – 6 CARDURI EDITORIALE
   ===================================================== */

.services-section {
    padding-top: 120px;
}

/* titlu suprapus */
.services-title {
    position: relative;
    margin-bottom: 120px;
}

.services-heading {
    position: relative;
    top: 40px;
}

/* GRID */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 64px;
}

/* CARD */
.service-item {
    border-top: 1px solid rgba(0,0,0,0.15);
    padding-top: 24px;

    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
}

/* IMAGINE */
.service-image {
    width: 100%;
    height: 200px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    margin-bottom: 20px;

    transition: transform 0.6s ease;
}

.service-item:.service-image {
    transform: scale(1.03);
}

/* =========================
   BUTON SERVICIU – EVIDENT
   ========================= */

.service-toggle {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    width: 100%;
    padding: 12px 0;

    border-bottom: 1px solid rgba(0,0,0,0.1);
}


/* TITLU */
.service-toggle h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 600;

    display: inline-block;
    padding: 4px 10px;

    background: rgba(202,143,91,0.18);
}

/* TEXT SCURT */
.service-intro {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.75;
}

/* CONTINUT EXTINS */
.service-content {
    max-height: 0;
    overflow: hidden;

    opacity: 0;
    transform: translateY(-8px);

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        transform 0.4s ease;

    margin-top: 16px;
}

.service-item.active .service-content {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   SĂGEATĂ SERVICII
   ========================= */

.service-arrow {
    font-size: 1.6rem;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    opacity: 0.6;
}

/* când e deschis */
.service-item.active .service-arrow {
    transform: rotate(90deg);
    opacity: 1;
}

/* =====================================================
   SERVICII – VARIANTA FINALĂ CURATĂ
   ===================================================== */

.services-section {
    padding-top: 160px;
}

.services-title {
    position: relative;
    margin-bottom: 120px;
}

.services-heading {
    position: relative;
    top: 40px;
}

/* GRID */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 64px;
}

/* CARD */
.service-item {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    border-top: none !important;
}


/* IMAGINE FIXĂ */
.service-image {
    width: 100%;
    height: 200px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    margin-bottom: 20px;
}

/* BUTON */
.service-toggle {
    all: unset;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    width: 100%;
    padding: 12px 0;
    text-align: center;
}

/* TEXT */
.service-text {
    text-align: left;
    max-width: 80%;
}


.service-toggle h3 {
    margin: 0 0 4px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}


/* LINIE SUB TITLU (ANIMATĂ) */
.service-toggle h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-primary);
    transition: width 0.4s ease;
}

.service-item:hover h3::after,
.service-item.active h3::after {
    width: 100%;
}

.service-intro {
    font-size: 0.9rem;
    opacity: 0.7;
}


/* SĂGEATĂ */
.service-arrow {
    font-size: 1.4rem;
    opacity: 0.4;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-item:hover .service-arrow {
    opacity: 0.7;
}

.service-item.active .service-arrow {
    transform: rotate(90deg);
    opacity: 1;
}


/* CONTINUT EXTINS */
.service-content {
    max-height: 0;
    overflow: hidden;

    opacity: 0;
    transform: translateY(-6px);

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        transform 0.4s ease;

    margin-top: 16px;
}

.service-item.active .service-content {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   FIX: FARA ANIMATIE PE IMAGINI SERVICII
   ========================= */

.service-image {
    transform: none !important;
    transition: none !important;
}

.service-item:hover .service-image {
    transform: none !important;
}

/* =========================
   FIX FINAL: FARA MISCARE PE IMAGINI SAU CARD
   ========================= */

/* blocam orice miscare a cardului */
.service-item {
    transform: none !important;
    transition: none !important;
}

/* blocam orice miscare a imaginii */
.service-image {
    transform: none !important;
    transition: none !important;
}

.service-item:hover .service-image {
    transform: none !important;
}

/* =========================
   CONTACT – LAYOUT NOU
   ========================= */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;

    max-width: 1100px;
    margin: 60px auto 0;
    padding: 0 20px;
}


/* CONTACT RAPID */
.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-quick a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    opacity: 0.8;
}

.contact-quick a:hover {
    opacity: 1;
}

/* FORMULAR */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    padding: 8px 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    position: relative;
}

.contact-form button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: currentColor;
}

/* SOCIAL MEDIA */
.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-socials a {
    text-decoration: none;
    color: var(--color-text-main);
    opacity: 0.7;
}

.contact-socials a:hover {
    opacity: 1;
}

/* ADRESĂ */
.contact-address {
    margin-top: 60px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* HARTĂ MICĂ */
.small-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    margin-top: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* CONTACT LAYOUT */
/* LAYOUT GENERAL */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;

    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

/* STÂNGA */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-quick a {
    display: flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;
    color: var(--color-text-main);
    font-size: 1rem;
    opacity: 0.85;
}

.contact-quick svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* SOCIAL */
.contact-socials p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-text-main);
    opacity: 0.6;

    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


/* FORMULAR */
.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.12);
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    padding: 8px 0;
    font-family: 'Montserrat', sans-serif;
}

/* ADRESĂ + HARTĂ */
.contact-address,
.map-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.small-map iframe {
    width: 100%;
    height: 260px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

section {
    scroll-margin-top: 160px;
}


@media (min-width: 1024px) {
  .menu-toggle,
  .hamburger,
  .mobile-menu-toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {

  section {
    padding: 72px 16px;
  }

  body {
    font-size: 15px;
    line-height: 1.65;
  }

}

@media (max-width: 768px) {

  section {
    padding: 72px 16px;
  }

  body {
    font-size: 15px;
    line-height: 1.65;
  }

}


@media (max-width: 768px) {

  .navbar {
    padding: 16px 20px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-center .logo {
    height: 64px;
  }

}

@media (max-width: 768px) {

  .hero {
    min-height: 100vh;
    padding: 0 20px 64px;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-button {
    margin-top: 24px;
    padding: 14px 32px;
  }

}

@media (max-width: 768px) {

  .section-title {
    margin-bottom: 64px;
  }

  .section-title-bg {
    font-size: 3rem;
    letter-spacing: 0.06em;
  }

  .section-title h2 {
    margin-top: -20px;
    font-size: 1.7rem;
  }

  .section-title p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

}

@media (max-width: 768px) {

  .about-images-overlap {
    gap: 12px;
    margin-bottom: -80px;
  }

  .about-images-overlap img {
    width: 110px;
  }

}

@media (max-width: 768px) {

  .quote-band {
    padding: 120px 20px 64px;
  }

  .quote-band p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

}

@media (max-width: 768px) {

  .services-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-image {
    height: 180px;
  }

  .service-toggle {
    flex-direction: row;
    gap: 16px;
  }

  .service-text {
    max-width: 100%;
  }

  .service-toggle h3 {
    font-size: 1.1rem;
  }

  .service-intro {
    font-size: 0.9rem;
  }

}

@media (max-width: 768px) {

  .service-content {
    transform: translateY(-4px);
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

}

@media (max-width: 768px) {

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-box {
    padding: 28px 20px;
  }

  .contact-address {
    margin-top: 40px;
  }

}

/* =========================
   MENIU MOBIL
   ========================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-main);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;

  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);

  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-main);
}

/* activ */
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hamburger {
  font-size: 1.8rem;
  cursor: pointer;
  color: #ffffff;
  z-index: 1001;
}

/* când navbar e scrollat */
.navbar.scrolled .hamburger {
  color: var(--text-main);
}

@media (max-width: 768px) {

  .hero {
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  .hero-content {
    width: 100%;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    margin: 0 auto;
    text-align: center;
  }

  .hero-button {
    margin: 24px auto 0;
  }

}

@media (max-width: 768px) {
  .hero-subtitle {
    max-width: 280px;
  }
}

/* =========================
   BUTOANE – VARIANTA DE BAZĂ
   ========================= */

.btn,
.hero-button,
.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 32px;
  border-radius: 28px;

  background-color: var(--accent-primary);
  color: #ffffff;

  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;

  text-decoration: none;
  border: none;
  cursor: pointer;

  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover,
.hero-button:hover,
.service-button:hover {
  background-color: #9c5322; /* puțin mai închis decât accent */
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {

  .btn,
  .hero-button,
  .service-button {
    padding: 14px 28px;
    font-size: 0.9rem;
    border-radius: 26px;
  }

}

