/*
handy:
<link rel="stylesheet" href="{% static 'css/custom.css' %}" type="text/css">
*/

/*###### Custom.css ######*/

html, body {
    height: 100%;
}

/*###### Navbar ######*/

.navbar-brand {
    font-weight: bold;
}

/*###### Page titles ######*/

.thetitle {
    color: blue;
}

.thesubtitle {
    color: blue;
}

.opage-white {
    background-color: rgba(255, 255, 255, 0.7); padding: 10px; display: inline-block;
}

.jumbotron {
    background-image: url('pad-naar-je-afbeelding.jpg'); /* Vervang dit door een mooie foto van de pluktuin */
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 2rem;
}

.jumbotron h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/*###### Messagebox ######*/

.callout {
  position: fixed;
  top: 35px;
  left: 20px;
  margin-left: 20px;
  max-width: 400px;
  min-width: 300px;
  display: none;
}

.callout-header {
  padding: 25px 15px;
  background: #555;
  font-size: 30px;
  color: white;
}

.callout-container {
  padding: 15px;
  background-color: #ccc;
  color: black
}

/*###### Modal ######*/

.closebtn {
  position: absolute;
  top: 5px;
  right: 15px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.closebtn:hover {
  color: lightgrey;
}

.modal-title {
  font-weight: bold;
}

div.modal-body input[type=text] {
    margin-bottom: 6px;
}

/*###### Footer ######*/

.footer {
  background-color: black;
  color: white;
  text-align: center;
  vertical-align: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;

}

footer ul {
  list-style: none;
  padding: 0;
}

footer li {
  display: inline;
 margin-right: 10px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

/*###### Main Content en Scrollable ######*/

.main-content {
  margin-top: 14px;
  /* Hoogte van de viewport - hoogte van de footer */
  min-height: calc(100vh - 140px);
}

.panel-scrollable {
  height: calc(100vh - 150px);
  /* Verticale schuifbalk bij overflow */
  overflow-y: auto;
  border-width:2px;
  border-color:black;
  border-style:solid;
  margin-right: 15px;
  margin-left: 15px;
}

/*###### Overig ######*/

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.item-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    background-color: #f9f9f9;
}

.item-card img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}


/*###### Accordion ######*/

.accordion__title {
  cursor: pointer;
  margin: 0;
  position: relative;
  background-color: #F0F8FF;
}

.accordion__icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.accordion__icon .line-01,
.accordion__icon .line-02 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #272343;
  transition: 0.3s;
}

.accordion__icon .line-02 {
  transform: rotate(90deg);
}

.accordion__content {
  display: none;
}

.accordion--open .line-02 {
  transform: rotate(0deg);
}

.accordion {
  margin-top: -1px;
  border-top: 1px solid #272343;
  border-bottom: 1px solid #272343;
}

.accordion__title {
  padding: 20px 16px;
  font-size: 20px;
  transition: 0.2s;
}

.accordion__content {
  padding: 24px 16px 16px;
}

.accordion__content p {
  margin: 0 0 16px;
}

.accordion__title:hover {
  background-color: #433d6f;
  color: #fff;
}

.accordion__title:hover .line-01,
.accordion__title:hover .line-02 {
  background-color: #fff;
}

.accordion--open .accordion__title {
  background-color: #272343;
  color: #fff;
}

.accordion--open .line-01,
.accordion--open .line-02 {
  background-color: #fff;
}


