* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------------- SCROLLBAR --------------*/
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #42A730;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #ff0000;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #333;
  }
  /*-------------------------------------------------------------*/


body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #42A730;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style-type: none;
}

.nav-links li {
    display: inline;
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 5px 10px;
}

.nav-links a:hover {
    background-color: #ffffff;
    color: #42A730;
    border-radius: 4px;
    transition: 0.3s;
}


/*---------------------------- Stil pentru secțiunea cu titlul -----------------------------------*/
.hero {
    text-align: center;
    padding: 50px 0;
    background-color: #f4f4f4; /* Schimbă culoarea de fundal după preferințe */
}

.hero h1 {
    font-size: 4em;
    color: #42A730;
    font-weight: bold;
    margin: 0;
}


/*++++++++++++++++++++++++++++++++++ Stil pentru Parallax +++++++++++++++++++++++++++++++++++*/
.parallax {
    background-image: url('POZE_STIVUITOR/Stivuitor_CA_1200.jpg'); /* Înlocuiește cu URL-ul imaginii tale */
    height: 68vh; /* Ocupă toată înălțimea ecranului */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*---------------- ANEXA ---------------------------*/
.anexa-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(135deg, #f9f9f9, #e3e3e3);
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    transition: transform 0.3s ease-in-out;
}

.anexa-container:hover {
    transform: scale(1.03);
}

.anexa-content {
    flex: 1;
    padding-right: 20px;
}

.anexa-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.anexa-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.anexa-action {
    text-align: right;
}

.anexa-btn {
    padding: 12px 30px;
    background-color: #42A730;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(66, 167, 48, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.anexa-btn:hover {
    background-color: #369922;
    box-shadow: 0 6px 20px rgba(66, 167, 48, 0.4);
}





/*----------------------------------- Footer ---------------------------------*/
footer {
    background-color: #333; /* Dark background color */
    color: #42A730; /* White text color */
    padding: 20px 0; /* Padding around the footer */
    text-align: left; /* Align text to the left */
}

.footer-container {
    display: flex; /* Use flexbox for layout */
    justify-content: space-around; /* Space between columns */
}

.footer-column {
    flex: 1; /* Make each column take equal space */
    padding: 0 20px; /* Padding inside each column */
}

.footer-column h3 {
    border-bottom: 1px solid #555; /* Underline for headings */
    padding-bottom: 10px; /* Space below headings */
}

.footer-column ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

.footer-column ul li {
    margin: 10px 0; /* Space between list items */
}

footer .footer-bottom a {
    color: orange; /* Aici se definește culoarea portocalie */
    text-decoration: none; /* Elimină sublinierea */
}

footer .footer-bottom a:hover {
    text-decoration: underline; /* Sublinierea apare la hover */
}


.footer-column a {
    color: #ffffff; /* White link color */
    text-decoration: none; /* Remove underline from links */
}

.footer-column a:hover {
    text-decoration: underline; /* Underline on hover */
}

.footer-bottom {
    text-align: center; /* Center the copyright text */
    margin-top: 20px; /* Space above copyright */
}

