@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");

:root {
  --h1: 40px;
  --h2: 32px;
  --h3: 28px;
  --h4: 24px;
  --h5: 20px;
  --h6: 16px;

  --sub: 20px;

  --label: 16px;
  --ls: 5px;

  --body: 14px;

  --color-dark-100: rgba(33, 37, 41, 1);
  --color-dark-75: rgba(33, 37, 41, 0.75);
  --color-dark-50: rgba(33, 37, 41, 0.5);
  --color-dark-25: rgba(33, 37, 41, 0.25);

  --color-white-100: rgba(255, 255, 255, 1);
  --color-white-75: rgba(255, 255, 255, 0.75);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-25: rgba(255, 255, 255, 0.25);

  --color-green-100: rgba(116, 198, 157, 1);
  --color-green-75: rgba(116, 198, 157, 0.75);
  --color-green-50: rgba(116, 198, 157, 0.5);
  --color-green-25: rgba(116, 198, 157, 0.25);

  --font-1: "Crimson Text", serif;
  --font-2: "Work Sans", sans-serif;

  --shadow-1: 3px 4px 12px 1px rgba(0, 0, 0, 0.25);
}
.common-title {
  margin: 10px 0px 10px 0px;
  text-transform: capitalize;
  font-family: var(--font-1);
  font-weight: bold;
}

.label {
  margin-top: 10px;
  font-family: var(--font-2);
  font-size: var(--label);
  letter-spacing: var(--ls);
  text-transform: uppercase;
  font-weight: 700;
  gap: 20px;
}

/**
* ! Style rules for Navbar 
*/

/* Banner-ul de cookie-uri */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #003200; /* Culoare profesională */
  color: #ffffff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: none; /* Ascunde bannerul inițial */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Umbra subtilă */
}

/* Container pentru conținutul bannerului */
.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Textul din banner */
.cookie-container p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Link-ul către politica de cookie-uri */
.cookie-container a {
  color: #3498db; /* Culoare accent */
  text-decoration: underline;
}

.cookie-container a:hover {
  color: #2980b9; /* Culoare accent la hover */
}

/* Butoanele de Accept și Refuz */
.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#accept-cookies {
  background-color: #136207; /* Verde pentru Accept */
  color: white;
}

#accept-cookies:hover {
  background-color: #0D6200; /* Verde mai închis la hover */
}

#decline-cookies {
  background-color: #e74c3c; /* Roșu pentru Refuz */
  color: white;
}

#decline-cookies:hover {
  background-color: #c0392b; /* Roșu mai închis la hover */
}

/* Style rules for responsive images */
.responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}


/* Common style rules */

.color-line2 {
  height: 5px;
  width: 100%;
  background: linear-gradient(174.21deg, #003200 0%, #136207 100%);
}

/* Hero section */
.hero2 {
  background-color: #f4f3f5;
}

.hero3 {
  background: linear-gradient(174.21deg, #003200 0%, #136207 100%);
}


.logo_header--text {
  color: #136207;
}

.hide {
  display: none;
}

/* Footer */
.footerWrapper {
  background: linear-gradient(174.21deg, #136207 0%, #003200 100%);
}

.logo_footer--text {
  color: #CCCCCC;
}

@media (max-width: 820px) { 
  .d-820px{
    text-align: center;
    margin-bottom: 10px;
  }
}


