@charset "utf-8";
/* CSS Document */

       body {
            font-family: Arial, sans-serif;
            background-color: #0e202f;
            color: #333;
            margin-top: 68px;
			margin-bottom: 100px;
            padding: 0;
            overflow-x: hidden; /* Förhindrar sidscrollning */
        }
        header {
            background-color: #3E2723; /* Mörkbrun för läderkänsla */
            color: #bfae6d; /* Guldfärg */
            padding: 30px;
            text-align: center;
            border: 7px solid #bfae6d;
			border-radius: 8px;
			font-size: 36px;
            width: 100%; /* Full bredd på header */
            box-sizing: border-box;
        }
		  #menu {
      margin-top: -10px !important;
      width: 100%;
      background-color:  #3E2723;
      z-index: 99999;
}			  
			  
			  
.tg {	
   background-color:#a69555 !important; /* knappar */
	 
}	   

	
#menu {
  position: fixed;
  display: flex;
  top: 10px;
  justify-content: center;  /* Centrerar alla alternativ horisontellt */
  flex-wrap: wrap;  /* Gör så att alternativen bryts till en ny rad om det behövs */
  gap: 10px;  /* Lägg till mellanrum mellan alternativen */
  padding: 3px;
  margin: 20px 0;
  border-top: 4px solid #bfae6d;
  border-bottom: 4px solid #bfae6d;	
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}

#menu a {
  padding: 3px 20px;
  text-decoration: none;
 
  
  border-radius: 0px;
  white-space: nowrap;  /* Förhindrar att länkarna bryts till ny rad för tidigt */
}

@media (max-width: 600px) {
  #menu {
    justify-content: center;  /* Centrerar även på små skärmar */
  }
}

   a:link, a:visited, a:focus {
            color: #e4dbba;
            text-decoration: none;
            font-size: 18px;
        }
   a:hover {
            color: #bfae6d;
            text-decoration: none;
            font-size: 18px;
        }

		
	.photo-frame {
         border: 4px solid #bfae6d;
         border-radius: 8px;
         box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}
			
		
        .container {
            width: 100%;
            max-width: 1200px; /* Begränsar bredden på innehållet */
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            background-color: #fff;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            border: 8px solid #bfae6d;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
        }
        .section h2 {
            color: #333;
            font-size: 28px;
        }
        .section p, .section ul {
            font-size: 18px;
        }
        ul {
            list-style-type: none;
            padding: 0;
        }
        li {
            margin-bottom: 10px;
        }
        .footer {
            width: 100%; /* Full bredd på footer */
            background-color: #3E2723; /* Mörkbrun för läderkänsla */
            color: #bfae6d;
            padding-top: 8px;
            text-align: center;
            border-top: 4px solid #bfae6d;
			border-bottom: 4px solid #bfae6d;
            margin-top: 30px;
            box-sizing: border-box;
			position: fixed;
            left: 0;
            bottom: 0;
        }
  


