body {
    font-family: Arial, sans-serif;
    background-color: rgb(17, 17, 17);
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-size: 20px;
    overflow-x: hidden;
}

header {
    background-color: #222529;
    color: #fff;
    padding: 1em;
    width: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

footer {
    background-color: #222529;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 1em 0;
}

nav {
    background-color: #222529;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.5em 0;
    flex-wrap: wrap;
    border-radius: 5px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    margin: 5px;
    background-color: #222529;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #fb2d17;
}

.content {
    width: 90%;
    max-width: 1200px;
    padding: 2em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3 {
    color: #fb2d17;
}

.hours, .menu, .contact {
    margin-bottom: 2em;
}

.menu-item {
    margin-bottom: 1em;
}

.menu-item h4 {
    margin: 0;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 700px;
    overflow: hidden;
    margin: auto;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 1);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

#myImage {
    width: 200px;
    height: 200px;
    transition: height 0.3s ease, width 0.3s ease;
}

#myImage.small {
    width: 75px;
    height: 75px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.dehors {
    height: 480px;
    object-fit: cover;
    width: auto;
    margin: 0;
    position: relative;
}

.rectangle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #2d2e35;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 10px;
}

.rectangle2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background-color: #2d2e35;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    width: 100%;
    gap: 20px;
    border-radius: 10px;
}

.payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payment-option img {
  width: 75px;
  height: 75px;
}


.rectangle img {
    flex: 1;
    max-width: 74%;
    height: auto;
    border-radius: 10px;
}

.terrace-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0;
    border-radius: 10px;
}

.terrace-section2 {
    display: flex;
    width: 50%;
    justify-content: center;
    text-align: center;
    margin: 60px 0;
    border-radius: 10px;
    align-items: flex-start;
}

.text-block {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.salade {
    max-height: 300px;
    height: 300px !important;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

a {
    color: #fb2d17;
}

idr {
    color: #fb2d17;
}

@media (max-width: 700px) {
  * {
    box-sizing: border-box;
  }
    
    html, body {
      width: 100%;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
      font-size: 16px;
    }

    header {
    flex-direction: column; 
    align-items: center;
    text-align: center;
  }

    nav {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      padding: 10px;
      justify-items: center;
    }

    nav a {
      width: 100%;
      font-size: 14px;
      padding: 8px 0;
      margin: 2px 0;
      flex-direction: row;
    }

    .content {
      width: 100%;
      padding: 1em;
    }

    .rectangle {
      flex-direction: column;
      width: 100%;
      padding: 10px;
    }

    .text-block {
      text-align: center;
      width: 100%;
    }

    .image-block {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .salade,
    .dehors {
      width: 100% !important;
      max-width: 100%;
    }

    #myImage {
      width: 80px;
      height: 80px;
    }

    .slider {
      max-width: 100%;
      width: 100%;
      height: auto;
    }

    iframe {
      max-width: 80% ;
    }

    .terrace-section {
      flex-direction: column;
      margin: 30px 0;
      width: 100%;
    }

    button {
      padding: 6px;
      font-size: 14px;
    }

    .rectangle2 {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: column; 
      gap: 35px;
      width:100%;  
    }

    img {
      max-width:33%;
      width:33%;
      padding-right: 10px;
}

}


img {
  max-width:100%;
  width:100%;
  padding-right: 10px;
}

.service {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 0;
  flex-direction: row;
  text-align: left;
}

.service img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
  flex-shrink: 0;
}

.service span {
	font-size: 18px;
  line-height: 1.4;
}
