/* CSS reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Her styler jeg hvordan siden skal se ud*/
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fadadd;
  color: #333;
  font-size: 20px;
  line-height: 1.5em;
}
/* Her styler jeg min header */
header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8bbd0;
  padding: 15px;
  z-index: 9999;
}
/* her ændrer jeg på farven og placeringen af topnav */
.topnav {
  background-color: #f8bbd0;
  display: flex;
}
/* Her ændrer jeg størrelsen på header og farven på teksten, samt fjerner underscore*/
header a {
  color: #333;
  padding: 30px;
  text-decoration: none;
}
/* Her sætter jeg dekoration når man scroler forbi topnavigationen*/
.topnav a:hover {
  background-color: #ddd;
  color: #333;
}
/*Her styler jeg mit ur */
.tid {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 25px;
  display: flex;
  justify-content: baseline;
  margin-left: 50px;
}
/*Her styler jeg min box på forsiden */
.velkommen {
  background-color: #fce4ec;
  display: flex;
  justify-content: center;
  padding: 50px;
  font-size: 50px;
  margin-bottom: 50px;
}
/* Her styler jeg min box som står under velkomst på forsiden*/
.tekst {
  background-color: #fce4ec;
  display: flex;
  justify-content: center;
  padding: 10px;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 50px;
}
p {
  padding-top: 20px;
}
/*Her styler jeg mine åbningstider, at de står på række med mit slideshow*/
.opening-hours {
  max-width: 700px;
  max-height: 700px;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.opening-hours h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

.status-box {
  background: #eef6ff;
  border: 1px solid #cfe3ff;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.status-label {
  margin: 0 0 6px 0;
  font-weight: bold;
}

.status-text {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  /* color: #1d4ed8; */
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.day-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.day-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
}

.time {
  color: #555;
}

.closed-day .time {
  color: #b91c1c;
  font-weight: 600;
}

.today {
  background: #f0fdf4;
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
}

.open {
  color: #15803d;
}

.closed {
  color: #b91c1c;
}
.opening-slide {
  display: flex;
  flex-direction: row;
  padding: 50px;
}
/* Her styler jeg mit slideshow hvor store billeder skal være, 
hvor de skal være, samt hvor knapperne skal sidde */
img {
  width: 100%;
  height: auto;
  display: block;
}
.slideshow-container {
  width: 700px;
  height: 700px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  grid-template-areas: "slide";
  margin: 0 auto;
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -24px;
  padding: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  text-decoration: none;
  transition: 0.5s ease;
  z-index: 2;
}
.next {
  right: 0;
}
.prev:hover,
.next:hover {
  color: white;
}
/* Her styler jeg hvordan boxne skal sidde på forsiden og på siden med udvalg */
.udvalg {
  background-color: #fce4ec;
  display: flex;
  justify-content: center;
  padding: 50px;
}
/* Denne styler boxen på udvalgssiden*/
.udvalg1 {
  background-color: #fce4ec;
  display: flex;
  justify-content: center;
  padding: 50px;
  font-size: 25px;
  margin-bottom: 50px;
}
/* Her bliver mine udvalgs kasser stylet + jeg tilsætter et hover effekt */
.kasse {
  background-color: #fce4ec;
  max-width: 300px;
  max-height: 300px;
  margin: 20px;
  padding: 20px;
  flex-direction: row;
  transition: 0.5s;
  display: flex;
}
.kasse div {
  background: #fce4ec;
  margin: 20px;
  padding: 10px;
}
.kasse:hover {
  transform: scale(1.5);
  z-index: 2;
}
/* Her tilpasser jeg mine 3 container fra forsiden og udvalgssiden*/
.slikudvalg-container {
  display: flex;
  justify-content: center;
}
.slikudvalg-container2 {
  display: flex;
  justify-content: center;
}
.slikudvalg-container3 {
  display: flex;
  justify-content: center;
}
/* Her tilpasser jeg min footer og indholdet */
.footer {
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8bbd0;
  padding: 15px;
}

.footer div {
  top: 0;
  display: flex;
  justify-content: space-between;
  background-color: #f8bbd0;
  padding: 15px;
  margin: 0 100px;
}
/*Kontakt mig fanen*/
.kontaktos {
  background-color: #fce4ec;
  display: flex;
  justify-content: center;
  padding: 50px;
  font-size: 50px;
  margin-bottom: 50px;
}
/* Her tilpasser jeg udssendet på mit kontakt formular */
.formular {
  display: flex;
  justify-content: center;
  margin: auto;
  font-size: 20px;
}
.form-row {
  margin-bottom: 30px;
  font-size: 20px;
}

.form-input {
  display: block;
  font-size: 30px;
  padding-left: 10px;
}

.form-error {
  color: red;
}
