/* ==========================================================
   ARTĂ ȘI PASIUNE — SITE PRINCIPAL
   ========================================================== */

:root {
  --burgundy: #5a1825;
  --burgundy-dark: #351018;
  --ivory: #f7f0e5;
  --cream: #eee0cc;
  --gold: #b69a68;
  --text: #4c3936;
}


/* ==========================================================
   RESET
   ========================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Cormorant Garamond", Georgia, serif;
  background: var(--ivory);
  color: var(--burgundy-dark);
}


/* ==========================================================
   HERO
   ========================================================== */

.hero {
  position: relative;
  min-height: 100vh;

  background-image: url("../imagini/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(24, 10, 10, 0.58) 0%,
      rgba(24, 10, 10, 0.35) 38%,
      rgba(24, 10, 10, 0.08) 70%,
      rgba(24, 10, 10, 0.04) 100%
    );

  z-index: 1;
}


/* ==========================================================
   MENIU
   ========================================================== */

.navbar {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 92px;

  padding: 0 6%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(247, 240, 229, 0.93);

  border-bottom:
    1px solid rgba(90, 24, 37, 0.16);

  z-index: 10;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  width: 135px;
  height: auto;
  display: block;
}

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

.menu a {
  position: relative;

  text-decoration: none;

  color: var(--burgundy-dark);

  font-size: 16px;
  font-weight: 600;

  letter-spacing: 1.4px;

  transition: opacity 0.25s ease;
}

.menu a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: var(--burgundy);

  transform: translateX(-50%);

  transition: width 0.3s ease;
}

.menu a:hover {
  opacity: 0.72;
}

.menu a:hover::after {
  width: 100%;
}


/* ==========================================================
   TEXT HERO
   ========================================================== */

.hero-content {
  position: relative;

  z-index: 3;

  min-height: 100vh;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: flex-start;

  padding: 120px 8% 50px;

  max-width: 950px;

  color: var(--ivory);
}

.hero-small {
  margin-bottom: 14px;

  font-size:
    clamp(14px, 1.2vw, 18px);

  font-weight: 500;

  letter-spacing: 4px;
}

.hero-title {
  font-size:
    clamp(3.2rem, 6vw, 6.5rem);

  font-weight: 400;

  line-height: 1;

  letter-spacing: 0.04em;

  white-space: nowrap;

  text-shadow:
    0 3px 20px rgba(0, 0, 0, 0.22);
}

.hero-tagline {
  margin-top: 20px;

  font-size:
    clamp(1.5rem, 2.5vw, 2.5rem);

  font-weight: 400;
  font-style: italic;

  letter-spacing: 0.02em;

  color: #f5e5c9;

  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.25);
}


/* ==========================================================
   DESPRE NOI
   ========================================================== */

.about {
  position: relative;

  padding: 120px 7% 125px;

  background:
    radial-gradient(
      circle at 86% 45%,
      rgba(182, 154, 104, 0.13),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #f7f0e5 0%,
      #f3e8d8 100%
    );
}

.about-container {
  width: min(100%, 1350px);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1.05fr 0.95fr;

  gap: 85px;

  align-items: center;
}

.about-content {
  max-width: 690px;
}

.about-content h2 {
  color: var(--burgundy);

  font-size:
    clamp(48px, 5vw, 72px);

  font-weight: 400;

  line-height: 1;
}

.about-motto {
  margin-top: 18px;

  color: var(--burgundy);

  font-size:
    clamp(20px, 2vw, 27px);

  font-style: italic;

  line-height: 1.3;
}

.about-line {
  width: 78px;
  height: 1px;

  margin: 27px 0 30px;

  background: var(--gold);
}


/* TEXT DESPRE NOI — JUSTIFICAT */

.about-content > p,
.about-more p {
  margin-bottom: 18px;

  color: var(--text);

  font-size: 18px;

  line-height: 1.7;

  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-more {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.7s ease,
    opacity 0.5s ease,
    margin 0.5s ease;
}

.about-more.open {
  max-height: 1200px;

  opacity: 1;

  margin-top: 5px;
}

.read-more-btn {
  margin-top: 14px;

  padding: 10px 0 8px;

  display: inline-flex;

  align-items: center;

  gap: 13px;

  border: 0;

  border-bottom:
    1px solid var(--gold);

  background: transparent;

  color: var(--burgundy);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 2px;

  cursor: pointer;
}

.read-arrow {
  font-size: 17px;
}

.about-visual {
  position: relative;

  display: flex;

  justify-content: center;
}

.about-image-frame {
  position: relative;

  width: min(100%, 570px);

  padding: 14px;

  border:
    1px solid rgba(182, 154, 104, 0.42);
}

.about-image-frame::before {
  content: "";

  position: absolute;

  top: -18px;
  right: -18px;

  width: 70%;
  height: 70%;

  border-top:
    1px solid rgba(90, 24, 37, 0.24);

  border-right:
    1px solid rgba(90, 24, 37, 0.24);

  pointer-events: none;
}

.about-image-frame img {
  width: 100%;
  height: auto;

  display: block;
}


/* ==========================================================
   PROIECTELE NOASTRE
   ========================================================== */

.projects {
  position: relative;

  padding: 115px 7% 125px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f3e8d8 0%,
      #ead8bd 100%
    );
}


/* tranziție discretă din Despre noi */

.projects::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: min(86%, 1200px);
  height: 1px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(182, 154, 104, 0.50),
      transparent
    );
}


/* element decorativ foarte discret */

.projects::after {
  content: "♪";

  position: absolute;

  right: 5%;
  bottom: -80px;

  color:
    rgba(90, 24, 37, 0.035);

  font-size: 360px;

  line-height: 1;

  pointer-events: none;
}

.projects-container {
  position: relative;

  z-index: 2;

  width: min(100%, 1350px);

  margin: 0 auto;
}

.projects-heading {
  margin-bottom: 50px;

  text-align: center;
}

.projects-small {
  display: block;

  margin-bottom: 12px;

  color: var(--gold);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 4px;
}

.projects-heading h2 {
  color: var(--burgundy);

  font-size:
    clamp(48px, 5vw, 70px);

  font-weight: 400;

  line-height: 1;
}

.projects-line {
  width: 70px;
  height: 1px;

  margin: 27px auto 0;

  background: var(--gold);
}


/* ==========================================================
   CARD SIMFONIA TOAMNEI
   ========================================================== */

.project-card {
  position: relative;

  width: min(100%, 1180px);
  min-height: 230px;

  margin: 0 auto;

  padding: 55px 65px;

  display: flex;

  align-items: center;

  text-decoration: none;

  overflow: hidden;

  background:
    linear-gradient(
      115deg,
      rgba(53, 16, 24, 0.98),
      rgba(90, 24, 37, 0.94)
    );

  border:
    1px solid rgba(182, 154, 104, 0.48);

  box-shadow:
    0 20px 55px rgba(65, 32, 26, 0.10);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* lumină caldă foarte subtilă */

.project-card::before {
  content: "";

  position: absolute;

  width: 440px;
  height: 440px;

  right: -100px;
  top: -170px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(215, 186, 131, 0.16),
      transparent 67%
    );

  pointer-events: none;
}


/* nota decorativă */

.project-card::after {
  content: "♫";

  position: absolute;

  right: 6%;
  top: 50%;

  transform:
    translateY(-50%)
    rotate(-8deg);

  color:
    rgba(247, 240, 229, 0.055);

  font-size: 170px;

  line-height: 1;

  pointer-events: none;
}

.project-card:hover {
  transform:
    translateY(-5px);

  box-shadow:
    0 28px 70px
    rgba(65, 32, 26, 0.16);
}

.project-content {
  position: relative;

  z-index: 3;

  width: 100%;
}

.project-content h3 {
  max-width: 1000px;

  color: var(--ivory);

  font-size:
    clamp(24px, 2.5vw, 37px);

  font-weight: 400;

  line-height: 1.25;

  letter-spacing: 0.025em;

  white-space: nowrap;
}

.project-link {
  margin-top: 28px;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding-bottom: 7px;

  color: #d8bb83;

  border-bottom:
    1px solid rgba(216, 187, 131, 0.65);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;
}

.project-arrow {
  font-size: 17px;

  transition:
    transform 0.3s ease;
}

.project-card:hover .project-arrow {
  transform:
    translateX(7px);
}


/* ==========================================================
   SECȚIUNI VIITOARE
   ========================================================== */

#galerie,
#contact {
  scroll-margin-top: 90px;
}


/* ==========================================================
   TABLETĂ
   ========================================================== */

@media (max-width: 1050px) {

  .about-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .about-content {
    max-width: 850px;
  }

  .about-visual {
    justify-content: flex-start;
  }

  .project-content h3 {
    white-space: normal;
  }

}


/* ==========================================================
   TELEFON / TABLETĂ MICĂ
   ========================================================== */

@media (max-width: 800px) {

  .navbar {
    height: 78px;

    padding: 0 5%;
  }

  .logo {
    width: 100px;
  }

  .menu {
    gap: 14px;
  }

  .menu a {
    font-size: 11px;

    letter-spacing: 0.5px;
  }

  .hero {
    min-height: 92vh;

    background-position:
      57% center;
  }

  .hero-content {
    min-height: 92vh;

    padding:
      110px 7% 40px;

    max-width: 95%;
  }

  .hero-small {
    letter-spacing: 2px;
  }

  .hero-title {
    white-space: normal;
  }

  .about {
    padding:
      90px 7%;
  }

  .projects {
    padding:
      85px 7% 95px;
  }

  .project-card {
    min-height: 250px;

    padding:
      45px 38px;
  }

  .project-content h3 {
    font-size: 28px;

    white-space: normal;
  }

}


/* ==========================================================
   TELEFOANE MICI
   ========================================================== */

@media (max-width: 520px) {

  .navbar {
    height: auto;

    min-height: 72px;
  }

  .logo {
    width: 82px;
  }

  .menu {
    gap: 9px;
  }

  .menu a {
    font-size: 9px;
  }

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

  .hero-tagline {
    font-size: 28px;
  }

  .about-content > p,
  .about-more p {
    font-size: 17px;
  }

  .about-image-frame {
    padding: 9px;
  }

  .project-card {
    min-height: 270px;

    padding:
      38px 27px;
  }

  .project-content h3 {
    font-size: 25px;

    line-height: 1.3;
  }

  .project-link {
    font-size: 10px;

    letter-spacing: 1.5px;
  }

}


/* ==========================================================
   REDUCERE ANIMAȚII
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .project-card,
  .project-arrow {
    transition: none;
  }

}


/* ==========================================================
   FOOTER INSTITUȚIONAL
   ========================================================== */

.main-footer {
  position: relative;
  width: 100%;

  padding: 58px 7% 30px;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(182, 154, 104, 0.08),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #351018 0%,
      #46141f 55%,
      #351018 100%
    );

  color: rgba(247, 240, 229, 0.78);

  overflow: hidden;
}


/* linie aurie foarte fină sus */

.main-footer::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 86%;
  height: 1px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(182, 154, 104, 0.75),
      transparent
    );
}

.footer-inner {
  width: min(100%, 1250px);
  margin: 0 auto;
}


/* ==================== TITLU ==================== */

.footer-heading {
  margin-bottom: 27px;
}

.footer-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  color: #c6aa77;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 3px;
}

.footer-label::before {
  content: "";

  width: 31px;
  height: 1px;

  background: #b69a68;
}


/* ==================== LINKURI ==================== */

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 13px 0;
}

.footer-links a {
  position: relative;

  padding: 0 23px;

  color: rgba(247, 240, 229, 0.86);

  text-decoration: none;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 16px;
  font-weight: 400;

  transition:
    color 0.25s ease;
}

.footer-links a:first-child {
  padding-left: 0;
}

.footer-links a:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 50%;

  width: 1px;
  height: 12px;

  transform: translateY(-50%);

  background:
    rgba(182, 154, 104, 0.32);
}

.footer-links a::before {
  content: "";

  position: absolute;

  left: 23px;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: #c6aa77;

  transition: width 0.3s ease;
}

.footer-links a:first-child::before {
  left: 0;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a:hover::before {
  width: calc(100% - 46px);
}

.footer-links a:first-child:hover::before {
  width: calc(100% - 23px);
}


/* ==================== LINIE ==================== */

.footer-divider {
  width: 100%;
  height: 1px;

  margin: 39px 0 25px;

  background:
    rgba(247, 240, 229, 0.12);
}


/* ==================== COPYRIGHT ==================== */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  color:
    rgba(247, 240, 229, 0.52);

  font-size: 11px;

  letter-spacing: 0.8px;
}

.footer-location {
  white-space: nowrap;

  color:
    rgba(198, 170, 119, 0.72);

  text-transform: uppercase;

  letter-spacing: 1.5px;
}


/* ==========================================================
   FOOTER — TELEFON / TABLETĂ
   ========================================================== */

@media (max-width: 800px) {

  .main-footer {
    padding:
      48px 7% 28px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;

    gap: 14px;
  }

  .footer-links a {
    padding: 0;
  }

  .footer-links a:not(:last-child)::after {
    display: none;
  }

  .footer-links a::before,
  .footer-links a:first-child::before {
    left: 0;
  }

  .footer-links a:hover::before,
  .footer-links a:first-child:hover::before {
    width: 100%;
  }

  .footer-divider {
    margin:
      32px 0 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 9px;

    line-height: 1.5;
  }

}
