
/* Reset */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #E6DAC2; /* crem */
  color: #333;
  line-height: 1.6;
}
header {
  padding: 40px 20px;
  text-align: center;
}
header .logo {
  height: 50px;
}
nav {
  margin-left: auto;
}
nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  font-size: 1rem;
}
nav a:hover {
  text-decoration: underline;
}
main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}
h1, h2 {
  color: #4C5335; /* verde mai inchis */
  margin-bottom: 15px;
}
h3 {
  margin-top: 20px;
  color: #4C5335;
}
.btn {
  display: inline-block;
  background-color: #4C5335;
  color: #E6DAC2;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 10px;
  text-decoration: none;
}
.btn:hover {
  background-color: #6B7552;
}
.video-section video {
  width: 100%;
  max-width: 720px;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
}
footer {
  text-align: center;
  padding: 15px 10px;
  background-color: #A2A98B;
  color: white;
  margin-top: 40px;
  font-size: 0.9rem;
}
footer a {
  color: white;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  nav {
    display: none; /* Pentru versiunea mobila se poate adauga meniu hamburger */
  }
  header {
  padding: 40px 20px;
  text-align: center;
}
  main {
    padding: 10px;
  }
}



header {
  padding: 40px 20px;
  text-align: center;
}



body {
  background-color: #f5f5f5;
  
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}



header {
  padding: 40px 20px;
  text-align: center;
}

header nav a {
  color: white;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 15px;
  text-decoration: none;
  text-shadow: 1px 1px 3px black;
}

header .logo {
  display: none; /* hide logo since pipe image is decorative */
}



header {
  padding: 40px 20px;
  text-align: center;
}

header nav a {
  color: white;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 15px;
  text-decoration: none;
  text-shadow: 1px 1px 3px black;
}

header .logo {
  display: none;
}


body {
  background-color: #fefefe;
  
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: black;
}

h1, h2, h3, p, a, li, span, div {
  color: black !important;
}



header {
  padding: 40px 20px;
  text-align: center;
}

header nav {
  display: flex;
  gap: 30px;
}

header nav a {
  color: black;
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: none;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0); /* transparent */
  text-shadow: none;
}



body {
  
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #fefefe;
  color: black;
}


/* Responsivitate pentru ecrane mici */
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 10px;
  }

  header nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  header nav a {
    display: block;
    margin: 8px 0;
    font-size: 18px;
  }

  img.logo {
    max-width: 100%;
    height: auto;
  }

  main img {
    width: 100% !important;
    height: auto;
  }
}


@media (max-width: 768px) {
    nav {
        display: none !important;
    }
}


/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #f0f0f0;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.mobile-menu a {
  padding: 15px;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #ddd;
}

/* Responsive rules */
@media (max-width: 768px) {
  nav {
    display: none !important;
  }
  .hamburger {
    display: block;
  }
}


/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  background-color: #f0f0f0;
  z-index: 1000;
}

/* Mobile menu (dropdown under hamburger) */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  position: static;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-top: 1px solid #ccc;
}

.mobile-menu a {
  padding: 15px;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #ddd;
}

/* Responsive rules */
@media (max-width: 768px) {
  nav {
    display: none !important;
  }
  .hamburger {
    display: block;
  }
}


/* Reset link styles in mobile menu */
.mobile-menu a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-family: sans-serif;
  background-color: #ffffff;
  display: block;
}
.mobile-menu a:hover {
  background-color: #f0f0f0;
}

/* Ascundem meniul <nav> pe mobil */
@media (max-width: 768px) {
  nav {
    display: none !important;
  }
}


/* Imagini responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Ascundem meniul normal pe mobil */
@media (max-width: 768px) {
  nav {
    display: none !important;
    visibility: hidden;
  }

  body {
    overflow-x: hidden;
  }
}


/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  background-color: #f9f9f9;
  z-index: 1000;
}

/* Mobile menu dropdown */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-menu a {
  padding: 15px;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #ddd;
}

/* Only show hamburger on mobile */
@media (max-width: 768px) {
  nav {
    display: none !important;
  }

  .hamburger {
    display: block;
  }

  body {
    overflow-x: hidden;
  }
}


.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  width: 100%;
  border-top: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 10px 0;
}

.mobile-menu a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  border-bottom: 1px solid #eee;
}

.mobile-menu a:hover {
  background-color: #f9f9f9;
}


@media (max-width: 768px) {
  nav {
    display: none !important;
    visibility: hidden !important;
  }
}


@media (max-width: 768px) {
  nav a {
    font-size: 14px !important;
    padding: 10px !important;
  }
}
