.site-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  background-color: #ffffff;

  /* Multiple background images */
  background-image: 
    url('/Origami/static/images/sushi-menuu.png'), /* top-right */
    url('/Origami/static/images/japanese.png'); /* bottom-left */
    
  background-repeat: no-repeat, no-repeat;
  background-size: 300px auto, 300px auto;
  
  /* First image: move more to top and right using calc or pixels */
  background-position: calc(100% + 0px) calc(0% - 80px), /* top-right offset */
                       left bottom;                        /* bottom-left unchanged */
}


.site-container {
  max-width: 500px;
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 24px;
  margin-bottom: 30px;
  color: #222;
}

/* Added mode-selection container with flex layout for buttons */
.mode-selection {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  justify-content: center;
}

/* Styled mode buttons to be toggles with equal width */
.mode-btn {
  flex: 1;
  max-width: 250px;
  border: 2px solid #ccc;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 500;
  background: #fff;
  color: #222;
  transition: all 0.2s ease;
  border-radius: 4px;
  font-size: 16px;
}

.mode-btn:hover {
  border-color: #d92525;
}

/* Active mode button styling */
.mode-btn.active {
  background: #d92525;
  color: #fff;
  border-color: #d92525;
  border: 3px solid #000; /* Add thick black border to show selection clearly */
}

.restaurant-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.restaurant-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #ccc;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 400;
  background: #fff;
  transition: all 0.2s ease;
  border-radius: 4px;
  font-size: 16px;
  text-align: left;
  color: #222;
}

.restaurant-btn:hover {
  border-color: #d92525;
  background: #f9f9f9;
}

.restaurant-btn.active {
  background: #d92525;
  color: #fff;
  border-color: #d92525;
}

.restaurant-btn i {
  font-size: 20px;
  flex-shrink: 0;
}

.divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 30px 0;
}

.address-section {
  margin-bottom: 30px;
  text-align: left;
}

.address-section label {
  display: block;
  text-align: left;
  margin-bottom: 15px;
  color: #222;
  font-weight: 500;
  font-size: 16px;
}

.address-input {
  position: relative;
}

.address-input i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
}

.address-input input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  color: #222;
}

.address-input input::placeholder {
  color: #999;
}

.address-input input:disabled {
  background-color: #f0f0f0;
  cursor: not-allowed;
}

.go-site-btn {
  display: block;
  width: 100%;
  background: #d92525;
  color: white;
  font-weight: 500;
  padding: 14px 0;
  border-radius: 4px;
  margin-top: 30px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.go-site-btn:hover:not(:disabled) {
  background: #b71c1c;
}

.go-site-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.suggestions {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  z-index: 999;
  top: 100%;
  left: 0;
  right: 0;
}

.suggestion-item {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #222;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background-color: #f5f5f5;
}

#address_message {
  margin-top: 12px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
