
h1,h2 {
  font-family: "mono45-headline", monospace;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: rgb(67, 67, 67);
  margin-bottom: 32px;
}

/*-------------Knappar---------------*/
.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: black;
  text-decoration: none;
  font-family: "mono45-headline", monospace;
  font-weight: 500;
  font-style: normal;
  border: 2px solid black;
  margin: 10px;
}

.button:hover {
  text-decoration: underline;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/*-------------Hero-Section---------------*/
.hero {
  position: relative;
  width: 100%;
}
  
.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 70%;
  z-index: 5;
}

/*-------------Navigation---------------*/
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: transparent;
  z-index: 10;
  font-family: "mono45-headline", monospace;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  font-size: clamp(0.7rem, 1vw + 0.2rem, 1.0rem); /*Olika storlekar vid olika skärmar*/
}

.nav-links a {
  text-decoration: none;
  color: white; 
}

nav ul li a:hover {
  text-decoration: underline;
}

/*-------------Responsiv-Navigation---------------*/
.hamburger-icon {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .hamburger-icon {
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    background-color: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 250px;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .nav-links.show {
    left: 0; 
  }

  .nav-links a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
  }

  .navbar {
    justify-content: space-between;
    padding: 20px;
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

/*-------------Logo-away---------------*/

@media screen and (max-width: 600px) {
  .logo-img {
    display: none;
  }
}


/*-------------Headerimg-lock-width---------------*/
@media screen and (max-width: 768px) {
  .hero-image {
    height: 400px;
    object-fit: cover;
  }
}

/*-------------Index---------------*/
.book-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 2rem;
}

.book-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 400px;
}

.book-image img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.menu-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 2rem;
}

.menu-image img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.menu-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 400px;
}

.food-philosophy {
  width: 100%;
  padding: 4rem 1rem;
  box-sizing: border-box;
}

.food-philosophy .content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.food-philosophy h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.food-philosophy p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.philosophy-image {
  margin-top: 2rem;
}

.philosophy-image img {
  width: 100%;
  height: auto;
}

/*------------Index-Hitta-hit--------------*/
.found {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 7rem 0 0 0;}

.found h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.found p {
  font-size: 1rem;
  line-height: 1.6;
}

/*--------------------Dagens-ratt-----------------------------*/
.dagens-section {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  background-color: white;
}

.dagens-ratt-card {
background-color: #4C6444;
color: white;
padding: 1.5rem 3rem;
text-align: center;
width: 750px;
margin: 2rem auto;
font-family: "mono45-headline", monospace;
box-sizing: border-box;
box-shadow: inset 0 0 0 1px #4C6444,
            inset 0 0 0 7px white;
}

.dagens-ratt-card h2 {
font-size: 1.6rem;
margin: 0.2rem 0 0rem 0;
font-family: "mono45-headline", monospace;
font-weight: 500;
}

.dagens-ratt-card .weekday {
font-size: 0.8rem;
margin: 0.1rem 0 0.9rem 0;
font-family: Arial, Helvetica, sans-serif;
font-weight: normal;
}

.dagens-ratt-card .dish-name {
font-size: 1.1rem;
font-weight: normal;
margin: 0.6rem 0;
font-family: "mono45-headline", monospace;
}

.dagens-ratt-card .description,
.dagens-ratt-card p {
font-size: 0.85rem;
line-height: 1.4;
margin-bottom: 1rem;
font-family: Arial, Helvetica, sans-serif;
font-weight: normal;
}

.dagens-ratt-card .price {
font-size: 0.95rem;
font-weight: 500;
font-family: Arial, Helvetica, sans-serif;
}

/*-------------Footer---------------*/
.site-footer {
  background-color: #4C6444;
  color: #ffffff;
  padding: 4rem 2rem;
  border-top: 1px solid #e0e0e0;
  font-family: "mono45-headline", monospace;
  font-weight: 300;
  margin-top: 6rem;
}

.footer-logo {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #FFFFFF;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1.7rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-weight: bold;
}

.site-footer p {
  font-size: 85%;
  color: #ffffff;
}


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

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.site-footer a:hover {
  text-decoration: underline;
}

.newsletter input[type="email"] {
  padding: 0.5rem;
  border: 1px solid #ccc;
  margin-bottom: 0.5rem;
  width: 100%;
  max-width: 200px;
}

.newsletter button {
  padding: 0.5rem 1rem;
  color: #000000;
  border: none;
  cursor: pointer;
  font-size: 0.7rem;
  margin-top: 8px;
}

.social a i {
  margin-right: 0.5rem;
}

.social a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.fa-brands {
  margin-bottom: 0.7rem;
}

/*--------------Menu--------------*/
.menu-page {
  text-align: center;
}

.menu-page .content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.menu-page h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 4rem;
}

.menu-page p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.menu-page .button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.menu-page .menu-image img {
  width: 100%;
  max-width: 1000px;
  height: 700px;
  object-fit: cover;
  display: block;
}
  
/*---------------------Gallery-IG----------------------*/
.gallery-section {
  text-align: center;
  padding: 80px;
}

.instagram-handle {
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.image-gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.image-gallery img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  aspect-ratio: 1 / 1; /*Hålla kvadratisk form*/
}

/*---------------------Book-----------------------*/
.book-table {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 0 0;
  text-align: left;
}

.book-table h2 {
  text-align: center; 
  margin-bottom: 2rem;
  font-size: 2rem;
}

/*--------------------About-----------------------------*/
.food-vision {
  width: 100%;
  box-sizing: border-box;
}

.food-vision .content-wrapper-about {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.food-vision h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.food-vision p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.vision-image {
  margin-top: 2rem;
}

.vision-image img {
  width: 100%;
  height: auto;
}

.food-chefs {
  width: 100%;
  box-sizing: border-box;
  padding-top: 5rem;
}

.food-chefs .content-wrapper-about {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.food-chefs h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.food-chefs p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.chefs-image {
  margin-top: 2rem;
}

.chefs-image img {
  width: 100%;
  height: auto;
}


/*--------------------Responsivitet-Breakpoints------------------------*/

@media screen and (max-width: 768px) {
  .book-section,
  .menu-section {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .book-text,
  .menu-text {
    max-width: 100%;
  }

  .button-group {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-gallery {
    justify-content: center;
  }

  .dagens-section {
    padding: 2rem 1rem;
  }

  .dagens-ratt-card {
    width: 100%;
    margin: 1rem auto;
  }

  .menu-section {
    flex-direction: column-reverse;
    text-align: center;
  }
}
