/*
 *  CSS styles for everybeauty.ch
 *
 *  2024 kmoser
 */

/* fonts */
.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* global settings */
* {
  padding: 0;
  margin: 0;
  user-select: none;
#  border: 1px solid red;
}

/* select gloabl font */
body {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 300;
}

/* section formatting */
section {
  min-height: 100vh;
  padding-top: 4em;
  padding-right: 5em;
  padding-left: 10em;
  overflow: hidden;
}

section:nth-of-type(odd) {
  #background-color: #dbdbdb;
  background-color: #cac4bb;
}

section:nth-of-type(even) {
  #background-color: #f0f0f0;
  background-color: #e4dfd9;
}

/* formatting links */
a, a:link, a:visited {
  color: #000000;
  text-decoration: none;
}

/* headers */
h1,h2,h3,h4,h5,h6 {
  letter-spacing: 10px;
  font-weight: 100;
  margin-bottom: 1.5em;
  text-transform: uppercase;
}

h1 { 
  color: #898480;
  font-size: 3em; 
  text-align: right; 
  margin-bottom: 2em;
}
h2 { font-size: 1.6em; }
h3 { font-size: 1em; font-weight: 400 }
h5 { font-weight: 300; padding-bottom: 0em;  }

p {
  line-height: 1.5em;
  padding-bottom: 2em;
  text-align: justify;
}

/* sidebar stuff */
.social {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  padding-right: 5em;
  padding-top: 3em;
}

.sidebar {
  position: fixed;
  z-index: 1;
}

.sidebar-expand {
  cursor: pointer;
  padding: 2em;
}

.sidebar-expand:hover {
  filter: invert(100%);
  background-color: #ffffff;
}

.sidebar-content {
  display: none;
  width: 0;
  height: 100vh;
  padding-left: 2em;
  overflow-x: hidden;
#  background-color: #faf6f3;
}

.sidebar-content ul {
  list-style-type: none;
  padding-top: 1em;
  padding-right: 1em;
  font-size: 2em;
  letter-spacing: 10px;
  font-weight: 100;
#  background-color: #faf6f3;
}
.sidebar-content li {
  margin-bottom: 1em;
}
.sidebar-content a:hover {
  color: #ffffff;
  background-color: #000000;
}

section ul {
  list-style-type: none;
}
section li {
  margin-bottom: 1em;
}


.grid {
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

figure img{
  filter: grayscale(65%);
  min-width: 100%;
}

figure img:hover {
  filter: contrast(40%);
}

figcaption {
  font-weight: 100;
  letter-spacing: 10px;
  font-size: 2em;
}

.address {
  display: block;
}

.price_list {
  border-collapse: collapse;
  margin-bottom: 2em;
  width: 100%; 
  max-width: 50em;
}

.price_list tr:hover {
  background-color: gray;
  color: white;
}

.service {
  font-weight: 300;
  #padding-top: 1em;
}

.price {
  font-weight: 300;
  text-align: right;
  vertical-align:top;
}

/* tile map stuff */
#map {
  width: 50vw;
  height: 50vh;
}
