/* css/base.css */

/* Reset de bază & Stiluri generale pentru elemente */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

/* === Logo în Navbar - Stabilizare dimensiune === */
#navbar .logo {
  flex-shrink: 0; /* Foarte important: previne comprimarea containerului logo-ului */
  display: flex;
  align-items: center;
}

#navbar .logo picture,
#navbar .logo img {
  height: 50px;
  width: auto;
  min-width: 150px; /* Ajustează această valoare la dimensiunea dorită a logo-ului tău */
  object-fit: contain;
}

#navbar .logo img {
  display: block;
}

body {
  font-family: var(--font-main);
  font-weight: var(--fw-regular);
  font-size: 1rem;
  line-height: var(--line-height);
  color: var(--clr-black);
  background-color: var(--clr-white);
  overflow-x: hidden;
}

/* Titluri */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 { font-size: 4rem; font-weight: 700; } /* 64px */
h2 { font-size: 2rem; font-weight: 600; } /* 32px */
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

/* Paragrafe */
p {
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Linkuri */
a {
  color: var(--clr-gold);
  text-decoration: none;
}
a:hover {
  color: var(--clr-gold-hover);
}

/* Liste */
ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.25rem;
}

/* Imagini */
img {
  max-width: 100%;
  height: auto;
  display: block;
}